json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "definitions": {}, "links": [ { "description": "link to the Scheduling Block instance", "href": "scheduling_block/{id}", "method": [ "GET", "DELETE" ], "rel": "self" }, { "description": "link to the List of Scheduling Block instances", "href": "scheduling_blocks", "rel": "self" } ], "properties": { "id": { "type": "string" }, "message": { "type": "string" } }, "required": [ "id", "message" ], "title": "Response to Scheduling Block instance GET request", "type": "object" }
o13688
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "API", "description": "API declaration", "type": "object", "definitions": { "jsonReference": { "type": "object", "required": [ "$ref" ], "additionalProperties": false, "properties": { "$ref": { "type": "string" } } }, "parameterArray": { "type": "array", "minItems": 1, "items": { "$ref": "#" } }, "parameterTypes": { "type": "string", "enum": [ "array", "boolean", "integer", "number", "string" ] }, "responseTypes": { "type": "string", "enum": [ "array", "boolean", "integer", "number", "string", "object" ] }, "responsePropertyTypes": { "type": "string", "enum": [ "array", "boolean", "integer", "number", "string" ] }, "itemTypes": { "type": "string", "enum": [ "boolean", "integer", "number", "string" ] }, "parameter": { "type": "object", "properties": { "name": { "type": "string", "description": "Parameter name" }, "format": { "type": "string", "enum": [ "json" ] }, "type": { "$ref": "#/definitions/parameterTypes", "description": "Parameter type" }, "items": { "type": "object", "properties": { "$ref": { "type": "string", "format": "uri-reference" }, "type": { "$ref": "#/definitions/itemTypes" }, "maximum": { "type": "number" }, "minimum": { "type": "number" }, "enum": { "type": "array", "minItems": 1, "_uniqueItems": true }, "enumNames": { "type": "array", "items": { "type": "string" }, "minItems": 1, "_uniqueItems": true } }, "oneOf": [ { "required": [ "type" ] }, { "required": [ "$ref" ] } ], "additionalProperties": false }, "maxItems": { "type": "integer", "minimum": 0 }, "minItems": { "type": "integer", "minimum": 0, "default": 0 }, "maximum": { "type": "number" }, "minimum": { "type": "number" }, "$ref": { "type": "string", "format": "uri-reference" }, "enum": { "type": "array", "minItems": 1, "_uniqueItems": true }, "enumNames": { "type": "array", "items": { "type": "string" }, "minItems": 1, "_uniqueItems": true }, "required": { "type": "boolean", "default": false }, "maxLength": { "type": "integer", "minimum": 0 }, "minLength": { "type": "integer", "minimum": 0, "default": 0 }, "description": { "type": "string", "description": "Parameter description" }, "deprecated_from_version": { "type": "string", "description": "Property deprecated from version" }, "from_version": { "type": "string", "description": "Property implemented from version" } }, "required": [ "name", "type" ], "additionalProperties": false }, "responseProperty": { "type": "object", "oneOf": [ { "required": [ "type" ] }, { "required": [ "$ref" ] } ], "properties": { "type": { "$ref": "#/definitions/responseTypes" }, "description": { "type": "string" } } }, "response": { "type": "object", "properties": { "type": { "type": "string" }, "deprecated_from_version": { "type": "string" }, "from_version": { "type": "string" }, "items": { "oneOf": [ { "type": "array" }, { "type": "object", "properties": { "$ref": { "type": "string" } } } ] }, "required": { "type": "array" }, "title": { "type": "string" }, "oneOf": { "type": "array" }, "$ref": { "type": "string", "format": "uri-reference" }, "properties": { "type": "object", "patternProperties": { "^[a-zA-Z0-9_]+$": { "$ref": "#/definitions/responseProperty" } }, "additionalProperties": false } }, "additionalProperties": false }, "error": { "type": "object", "properties": { "name": { "type": "string", "description": "Error name" }, "code": { "type": "integer", "description": "Error code", "minimum": 0 }, "description": { "type": "string", "description": "Error description" }, "deprecated_from_version": { "type": "string" }, "from_version": { "type": "string" } }, "required": [ "name", "code", "description" ], "additionalProperties": false }, "errors": { "type": "array", "items": { "$ref": "#/definitions/error" }, "description": "Possible errors" }, "method": { "type": "object", "properties": { "name": { "type": "string", "description": "Method name" }, "description": { "type": "string", "description": "Method description" }, "deprecated_from_version": { "type": "string" }, "from_version": { "type": "string" }, "access_token_type": { "type": "array", "items": { "type": "string", "enum": [ "open", "user", "group", "service" ], "description": "Access token type" }, "description": "Input parameters for method" }, "parameters": { "type": "array", "items": { "$ref": "#/definitions/parameter" }, "description": "Input parameters for method" }, "responses": { "type": "object", "patternProperties": { "^([a-zA-Z0-9_]+)?[rR]esponse$": { "$ref": "#/definitions/response" } }, "additionalProperties": true, "description": "References to response objects" }, "emptyResponse": { "type": "boolean", "default": false }, "errors": { "$ref": "#/definitions/errors" } }, "required": [ "name", "access_token_type", "responses" ], "additionalProperties": false } }, "properties": { "errors": { "$ref": "#/definitions/errors" }, "methods": { "type": "array", "items": { "$ref": "#/definitions/method" } }, "definitions": { "patternProperties": { "^([a-zA-Z0-9_]+)?[rR]esponse$": { "$ref": "#/definitions/response" } } }, "$schema": { "type": "string", "format": "uri-reference" }, "title": { "type": "string" } }, "additionalProperties": false }
o16103
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "North America address", "description": "Postal addresses for Canada, USA and Mexico", "type": "object", "properties": { "address": { "type": "object", "properties": { "name": { "type": "string" }, "number": { "type": "string" }, "street": { "type": "string" }, "street2": { "type": "string" }, "city": { "type": "string" }, "national": { "oneOf": [ { "properties": { "country": { "type": "string", "enum": [ "CAN" ] }, "province": { "$ref": "#/definitions/CAN_province" }, "postalCode": { "$ref": "#/definitions/CAN_postalCode" } }, "additionalProperties": false, "required": [ "country", "province", "postalCode" ] }, { "properties": { "country": { "type": "string", "enum": [ "USA" ] }, "state": { "$ref": "#/definitions/USA_state" }, "zipCode": { "$ref": "#/definitions/USA_zipCode" } }, "additionalProperties": false, "required": [ "country", "state", "zipCode" ] }, { "properties": { "country": { "type": "string", "enum": [ "MEX" ] }, "state": { "$ref": "#/definitions/MEX_state" }, "postalCode": { "$ref": "#/definitions/MEX_postalCode" } }, "additionalProperties": false, "required": [ "country", "state", "postalCode" ] } ] } }, "additionalProperties": false, "required": [ "name", "number", "street", "city", "national" ] } }, "definitions": { "CAN_province": { "type": "string", "enum": [ "AB", "BC", "MB", "NB", "NL", "NS", "NT", "NU", "ON", "PE", "QC", "SK", "YT" ] }, "CAN_postalCode": { "type": "string", "pattern": "^[A-Z][0-9][A-Z]( )?[0-9][A-Z][0-9]$" }, "USA_state": { "type": "string", "enum": [ "AL", "AK", "AR", "AS", "AZ", "CA", "CO", "CT", "DC", "DE", "FL", "FM", "GA", "GU", "HI", "IA", "ID", "IL", "IN", "KS", "KY", "LA", "MA", "MD", "ME", "MH", "MI", "MN", "MO", "MP", "MS", "MT", "NC", "ND", "NE", "NH", "NJ", "NM", "NV", "OH", "OK", "OR", "PA", "PR", "PW", "RI", "SC", "SD", "TN", "TX", "UT", "VA", "VI", "VT", "WA", "WI", "WV", "WY", "AA", "AE", "AP" ] }, "USA_zipCode": { "type": "string", "pattern": "^[0-9]{5}(-[0-9]{4})?$" }, "MEX_state": { "type": "string", "enum": [ "AGS", "BC", "BCS", "CAM", "COAH", "COL", "CHIH", "CHIS", "DF", "DGO", "GTO", "GRO", "HGO", "JAL", "MEX", "MICH", "MOR", "NAY", "NL", "OAX", "PUE", "QRO", "Q ROO", "SLP", "SIN", "SON", "TAB", "TAMPS", "TLAX", "VER", "YUC", "ZAC" ] }, "MEX_postalCode": { "type": "string", "pattern": "^[0-9]{5}$" } } }
o83718
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "awards": { "description": "list of awards have been received", "items": { "additionalProperties": false, "properties": { "awarder": { "description": "name of the awarder", "type": "string" }, "date": { "description": "date of the award", "format": "date", "type": "string" }, "summary": { "description": "reason of the award", "type": "string" }, "title": { "description": "title of the award", "type": "string" } }, "required": [ "title", "date", "awarder" ], "type": "object" }, "type": "array" }, "certificate": { "items": { "additionalProperties": false, "properties": { "code": { "description": "code of the certificate", "type": "string" }, "doesNotExpire": { "type": "boolean" }, "endDate": { "description": "end date of certificate", "format": "date", "type": "string" }, "grantDate": { "description": "date of the grant", "format": "date", "type": "string" }, "name": { "description": "name of the certificate", "type": "string" }, "score": { "additionalProperties": false, "description": "exam score", "properties": { "best": { "description": "best possible score", "type": "string" }, "type": { "description": "type of the score", "type": "string" }, "value": { "description": "value of the score", "type": "string" }, "worst": { "description": "worst possible score", "type": "string" } }, "required": [ "type", "value", "best", "worst" ], "type": "object" }, "verification": { "description": "external candidate verification URL", "format": "uri", "type": "string" }, "website": { "description": "link to issuing authority's description of the certificate", "format": "uri", "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "core": { "additionalProperties": false, "properties": { "livingArea": { "description": "living area which could be city or country or even continent", "type": "string" }, "title": { "description": "job title", "type": "string" }, "workArea": { "description": "work area which could be city or country or even remote", "type": "string" } }, "type": "object" }, "education": { "items": { "additionalProperties": false, "properties": { "area": { "description": "area of study", "type": "string" }, "courses": { "description": "notable courses/subjects", "items": { "type": "string" }, "type": "array" }, "endDate": { "description": "end date", "format": "date", "type": "string" }, "highlights": { "description": "some of accomplishments", "items": { "type": "string" }, "type": "array" }, "honors": { "description": "some education honours", "items": { "type": "string" }, "type": "array" }, "institution": { "type": "string" }, "location": { "additionalProperties": false, "description": "location of institution", "properties": { "lat": { "type": "number" }, "long": { "type": "number" } }, "required": [ "lat", "long" ], "type": "object" }, "score": { "additionalProperties": false, "properties": { "best": { "description": "best possible score", "type": "string" }, "type": { "description": "type of the score", "type": "string" }, "value": { "description": "value of the score", "type": "string" }, "worst": { "description": "worst possible score", "type": "string" } }, "required": [ "type", "value", "best", "worst" ], "type": "object" }, "startDate": { "description": "start date", "format": "date", "type": "string" }, "studyType": { "description": "type of study", "type": "string" } }, "required": [ "institution", "area", "studyType", "startDate", "endDate" ], "type": "object" }, "type": "array" }, "interests": { "items": { "additionalProperties": false, "properties": { "keywords": { "description": "keywords of the interest", "items": { "type": "string" }, "type": "array" }, "name": { "description": "name of the interest", "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "languages": { "description": "list of languages", "items": { "additionalProperties": false, "properties": { "language": { "description": "name of language", "type": "string" }, "level": { "description": "proficiency level for the language", "enum": [ "basic", "conversational", "fluent", "native" ], "type": "string" } }, "required": [ "language" ], "type": "object" }, "type": "array" }, "legal": { "description": "list of legals", "items": { "additionalProperties": false, "properties": { "applicationDate": { "description": "date of the application", "format": "date", "type": "string" }, "author": { "type": "string" }, "coAuthors": { "type": "string" }, "currentAssignee": { "type": "string" }, "description": { "description": "a brief description about the document", "type": "string" }, "endDate": { "description": "end date", "format": "date", "type": "string" }, "grantDate": { "description": "date of the grant", "format": "date", "type": "string" }, "idNumber": { "description": "application number or Id Number", "type": "string" }, "legalType": { "description": "type of the document", "type": "string" }, "name": { "description": "name of the document", "type": "string" }, "previousAssignee": { "type": "string" }, "resources": { "description": "multiple resources with label", "items": { "additionalProperties": false, "properties": { "label": { "description": "label of the resource", "type": "string" }, "url": { "description": "url of the resource", "format": "uri", "type": "string" } }, "required": [ "url", "label" ], "type": "object" }, "type": "array" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "meta": { "additionalProperties": false, "description": "the schema version and any other tooling configuration", "properties": { "canonical": { "description": "URL (as per RFC 3986) to latest version of this document", "type": "string" }, "lastModified": { "description": "date-time of last modified", "format": "date-time", "type": "string" }, "uuid": { "description": "uuid v4 of the resume", "type": "string" }, "version": { "description": "version field which follows semver", "type": "string" } }, "type": "object" }, "personal": { "additionalProperties": false, "description": "sensitive informations", "properties": { "birthPlace": { "description": "place of birth", "type": "string" }, "birthday": { "description": "birthday date", "format": "date", "type": "string" }, "currentLocation": { "additionalProperties": false, "description": "living location", "properties": { "lat": { "type": "number" }, "long": { "type": "number" } }, "required": [ "lat", "long" ], "type": "object" }, "email": { "description": "email address", "format": "idn-email", "type": "string" }, "gender": { "type": "string" }, "image": { "description": "url of the personal photo", "type": "string" }, "name": { "description": "full name", "type": "string" }, "permanentLocation": { "additionalProperties": false, "description": "permanently living location", "properties": { "lat": { "type": "number" }, "long": { "type": "number" } }, "required": [ "lat", "long" ], "type": "object" }, "phone": { "description": "phone number", "type": "string" }, "postalAddress": { "type": "string" }, "profiles": { "description": "list of social networks", "items": { "additionalProperties": false, "properties": { "network": { "description": "name of the network", "type": "string" }, "url": { "description": "url of the profile", "format": "uri", "type": "string" }, "username": { "description": "username in the network", "type": "string" } }, "required": [ "network", "username", "url" ], "type": "object" }, "type": "array" }, "relationshipStatus": { "description": "civil status", "type": "string" }, "summary": { "description": "a short sentence about yourself", "type": "string" }, "url": { "description": "homepage url", "format": "uri", "type": "string" } }, "type": "object" }, "projects": { "description": "list of career projects", "items": { "additionalProperties": false, "properties": { "description": { "description": "short summary of project", "type": "string" }, "endDate": { "description": "end date", "format": "date", "type": "string" }, "entity": { "description": "relevant company/entity affiliations", "type": "string" }, "highlights": { "description": "specify multiple features", "items": { "type": "string" }, "type": "array" }, "keywords": { "description": "specify special elements involved", "items": { "type": "string" }, "type": "array" }, "location": { "additionalProperties": false, "description": "location of the project", "properties": { "lat": { "type": "number" }, "long": { "type": "number" } }, "required": [ "lat", "long" ], "type": "object" }, "name": { "description": "name of the project", "type": "string" }, "resources": { "description": "specify multiple resources with label", "items": { "additionalProperties": false, "properties": { "label": { "description": "label of the resource", "type": "string" }, "url": { "description": "url of the resource", "format": "uri", "type": "string" } }, "required": [ "url", "label" ], "type": "object" }, "type": "array" }, "roles": { "description": "specify your role on this project", "items": { "type": "string" }, "type": "array" }, "startDate": { "format": "date", "type": "string" }, "type": { "description": "type of the project", "type": "string" }, "url": { "description": "url of the project", "format": "uri", "type": "string" } }, "required": [ "name", "startDate" ], "type": "object" }, "type": "array" }, "publications": { "description": "list of publications", "items": { "additionalProperties": false, "properties": { "name": { "description": "name of the publication", "type": "string" }, "publisher": { "description": "name of the publisher", "type": "string" }, "publicationDate": { "description": "date of publication", "format": "date", "type": "string" }, "resources": { "description": "multiple resources with label", "items": { "additionalProperties": false, "properties": { "label": { "description": "label of the resource", "type": "string" }, "url": { "description": "url of the resource", "format": "uri", "type": "string" } }, "required": [ "url", "label" ], "type": "object" }, "type": "array" }, "summary": { "description": "short summary of the publication", "type": "string" }, "url": { "description": "url of the publication", "format": "uri", "type": "string" } }, "required": [ "name", "publisher" ], "type": "object" }, "type": "array" }, "references": { "description": "list of references", "items": { "additionalProperties": false, "properties": { "company": { "description": "company name", "type": "string" }, "name": { "description": "name of the reference", "type": "string" }, "position": { "description": "position of reference", "type": "string" }, "reference": { "description": "reference text", "type": "string" } }, "required": [ "reference" ], "type": "object" }, "type": "array" }, "skills": { "description": "list of professional skill-sets", "items": { "additionalProperties": false, "properties": { "keywords": { "description": "some keywords pertaining to the skill", "items": { "type": "string" }, "type": "array" }, "name": { "description": "name of the skill", "type": "string" }, "proficiency": { "description": "proficiency level of the skill", "enum": [ "beginner", "early", "competent", "advanced", "expert" ], "type": "string" } }, "required": [ "name", "proficiency" ], "type": "object" }, "type": "array" }, "volunteer": { "items": { "additionalProperties": false, "properties": { "endDate": { "description": "end date", "format": "date", "type": "string" }, "highlights": { "description": "some of accomplishments", "items": { "type": "string" }, "type": "array" }, "location": { "additionalProperties": false, "description": "location of activity", "properties": { "lat": { "type": "number" }, "long": { "type": "number" } }, "required": [ "lat", "long" ], "type": "object" }, "organization": { "description": "name of the organization", "type": "string" }, "position": { "description": "type of the contribution", "type": "string" }, "startDate": { "description": "start date", "format": "date", "type": "string" }, "summary": { "description": "an overview of responsibilities", "type": "string" }, "url": { "description": "related link to support volunteer experience", "format": "uri", "type": "string" } }, "required": [ "organization", "position", "startDate" ], "type": "object" }, "type": "array" }, "work": { "items": { "additionalProperties": false, "properties": { "description": { "description": "companies primary activity", "type": "string" }, "endDate": { "description": "end date", "format": "date", "type": "string" }, "highlights": { "description": "some of accomplishments", "items": { "type": "string" }, "type": "array" }, "location": { "additionalProperties": false, "description": "location of the company", "properties": { "lat": { "type": "number" }, "long": { "type": "number" } }, "required": [ "lat", "long" ], "type": "object" }, "name": { "description": "name of company", "type": "string" }, "position": { "description": "position at the company", "type": "string" }, "startDate": { "description": "start date", "format": "date", "type": "string" }, "summary": { "description": "an overview of responsibilities", "type": "string" }, "url": { "description": "url of the company website", "format": "uri", "type": "string" } }, "required": [ "name", "position", "startDate" ], "type": "object" }, "type": "array" } }, "required": [ "core", "personal", "work", "education", "volunteer", "publications", "legal", "skills", "awards", "projects", "certificate", "references", "languages", "interests", "meta" ], "title": "Resumic resume Schema", "type": "object" }
o69992
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Rules", "description": "The collection of rules", "type": "array", "items": { "title": "Rule.", "type": "object", "properties": { "id": { "description": "Unique identifier given by the server", "type": "integer" }, "name": { "description": "A name to identify the rule.", "type": "string" }, "active": { "description": "Enable/Disable a rule. When disabled, the rule is not evaluated on events received.", "type": "boolean" }, "organizationId": { "description": "The organization for which the rule is configured.", "type": "integer" }, "conditions": { "description": "List of condition to evaluate against events received.", "type": "array", "items": { "description": "Condition to evaluate, **MUST** define at least one of the three condition criteria: `eventSourceId`, `eventTypeId` or `fn`.", "type": "object", "properties": { "description": { "description": "Human friendly text to let the possibility to explain what the condition evaluates.", "type": "string" }, "eventSource": { "description": "Define the data for an event source", "type": "object", "properties": { "id": { "description": "The event source to match on event received. If not present, joker `*` will be used.", "type": "integer" }, "generatedIdentifier": { "description": "Unique identifier generated by iFLUX server of the event source usable in the events.", "type": "string" } }, "required": [ "id", "generatedIdentifier" ] }, "eventType": { "description": "Define the data for an event type", "type": "object", "properties": { "id": { "description": "The event type to match on event received. If not present, joker `*` will be used.", "type": "integer" }, "type": { "description": "Event type used in the events sent.", "type": "string" } }, "required": [ "id", "type" ] }, "fn": { "description": "Javascript expression to be evaluated. If not present, only `event source` and `event type` will be evaluated.", "type": "object", "properties": { "expression": { "description": "Javascript expression to let more complex condition matching. **MUST** be a valid javascript expression", "type": "string" }, "sampleEvent": { "description": "A valid event that will be evaluated to true with the expression.", "type": "object" } }, "required": [ "expression", "sample" ] } } }, "minItems": 1 }, "transformations": { "description": "List of transformations to apply to an event once the conditions matched.", "type": "array", "items": { "description": "Transformation to apply.", "type": "object", "properties": { "description": { "description": "Human friendly text to let the possibility to explain what the transformation does.", "type": "string" }, "actionTarget": { "description": "Define the data for an action target", "type": "object", "properties": { "id": { "description": "The action target to send the event transformed.", "type": "integer" }, "generatedIdentifier": { "description": "Unique identifier generated by iFLUX server of the action target sent with actions.", "type": "string" } }, "required": [ "id", "generatedIdentifier" ] }, "actionType": { "description": "Define the data for an action type", "type": "object", "properties": { "id": { "description": "The action type.", "type": "integer" }, "type": { "description": "Action type used in the actions sent.", "type": "string" } }, "required": [ "id", "type" ] }, "fn": { "description": "Javascript expression to transform the events. If not present, event is not transformed and passed as it is received.", "type": "object", "properties": { "expression": { "description": "Javascript expression to let more complex transformation. **MUST** be a valid javascript expression", "type": "string" }, "sample": { "description": "A valid sample to validate the transformation expression.", "type": "object", "properties": { "event": { "description": "A valid event for the transformation expression validation.", "type": "object" }, "eventSourceTemplateId": { "description": "The event source template to inject to the transformation validation.", "type": "integer" }, "eventTypeId": { "description": "The event type to inject to the transformation validation.", "type": "integer" } }, "required": [ "event" ] } }, "required": [ "expression", "sample" ] } }, "required": [ "actionTarget", "actionType" ] }, "minItems": 1 } }, "required": [ "id", "name", "active", "organizationId", "conditions", "transformations" ] } }
o14495
{ "properties": { "PayloadDescription": { "default": "ShareKit Payload", "description": "Description of the payload", "type": "string" }, "PayloadDisplayName": { "default": "ShareKit Payload", "description": "Name of the payload", "type": "string" }, "PayloadIdentifier": { "default": "com.apple.com.apple.ShareKitHelper", "description": "A unique identifier for the payload, dot-delimited. Usually root PayloadIdentifier+subidentifier", "type": "string" }, "PayloadOrganization": { "description": "This value describes the issuing organization of the profile, as displayed to the user", "type": "string" }, "PayloadType": { "default": "com.apple.com.apple.ShareKitHelper", "description": "The type of the payload, a reverse dns string", "type": "string" }, "PayloadUUID": { "default": "", "description": "Unique identifier for the payload (format 01234567-89AB-CDEF-0123-456789ABCDEF)", "pattern": "^[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}$", "type": "string" }, "PayloadVersion": { "default": 1, "description": "The version of the whole configuration profile.", "type": "number" }, "SHKAllowedShareServices": { "description": "List of plugin IDs that will show up in the user\u2019s Share menu. If this array exists then only these items will be permitted.", "items": { "description": "Allowed Plugin ID Item", "enum": [ "com.apple.share.AirDrop", "com.apple.share.Facebook", "com.apple.share.Twitter", "com.apple.share.Mail", "com.apple.share.Messages", "com.apple.share.Video", "com.apple.share.addtoiphoto", "com.apple.share.addtoaperture", "com.apple.share.readlater", "com.apple.share.SinaWeibo", "com.apple.Notes.SharingExtension", "com.apple.reminders.RemindersShareExtension", "com.apple.share.LinkedIn.post" ], "type": "string" }, "type": "array" }, "SHKDeniedShareServices": { "description": "List of plugin IDs that will not show up in the user\u2019s Share menu. This key is used only if there is no SHKAllowedShareServices key.", "items": { "description": "Denied Plugin ID Item", "enum": [ "com.apple.share.AirDrop", "com.apple.share.Facebook", "com.apple.share.Twitter", "com.apple.share.Mail", "com.apple.share.Messages", "com.apple.share.Video", "com.apple.share.addtoiphoto", "com.apple.share.addtoaperture", "com.apple.share.readlater", "com.apple.share.SinaWeibo", "com.apple.Notes.SharingExtension", "com.apple.reminders.RemindersShareExtension", "com.apple.share.LinkedIn.post" ], "type": "string" }, "type": "array" } }, "title": "com.apple.com.apple.ShareKitHelper", "type": "object" }
o61601
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "sequence": { "type": "number", "description": "the sequence of this node (i.e. its order within its siblings)" }, "location": { "type": "object", "description": "the geographic coordinates of this value, which represents a physical location. This may be present only when (a) the category itself has key of LOCATION, and (b) the value is a leaf (has no children)", "properties": { "lat": { "type": "number", "description": "latitude of this location" }, "lng": { "type": "number", "description": "longitude of this location" }, "country": { "description": "country, in ISO 3166-1 alpha-2 form", "enum": [ "AC", "AD", "AE", "AF", "AG", "AI", "AL", "AM", "AN", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BM", "BN", "BO", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "ST", "SV", "SY", "SZ", "TA", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW" ] } }, "required": [ "lat", "lng" ] }, "externalId": { "type": "string", "description": "An immutable external identifier, e.g. primary key in an upstream system, used to identify the category value" }, "parent": { "type": "integer", "description": "The id of the value which is this node's parent (hierarchical structure)" }, "remappedTo": { "type": "integer", "description": "The id of the value which took over from this node, when this node was permanently inactivated" } }, "type": "object", "description": "details of a single category value", "properties": { "id": { "type": "integer" }, "available": { "type": "boolean", "description": "whether this node can be selected (i.e. is not disabled)" }, "name": { "type": "string", "description": "the user visible name for this category value" }, "code": { "type": "string", "description": "a code for this category value" }, "externalId": { "$ref": "#/definitions/externalId" }, "sequence": { "$ref": "#/definitions/sequence" }, "parent": { "$ref": "#/definitions/parent" }, "remappedTo": { "$ref": "#/definitions/remappedTo" }, "location": { "$ref": "#/definitions/location" }, "values": { "type": "array", "items": { "$ref": "#" } } }, "additionalProperties": false }
o79558
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "person": { "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "email": { "type": "string", "format": "email" }, "phone_number": { "type": "string" }, "title": { "type": "string" }, "is_available": { "type": "boolean" }, "is_visible": { "type": "boolean" }, "notifications_enabled": { "type": "boolean" }, "notifications_app_enabled": { "type": "boolean" }, "notifications_chat_enabled": { "type": "boolean" }, "notifications_email_enabled": { "type": "boolean" }, "notifications_sms_enabled": { "type": "boolean" } }, "minProperties": 1, "additionalProperties": false } }, "required": [ "person" ], "additionalProperties": false }
o58917
{ "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 or triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "shape": { "description": "The shape for which to calculate the area", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_bfe1f7c6
{ "id": "http://schemas.wbeme.com/json-schema/eme/accounts/mixin/account-ref/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "account_id": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "description": "The EME account that this message is associated with.", "pbj": { "type": "identifier", "rule": "single" } } }, "additionalProperties": true }
o88112
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "bvec", "bval", "nifti" ], "type": "object", "properties": { "bvec": { "type": "object", "properties": { "type": { "enum": [ "bvec" ] } } }, "bval": { "type": "object", "properties": { "type": { "enum": [ "bval" ] } } }, "nifti": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } } } }, "config": { "required": [ "dwOutMm-2", "numBootStrapSamples", "noiseCalcMethod", "flipLrApFlag", "rotateBvecsWithCanXform", "dwOutMm-1", "phaseEncodeDir", "eddyCorrect", "dwOutMm-3", "rotateBvecsWithRx", "fitMethod", "bsplineInterpFlag", "nStep" ], "type": "object", "properties": { "eddyCorrect": { "default": 1, "type": "integer", "description": "Motion and eddy-current correction. [default = 1, Do eddy-current and motion correction]. Options [0, 1, -1]. 0 = Only motion correction is done. 1 = Do eddy-current and motion correction. -1 = No motion or eddy correction." }, "numBootStrapSamples": { "default": 500, "type": "integer", "description": "Number of boostrap interations." }, "noiseCalcMethod": { "default": "b0", "type": "string", "description": "Noise calculation method for robust tensor fitting. ['corner', 'b0' (default)]. There are 2 ways to calculate the noise. The first is based on the standard deviation of the signal in the corner of the image (noiseCalcMethod = 'corner'). This method works well as long as the corner of the image has not been padded with zeros. Currently GE zeros out the pixel intensity outside of the brain. So for new GE data we calculate the noise by taking the standard deviation of the b=0 images (noiseCalcMethod = 'b0') which means that we need a number of b0 acquisitions. If you are using robust tensor fitting you must decide how to calculate the image noise. If the corner of the image is padded with zeros then you should use the 'b0' method which calculates the noise based on the std of the b0 image." }, "flipLrApFlag": { "default": 0, "type": "integer", "description": "This flag will signal dtiRawBuildBvecs to reorient the gradient directions specified in the dwepi.grads file to logical space rather than keeping the directions in scanner space. Thus, the bvecs do not need to be reoriented for oblique prescriptions as with some other DTI sequences. However, this sequence assumes that the 2nd column in dwepi.grads is the phase-encode dim. If your phase-encode is the usual '2', then this is fine. But, if you run ASSET and change the phase encode to L-R (dim 1), you need to swap the first and second columns of dwepi.grads. Also, there appears to be a flip in the phase-encode dim, so you also need to flip the sign on the phase-encode column." }, "rotateBvecsWithCanXform": { "default": 0, "type": "integer", "description": "Rotate the b-vectors according to the canonical xForm. 0 = false, 1 = true" }, "dwOutMm-1": { "default": 2, "type": "integer", "description": "Resolution of the output in mm." }, "phaseEncodeDir": { "default": 2, "type": "integer", "description": "Phase encoding direction. (1 = L/R 'row', 2 = A/P 'col'). This value is read from the rawDti nifti field, you should specify it here if it does not exist. If you collected your DTI data using GE's ASSET, you should provide the phase-encode direction (1= L/R 'row', 2 = A/P 'col'). Information about this, as well as the b-value and gradient code, can be found in the dicom file header." }, "dwOutMm-2": { "default": 2, "type": "integer", "description": "Resolution of the output in mm." }, "nStep": { "default": 50, "type": "integer", "description": "The number of steps for the restore algorithm in the robust tensor fitting case. (dtiRawFitTensorRobust)." }, "rotateBvecsWithRx": { "default": 0, "type": "integer", "description": "Rotate the b-vectors according to the scanner perscription. 0 = false, 1 = true" }, "fitMethod": { "default": "ls", "type": "string", "description": "Fit-method for tesnsor fitting. Options are ['ls', 'rt', 'lsrt']: 'ls': least-squares (default) 'rt': RESTORE robust tensor fitting and outlier rejection (Chang, Jones & Pierpaoli (2005) RESTORE: Robust Estimation of Tensors by Outlier Rejection. Magnetic Resonance in Medicine, v53). 'lsrt': does least-squares and robust tensor fitting in one go. " }, "bsplineInterpFlag": { "default": 0, "type": "integer", "description": "Method used for interpolation during resampling (dtiRawResample). 1 = bspline. 0 = trilinear (default)" }, "dwOutMm-3": { "default": 2, "type": "integer", "description": "Resolution of the output in mm." } } } }, "title": "Invocation manifest for Diffusion Data Initialization Pipeline" }
o41467
{ "$schema": "http://json-schema.org/draft-04/schema#", "$schemaODC": "http://ocds.open-contracting.org/standard/r/1__0__RC/release-schema.json", "definitions": { "Amendment": { "description": "Popisn\u00e9 \u00fadaje dodatku", "patternProperties": {}, "properties": { "amendmentOrder": { "description": "\u010c\u00edslo dodatku", "type": [ "integer", "null" ], "validity": "B" }, "contract": { "description": "Jednozna\u010dn\u00ed identifik\u00e1tor smlouvy", "items": { "_format": "uri", "type": "string" }, "type": [ "array", "string", "null" ], "validity": "C" }, "dateSigned": { "description": "Datum podpisu", "format": "date", "type": [ "string", "null" ], "validity": "B" }, "title": { "description": "N\u00e1zev", "type": [ "string", "null" ], "validity": "C" } }, "required": [ "title", "contract" ], "title": "Amendment", "type": "object" }, "Attachment": { "description": "Popisn\u00e9 \u00fadaje p\u0159\u00edlohy.", "patternProperties": {}, "properties": { "attachmentOrder": { "description": "\u010c\u00edslo p\u0159\u00edlohy", "type": [ "integer", "null" ], "validity": "B" }, "contract": { "description": "Jednozna\u010dn\u00ed identifik\u00e1tor smlouvy", "items": { "_format": "uri", "type": "string" }, "type": [ "array", "string", "null" ], "validity": "C" }, "title": { "description": "N\u00e1zev", "type": [ "string", "null" ], "validity": "C" } }, "required": [ "title", "contract" ], "title": "Attachment", "type": "object" }, "Contract": { "description": "Detailn\u00ed popisn\u00e9 \u00fadaje smlouvy", "patternProperties": {}, "properties": { "amendments": { "description": "Seznam URI identifik\u00e1tor\u016f dodatk\u016f", "items": { "format": "uri", "type": [ "object", "integer", "string" ] }, "type": [ "array", "null" ], "validity": "B" }, "amount": { "description": "Cena s DPH (u nepl\u00e1tc\u016f celkov\u00e1 cena). Nejvy\u0161\u0161\u00ed p\u0159\u00edpustn\u00e1 hodnota \u0159\u00e1dn\u00e9ho pln\u011bn\u00ed z dan\u00e9 smlouvy, kter\u00e9 vynalo\u017e\u00ed n\u011bkter\u00e1 smluvn\u00ed strana. U smluv na dobu ur\u010ditou se jedn\u00e1 o o\u010dek\u00e1van\u00e9 celkov\u00e9 finan\u010dn\u00ed pln\u011bn\u00ed strany s nejvy\u0161\u0161\u00edm pln\u011bn\u00edm, v\u010detn\u011b opc\u00ed, bez sankc\u00ed. U smluv na dobu neur\u010ditou, ve kter\u00fdch nen\u00ed stanoven strop na celkov\u00e9 pln\u011bn\u00ed, se jedn\u00e1 o nejvy\u0161\u0161\u00ed o\u010dek\u00e1van\u00e9 ro\u010dn\u00ed pln\u011bn\u00ed. U smluv bez finan\u010dn\u00edho pln\u011bn\u00ed (bartery, darovac\u00ed smlouvy) je uvedena celkov\u00e1 hodnota nefinan\u010dn\u00edho pln\u011bn\u00ed strany s nejvy\u0161\u0161\u00edm pln\u011bn\u00edm (nap\u0159. odhadovan\u00e1 hodnota daru). U smluv s nejasn\u00fdm pln\u011bn\u00edm p\u0159ipustit NULL. Pokud je cena nenulov\u00e1, tak alespo\u0148 jedna Smluvn\u00ed strana (Party) mus\u00ed m\u00edt p\u0159\u00edznak Payer = true", "properties": { "amountVal": { "description": "Cena s DPH", "type": [ "number", "null" ], "validity": "C" }, "currencyVal": { "description": "M\u011bna, 3-p\u00edsmenn\u00fd, ISO 4217 form\u00e1t\u201d", "type": [ "string", "null" ], "validity": "B" } }, "type": [ "object", "number", "null" ], "validity": "C" }, "amountNoVat": { "description": "Cena bez dph, uv\u00e1d\u00ed se povinn\u011b pouze v p\u0159\u00edpad\u011b, \u017ee Amount je s DPH", "properties": { "amountVal": { "description": "Cena s DPH", "type": [ "number", "null" ], "validity": "C" }, "currencyVal": { "description": "M\u011bna, 3-p\u00edsmenn\u00fd, ISO 4217 form\u00e1t\u201d", "type": [ "string", "null" ], "validity": "B" } }, "type": [ "object", "number", "null" ], "validity": "C" }, "attachments": { "description": "Seznam URI identifik\u00e1tor\u016f p\u0159\u00edloh", "items": { "format": "uri", "type": [ "object", "integer", "string" ] }, "type": [ "array", "null" ], "validity": "B" }, "awardID": { "description": "Eviden\u010dn\u00ed \u010d\u00edslo ve\u0159ejn\u00e9 zak\u00e1zky. Uv\u00e1d\u00ed se voliteln\u011b, pokud existuje", "type": [ "string", "null" ], "validity": "N" }, "awardProfileID": { "description": "\u010c\u00edslo zak\u00e1zky na profilu zadavatele", "type": [ "string", "null" ], "validity": "N" }, "competency": { "description": "Indikuje, zda-li se jedn\u00e1 o soukromopr\u00e1vn\u00ed nebo ve\u0159ejnopr\u00e1vn\u00ed smlouvu", "items": { "type": "string" }, "type": [ "array", "string", "null" ], "validity": "A" }, "contractType": { "description": "\u010c\u00edseln\u00edk typ\u016f smlouvy", "type": [ "string", "null" ], "validity": "C" }, "currency": { "description": "M\u011bna, 3-p\u00edsmenn\u00fd, ISO 4217 form\u00e1t", "type": [ "string", "null" ], "validity": "B" }, "currentValidContract": { "description": "Aktu\u00e1ln\u011b platn\u00e9 zn\u011bn\u00ed smlouvy (se zapracovan\u00fdmi dodatky)", "format": "uri", "type": [ "string", "null" ], "validity": "A" }, "dateSigned": { "description": "Datum posledn\u00edho podpisu", "format": "date", "type": [ "string", "null" ], "validity": "B" }, "description": { "description": "Popis p\u0159edm\u011btu smlouvy", "type": [ "string", "null" ], "validity": "A" }, "funding": { "description": "P\u0159eva\u017euj\u00edc\u00ed financov\u00e1n\u00ed \u2013 vlastn\u00ed, p\u0159\u00edpadn\u011b n\u00e1zev dota\u010dn\u00edho titulu (bude kontrolov\u00e1n proti \u010d\u00edseln\u00edku)", "type": [ "string", "null" ], "validity": "B" }, "implementation": { "$ref": "#/definitions/Implementation", "description": "Objekt reprezentuj\u00edc\u00ed transakce a miln\u00edky (odpov\u00edd\u00e1 ODCschema, viz. http://ocds.open-contracting.org/standard/r/1__0__RC/release-schema.json)", "validity": "A" }, "parties": { "description": "V\u00fd\u010det smluvn\u00edch stran", "items": { "format": "uri", "type": [ "object", "integer", "string" ] }, "type": [ "array", "null" ], "validity": "C" }, "priceAnnual": { "description": "Identifikuje, pokud je v Amount ro\u010dn\u00ed \u010d\u00e1stka", "type": [ "boolean", "null" ], "validity": "B" }, "subjectType": { "description": "\u010c\u00edseln\u00edk typ\u016f zbo\u017e\u00ed/slu\u017eeb", "type": [ "string", "null" ], "validity": "B" }, "title": { "description": "P\u0159edm\u011bt smlouvy", "type": [ "string", "null" ], "validity": "C" }, "validFrom": { "description": "Datum \u00fa\u010dinnosti smlouvy", "format": "date", "type": [ "string", "null" ], "validity": "B" }, "validUntil": { "description": "Datum ukon\u010den\u00ed \u00fa\u010dinnosti smlouvy (posledn\u00ed pln\u011bn\u00ed), NULL pro smlouvy na dobu", "format": "date", "type": [ "string", "null" ], "validity": "B" } }, "required": [ "title", "contractType", "publisher", "parties" ], "title": "Contract", "type": "object" }, "Document": { "description": "Dokument je z\u00e1kladn\u00ed strukturou pro evidov\u00e1n\u00ed \u00fadaj\u016f o smlouv\u00e1ch", "patternProperties": {}, "properties": { "anonymised": { "description": "Zna\u010d\u00ed, zda-li byla provedena anonymizace dokumentu", "type": [ "boolean", "null" ], "validity": "B" }, "document": { "description": "Adresa URL fyzick\u00e9ho um\u00edst\u011bn\u00ed dokumentu. Typicky rsmluv.cz/[Typ]/[Id]/[Version]/File", "format": "uri", "type": [ "string", "null" ], "validity": "S" }, "plainText": { "description": "Prost\u00fd text dokumentu (nestrukturovan\u00fd, indexovateln\u00fd), alternativa pro scanovan\u00e9 dokumenty", "type": [ "string", "null" ], "validity": [ "B", "S" ] }, "publisher": { "$ref": "#/definitions/Publisher", "description": "Informace o vydavateli", "validity": "C" }, "responsiblePersons": { "description": "V\u00fd\u010det odpov\u011bdn\u00fdch osob", "items": { "type": "string" }, "type": [ "array", "null" ], "validity": "B" }, "type": { "description": "Typ dokumentu. Nab\u00fdv\u00e1 hodnot - Smlouva/P\u0159\u00edloha/Dodatek", "items": { "type": "string" }, "type": [ "array", "string", "null" ], "validity": "C" }, "uri": { "description": "Jednozna\u010dn\u00fd identifik\u00e1tor formou URL. Typicky rsmluv.cz/[Typ]/[Id]/[Version], kde Version je vzestupn\u00e9 \u010d\u00edslov\u00e1n\u00ed verz\u00ed p\u0159i zm\u011bn\u00e1ch dokumentu \u010di metadat", "format": "uri", "type": [ "string", "null" ], "validity": "S" }, "valid": { "description": "Indikuje, zda dokument je platn\u00fd, tj. nebyl zneplatn\u011bn nebo nahrazen novou verz\u00ed", "type": [ "boolean", "null" ], "validity": [ "B", "S" ] }, "versions": { "description": "\u00dadaje o verzi dokumentu", "items": { "$ref": "#/definitions/Version" }, "type": "array", "validity": "S" } }, "required": [ "type", "publisher" ], "title": "Document", "type": "object" }, "Implementation": { "description": "Roz\u0161\u00ed\u0159en\u00e9 informace ke smlouv\u011b", "patternProperties": {}, "properties": { "milestones": { "description": "Prob\u011bhl\u00e9 platby na z\u00e1klad\u011b smlouvy", "items": { "$ref": "#/definitions/Milestone" }, "type": "array", "_uniqueItems": true, "validity": "A" }, "transactions": { "description": "D\u016fle\u017eit\u00e1 ud\u00e1lost v \u017eivotn\u00edm cyklu smlouvy", "items": { "$ref": "#/definitions/Transaction" }, "type": "array", "_uniqueItems": true, "validity": "A" } }, "title": "Implementation", "type": "object" }, "Invoice": { "description": "Popisn\u00e9 \u00fadaje faktury.", "patternProperties": {}, "properties": { "amount": { "description": "Cena s DPH (u nepl\u00e1tc\u016f celkov\u00e1 cena)", "properties": { "amountVal": { "description": "Cena s DPH", "type": [ "number", "null" ], "validity": "C" }, "currencyVal": { "description": "M\u011bna, 3-p\u00edsmenn\u00fd, ISO 4217 form\u00e1t\u201d", "type": [ "string", "null" ], "validity": "B" } }, "type": [ "object", "number", "null" ], "validity": "C" }, "currency": { "description": "M\u011bna, 3-p\u00edsmenn\u00fd, ISO 4217 form\u00e1t", "type": [ "string", "null" ], "validity": "B" }, "dateSigned": { "description": "Datum posledn\u00edho podpisu", "format": "date", "type": [ "string", "null" ], "validity": "B" }, "dueDate": { "description": "Datum splatnosti", "format": "date", "type": [ "string", "null" ], "validity": "B" }, "parrentDocument": { "description": "Jednozna\u010dn\u00fd identifik\u00e1tor smlouvy, objedn\u00e1vky", "format": "uri", "type": [ "string", "null" ], "validity": "N" }, "parties": { "description": "V\u00fd\u010det smluvn\u00edch stran", "items": { "format": "uri", "type": [ "object", "integer", "string" ] }, "type": [ "array", "null" ], "validity": "N" }, "title": { "description": "P\u0159edm\u011bt", "type": [ "string", "null" ], "validity": "C" } }, "required": [ "title", "amount" ], "title": "Invoice", "type": "object" }, "Milestone": { "patternProperties": {}, "properties": { "dueDate": { "description": "Datum", "format": "date-time", "type": [ "string", "null" ], "validity": "C" }, "title": { "description": "N\u00e1zev", "type": [ "string", "null" ], "validity": "C" } }, "required": [ "title", "dueDate" ], "title": "Milestone", "type": "object" }, "Order": { "description": "", "patternProperties": {}, "properties": { "amount": { "description": "Cena s DPH", "properties": { "amountVal": { "description": "Cena s DPH", "type": [ "number", "null" ], "validity": "C" }, "currencyVal": { "description": "M\u011bna, 3-p\u00edsmenn\u00fd, ISO 4217 form\u00e1t\u201d", "type": [ "string", "null" ], "validity": "B" } }, "type": [ "object", "number", "null" ], "validity": "C" }, "currency": { "description": "M\u011bna, 3-p\u00edsmenn\u00fd, ISO 4217 form\u00e1t", "type": [ "string", "null" ], "validity": "B" }, "dateSigned": { "description": "Datum posledn\u00edho podpisu", "format": "date", "type": [ "string", "null" ], "validity": "B" }, "implementation": { "$ref": "#/definitions/Implementation", "description": "Objekt reprezentuj\u00edc\u00ed transakce a miln\u00edky", "validity": "A" }, "parrentDocument": { "description": "Jednozna\u010dn\u00fd identifik\u00e1tor smlouvy", "format": "uri", "type": [ "string", "null" ], "validity": "N" }, "parties": { "description": "V\u00fd\u010det smluvn\u00edch stran", "items": { "format": "uri", "type": [ "object", "integer", "string" ] }, "type": [ "array", "null" ], "validity": "N" }, "subjectType": { "description": "\u010c\u00edseln\u00edk typ\u016f zbo\u017e\u00ed/slu\u017eeb", "type": [ "string", "null" ], "validity": "N" }, "title": { "description": "P\u0159edm\u011bt", "type": [ "string", "null" ], "validity": "C" } }, "required": [ "title", "amount" ], "title": "Order", "type": "object" }, "Party": { "description": "\u00dadaje o konkr\u00e9tn\u00ed smluvn\u00ed stran\u011b vystupuj\u00edc\u00ed ve smlouv\u011b", "patternProperties": {}, "properties": { "address": { "description": "Adresa subjektu, p\u0159\u00edpadn\u011b \u201cAnonymizov\u00e1no\u201d", "properties": { "locality": { "description": "M\u011bsto, p\u0159\u00edpadn\u011b \u201cAnonymizov\u00e1no\u201d", "type": [ "string", "null" ], "validity": "A" }, "nuts": { "description": "Normalizovan\u00e1 klasifikace \u00fazemn\u00edch celk\u016f (nap\u0159. Praha - CZ010), p\u0159\u00edpadn\u011b \u201cAnonymizov\u00e1no\u201d", "type": [ "string", "null" ], "validity": "A" }, "postalCode": { "description": "PS\u010c, p\u0159\u00edpadn\u011b \u201cAnonymizov\u00e1no\u201d", "type": [ "integer", "null" ], "validity": "A" }, "streetAddress": { "description": "Ulice, p\u0159\u00edpadn\u011b \u201cAnonymizov\u00e1no\u201d", "type": [ "string", "null" ], "validity": "A" } }, "type": [ "object", "string", "null" ], "validity": "A" }, "country": { "description": "Zem\u011b p\u016fvodu, 3-p\u00edsmen\u00fd ISO k\u00f3d", "type": [ "string", "null" ], "validity": "B" }, "id": { "description": "Identifika\u010dn\u00ed \u010d\u00edslo osoby, lze vlo\u017eit i zahrani\u010dn\u00ed id", "type": [ "string", "null" ], "validity": "N" }, "localID": { "description": "Jednozna\u010dn\u00fd identifik\u00e1tor v r\u00e1mci dokumentu", "format": "uri", "type": [ "integer", "string", "null" ], "validity": "C" }, "name": { "description": "N\u00e1zev, p\u0159\u00edpadn\u011b jm\u00e9no a p\u0159\u00edjmen\u00ed (s tituly)", "type": [ "string", "null" ], "validity": "C" }, "noID": { "description": "Indikuje \u017ee subjekt nem\u00e1 I\u010c, nebo zahrani\u010dn\u00ed ID", "type": [ "boolean", "null" ], "validity": "B" }, "payer": { "description": "Identifikuje stranu kter\u00e1 bude finan\u010dn\u011b plnit, pokud nen\u00ed z\u0159ejm\u00e9, nevypl\u0148uje se", "type": [ "boolean", "null" ], "validity": "C" }, "paysVAT": { "description": "Indikuje, zda-li je subjekt pl\u00e1tce DPH", "type": "boolean", "validity": "S" }, "superiorInstitution": { "$ref": "#/definitions/SuperiorInstitution", "description": "\u0158\u00edd\u00edc\u00ed nebo ovl\u00e1daj\u00edc\u00ed pr\u00e1vnick\u00e1 osoba, v p\u0159\u00edpad\u011b ve\u0159ejnopr\u00e1vn\u00edch smluv nad\u0159\u00edzen\u00fd spr\u00e1vn\u00ed org\u00e1n", "validity": "S" } }, "required": [ "localID", "name" ], "title": "Party", "type": "object" }, "Publisher": { "description": "Informace o vydavateli, kter\u00fd zve\u0159ej\u0148uje \u00fadaje o smlouv\u00e1ch", "patternProperties": {}, "properties": { "authentication": { "description": "Zna\u010d\u00ed stupe\u0148 ov\u011b\u0159enosti zve\u0159ej\u0148uj\u00edc\u00ed strany", "type": [ "string", "null" ], "validity": "S" }, "country": { "description": "Zem\u011b p\u016fvodu, 3-p\u00edsmen\u00fd ISO k\u00f3d", "type": [ "string", "null" ], "validity": "B" }, "id": { "description": "Identifika\u010dn\u00ed \u010d\u00edslo osoby, lze vlo\u017eit i zahrani\u010dn\u00ed ID", "type": [ "string", "null" ], "validity": "N" }, "name": { "description": "N\u00e1zev, p\u0159\u00edpadn\u011b jm\u00e9no a p\u0159\u00edjmen\u00ed (s tituly)", "type": [ "string", "null" ], "validity": "C" }, "noID": { "description": "Indikuje \u017ee subjekt nem\u00e1 I\u010c, nebo zahrani\u010dn\u00ed ID", "type": [ "boolean", "null" ], "validity": "B" } }, "required": [ "name" ], "title": "Publisher", "type": "object" }, "SuperiorInstitution": { "description": "Informace o \u0159\u00edd\u00edc\u00ed nebo ovl\u00e1daj\u00edc\u00ed pr\u00e1vn\u00ed osob\u011b vystupuj\u00edc\u00ed u smluvn\u00ed strany. V p\u0159\u00edpad\u011b ve\u0159ejnopr\u00e1vn\u00edch smluv nad\u0159\u00edzen\u00fd spr\u00e1vn\u00ed org\u00e1n", "patternProperties": {}, "properties": { "country": { "description": "Zem\u011b p\u016fvodu, 3-p\u00edsmen\u00fd ISO k\u00f3d", "type": [ "string", "null" ], "validity": "B" }, "id": { "description": "Identifika\u010dn\u00ed \u010d\u00edslo osoby, lze vlo\u017eit i zahrani\u010dn\u00ed id", "type": [ "string", "null" ], "validity": "N" }, "localID": { "description": "Jednozna\u010dn\u00fd identifik\u00e1tor v r\u00e1mci dokumentu", "type": [ "integer", "null" ], "validity": "C" }, "name": { "description": "N\u00e1zev, p\u0159\u00edpadn\u011b jm\u00e9no a p\u0159\u00edjmen\u00ed (s tituly)", "type": [ "string", "null" ], "validity": "C" }, "noID": { "description": "Indikuje \u017ee subjekt nem\u00e1 I\u010c, nebo zahrani\u010dn\u00ed ID", "type": [ "boolean", "null" ], "validity": "B" } }, "required": [ "localID", "name" ], "title": "SuperiorInstitution", "type": "object" }, "Transaction": { "patternProperties": {}, "properties": { "amount": { "description": "Zaplacen\u00e1 cena s DPH, v\u017edy stejn\u00e1 m\u011bna jako v Currency", "properties": { "amountVal": { "description": "Cena s DPH", "type": [ "number", "null" ], "validity": "C" }, "currencyVal": { "description": "M\u011bna, 3-p\u00edsmenn\u00fd, ISO 4217 form\u00e1t\u201d", "type": [ "string", "null" ], "validity": "B" } }, "type": [ "object", "number", "null" ], "validity": "C" }, "date": { "description": "Datum a \u010das probl\u011bhl\u00e9 transakce", "format": "date-time", "type": [ "string", "null" ], "validity": "C" }, "publisherId": { "description": "Libovoln\u00fd \u010d\u00edseln\u00fd identifik\u00e1tor transakce, unik\u00e1tn\u00ed v r\u00e1mci smlouvy", "type": [ "string", "null" ], "validity": "B" }, "receiverOrganization": { "description": "Informace o p\u0159\u00edjemci. Viz. Party", "format": "uri", "type": [ "integer", "string", "null" ], "validity": "C" }, "senderOrganization": { "description": "Informace o odes\u00edlateli. Viz. Party", "format": "uri", "type": [ "integer", "string", "null" ], "validity": "C" } }, "required": [ "date", "amount", "senderOrganization", "receiverOrganization" ], "title": "Transaction", "type": "object" }, "Version": { "description": "Identifikace jednotliv\u00e9 verze dokumentu", "patternProperties": {}, "properties": { "published": { "description": "Identifik\u00e1tor dan\u00e9 verze", "format": "date-time", "type": [ "string", "null" ], "validity": "S" }, "publisherId": { "description": "Libovoln\u00fd \u010d\u00edseln\u00fd identifik\u00e1tor verze, spisov\u00e9 \u010d\u00edslo apod.", "type": [ "string", "null" ], "validity": "N" }, "uri": { "description": "Identifik\u00e1tor dan\u00e9 verze", "format": "uri", "type": [ "string", "null" ], "validity": "S" }, "version": { "description": "Po\u0159adov\u00e9 \u010d\u00edslo verze, nejvy\u0161\u0161\u00ed = aktu\u00e1ln\u00ed", "type": [ "integer", "null" ], "validity": "S" } }, "title": "Version", "type": "object" } }, "id": "http://standard.zindex.cz/doku.php/cs/standard/implementation", "properties": { "documents": { "description": "Seznam dokument\u016f", "items": { "anyOf": [ { "allOf": [ { "$ref": "#/definitions/Document" }, { "$ref": "#/definitions/Contract" } ] }, { "allOf": [ { "$ref": "#/definitions/Document" }, { "$ref": "#/definitions/Attachment" } ] }, { "allOf": [ { "$ref": "#/definitions/Document" }, { "$ref": "#/definitions/Amendment" } ] } ] }, "title": "Documents", "type": "array" }, "id": { "description": "Jednozna\u010dn\u00fd identifik\u00e1tor souboru", "title": "Release ID", "type": "string" }, "invoices": { "description": "Seznam faktur", "items": { "$ref": "#/definitions/Invoice" }, "title": "Invoices", "type": "array", "_uniqueItems": true }, "language": { "default": "cs", "description": "Specifikace jazyka pro data. Doporu\u010duje se pou\u017eit\u00ed dvou znakov\u00e9ho ISO 639-1", "title": "Release language", "type": [ "string", "null" ] }, "orders": { "description": "Seznam objedn\u00e1vek", "items": { "$ref": "#/definitions/Order" }, "title": "Orders", "type": "array", "_uniqueItems": true }, "parties": { "description": "V\u00fd\u010det smluvn\u00edch stran", "items": { "$ref": "#/definitions/Party" }, "title": "Parties", "type": "array", "_uniqueItems": true }, "published": { "_format": "date-time", "description": "Datum publikace souboru", "title": "Release date", "type": "string" } }, "required": [ "id", "published", "documents", "language" ], "title": "Definice datov\u00e9 struktury smluv", "type": "object" }
o12653
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "#/definitions/preRequestScript", "oneOf": [ { "type": "string" }, { "type": "null" } ], "description": "In some use cases, it's necessary to run a bit of code or perform some tasks before sending a request. Postman implements this feature by the use of this field. Any code written to this field is run before running a request." }
o67524
{ "properties": { "cachecellappfwmetadataexists": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "cachecellbasefile": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "cachecellcomplex": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "cachecellcompressionformat": { "readonly": true, "type": "string" }, "cachecellcurmisses": { "readonly": true, "type": "integer" }, "cachecellcurreaders": { "readonly": true, "type": "integer" }, "cachecelldestipverified": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "cachecelldhits": { "readonly": true, "type": "integer" }, "cachecelletaginserted": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "cachecellexpires": { "readonly": true, "type": "integer" }, "cachecellexpiresmillisec": { "readonly": true, "type": "integer" }, "cachecellfwpxyobj": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "cachecellhits": { "readonly": true, "type": "integer" }, "cachecellhttp11": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "cachecellminhit": { "readonly": true, "type": "integer" }, "cachecellminhitflag": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "cachecellmisses": { "readonly": true, "type": "integer" }, "cachecellpolleverytime": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "cachecellreadywithlastbyte": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "cachecellreqtime": { "readonly": true, "type": "integer" }, "cachecellresbadsize": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "cachecellrestime": { "readonly": true, "type": "integer" }, "cachecellweaketag": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "cachecontrol": { "readonly": true, "type": "string" }, "cachecurage": { "readonly": true, "type": "integer" }, "cachedirname": { "readonly": true, "type": "string" }, "cacheetag": { "readonly": true, "type": "string" }, "cachefilename": { "readonly": true, "type": "string" }, "cacheindisk": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "cacheinmemory": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "cacheinsecondary": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "cacheresdate": { "readonly": true, "type": "string" }, "cachereshdrsize": { "readonly": true, "type": "integer" }, "cachereslastmod": { "readonly": true, "type": "string" }, "cacheressize": { "readonly": true, "type": "integer" }, "cacheurls": { "readonly": true, "type": "string" }, "ceflags": { "readonly": true, "type": "integer" }, "contentgroup": { "readonly": true, "type": "string" }, "destipv46": { "readonly": true, "type": "string" }, "destport": { "readonly": true, "type": "integer" }, "flushed": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "group": { "type": "string" }, "groupname": { "type": "string" }, "hitparams": { "readonly": true, "type": "object" }, "hitvalues": { "readonly": true, "type": "object" }, "host": { "type": "string" }, "httpcalloutcell": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "httpcalloutname": { "readonly": true, "type": "string" }, "httpcalloutresult": { "readonly": true, "type": "string" }, "httpmethod": { "enum": [ "GET", "POST" ], "type": "string" }, "httpstatus": { "type": "integer" }, "httpstatusoutput": { "readonly": true, "type": "integer" }, "ignoremarkerobjects": { "enum": [ "ON", "OFF" ], "type": "string" }, "includenotreadyobjects": { "enum": [ "ON", "OFF" ], "type": "string" }, "locator": { "type": "integer" }, "locatorshow": { "readonly": true, "type": "integer" }, "markerreason": { "enum": [ "Waiting for min hit", "Response header is too big", "Content-length header said response size is not in group size limit", "Content-length response received more data", "Content-length response received less data", "Content-length response data is not in group size limit", "Chunk response received more data", "Chunk response data is not in group size limit", "Bad chunk format", "Fin terminated response data is not in group size limit" ], "readonly": true, "type": "string" }, "nodeid": { "type": "integer" }, "policy": { "readonly": true, "type": "integer" }, "policyname": { "readonly": true, "type": "string" }, "port": { "type": "integer" }, "prefetch": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "prefetchperiod": { "readonly": true, "type": "integer" }, "prefetchperiodmillisec": { "readonly": true, "type": "integer" }, "returntype": { "enum": [ "BOOL", "NUM", "TEXT" ], "readonly": true, "type": "string" }, "rule": { "readonly": true, "type": "object" }, "selectorname": { "readonly": true, "type": "object" }, "selectorvalue": { "readonly": true, "type": "object" }, "tosecondary": { "enum": [ "YES", "NO" ], "type": "string" }, "totalobjs": { "readonly": true, "type": "integer" }, "url": { "type": "string" }, "warnbucketskip": { "readonly": true, "type": "integer" } }, "title": "cacheobject", "type": "object" }
o30263
{ "additionalProperties": false, "properties": { "grades": { "items": { "additionalProperties": false, "properties": { "deleted_at": { "format": "date-time", "type": [ "string", "null" ] }, "lesson_id": { "type": "string" }, "mark": { "type": "number" }, "skill_id": { "type": "number" }, "student_id": { "type": "number" } }, "required": [ "mark", "skill_id", "lesson_id", "student_id", "deleted_at" ], "type": "object" }, "type": "array" }, "meta": { "additionalProperties": false, "properties": { "timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "timestamp" ], "type": "object" } }, "required": [ "grades", "meta" ], "type": "object" }
o10527
{ "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 for which the area needs to be calculated", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_5e5031a5
{ "$id": "https://json.schemastore.org/codeship-services.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": { "$ref": "#/definitions/ExternalService" }, "definitions": { "ExternalService": { "title": "CodeShip Pro Service", "description": "The definition of a service in a CodeShip Pro build, which can have steps run on it or have other services depend on it", "properties": { "add_docker": { "description": "If true, the docker socket will be exposed in this service.", "default": false, "type": "boolean" }, "build": { "description": "How to build the image for this service. Mutually exclusive with 'image'. Can either be just a path containing a Dockerfile, or a build definition.", "oneOf": [ { "$ref": "#/definitions/externalBuild" }, { "type": "string" } ] }, "cached": { "description": "Whether the image for this service should be rebuilt from scratch for each run, or if the latest build of the service's image from the configured cache branch (defaulting to 'master') should be used.", "default": false, "type": "boolean" }, "cap_add": { "items": { "type": "string" }, "type": "array" }, "cap_drop": { "items": { "type": "string" }, "type": "array" }, "command": { "description": "The command to run when launching the service, overriding the 'CMD' in the image. Optional.", "type": "string" }, "cpuset": { "type": "string" }, "cpu_shares": { "type": "integer" }, "default_cache_branch": { "description": "The branch to use for caching. Defaults to 'master'", "type": "string" }, "dns": { "items": { "type": "string" }, "type": "array" }, "dns_search": { "items": { "type": "string" }, "type": "array" }, "dockercfg_service": { "description": "The name of another defined service that provides the Docker configuration for building and running this service. Optional.", "type": "string" }, "dockerfile": { "description": "A specific Dockerfile to use, rather than the one in the build context", "type": "string" }, "domainname": { "type": "string" }, "encrypted_dockercfg_path": { "description": "The location of a Docker configuration file encrypted by Jet to be used with building and running this service. Optional.", "type": "string" }, "encrypted_env_file": { "description": "The location of one or more files, encrypted with Jet, containing environment variables to be made available to this service and steps running on it. Optional.", "oneOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "encrypted_environment": { "description": "A list of encrypted key/value pairs to be used in the environment for this service and steps running on it. Optional.", "items": { "type": "string" }, "type": "array" }, "entrypoint": { "oneOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "env_file": { "description": "The location of one or more files containing environment variables to be made available to this service and steps running on it. Optional.", "oneOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "environment": { "description": "Either a map of key/value pairs or a list of 'KEY=VALUE' pairs to be used in the environment for this service and steps running on it. Optional.", "oneOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "object", "additionalProperties": true } ] }, "expose": { "items": { "type": "string" }, "type": "array" }, "extra_hosts": { "items": { "type": "string" }, "type": "array" }, "hostname": { "type": "string" }, "image": { "description": "A pre-existing image to use for this service. Mutually exclusive with 'build'", "type": "string" }, "links": { "items": { "type": "string" }, "type": "array" }, "depends_on": { "description": "A list of other services that this service depends on. Use this instead of 'links'", "items": { "type": "string" }, "type": "array" }, "mem_limit": { "type": "string" }, "privileged": { "type": "boolean" }, "ports": { "description": "A list of ports that should be exposed to other services. The ports should be defined like '9999', as strings", "items": { "type": "string" }, "type": "array" }, "read_only": { "type": "boolean" }, "restart": { "type": "string" }, "security_opt": { "items": { "type": "string" }, "type": "array" }, "user": { "type": "string" }, "volumes": { "description": "A list of origin/destination pairs of directories or files relative to the build context and where they should be mounted in the service. Optional.", "items": { "type": "string" }, "type": "array" }, "volumes_from": { "description": "A list of other services which should have their defined volumes mounted into this service as well. Optional.", "items": { "type": "string" }, "type": "array" }, "working_dir": { "type": "string" } }, "additionalProperties": false, "type": "object", "oneOf": [ { "required": ["build"] }, { "required": ["image"] } ] }, "externalBuild": { "title": "Image Build", "description": "Configuration of how to build the image for this service", "properties": { "path": { "description": "DEPRECATED: Use 'context' instead.", "type": "string" }, "dockerfile_path": { "description": "DEPRECATED: Use 'dockerfile' instead", "type": "string" }, "image": { "description": "The output image name for this image. Optional.", "type": "string" }, "context": { "description": "The directory used as the Docker build context. Defaults to the same directory as the codeship-services.yml file", "type": "string" }, "dockerfile": { "description": "A specific Dockerfile to use rather than the 'Dockerfile' present in the build context. Optional.", "type": "string" }, "configure": { "$ref": "#/definitions/externalBuildConfigure" }, "args": { "description": "Build args to pass to Docker. Optional.", "oneOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "object", "additionalProperties": true } ] }, "encrypted_args_file": { "description": "One or more files, encrypted with Jet, to have their contents decrypted and passed to Docker as build args. Optional.", "oneOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] }, "encrypted_args": { "description": "A list of encrypted key/value pairs to be used as build args to Docker. Optional.", "oneOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ] } }, "additionalProperties": false, "type": "object" }, "externalBuildConfigure": { "properties": { "service": { "type": "string" }, "command": { "type": "string" } }, "additionalProperties": false, "type": "object" } }, "description": "codeship-services.yml is where you configure each service you need to run your CI/CD builds with CodeShip.", "title": "CodeShip Pro services configuration", "type": "object" }
codeship-services
{ "description": "AttachedVolume describes a volume attached to a node", "properties": { "devicePath": { "description": "DevicePath represents the device path where the volume should be available", "type": [ "string", "null" ] }, "name": { "description": "Name of the attached volume", "type": [ "string", "null" ] } }, "required": [ "name", "devicePath" ], "type": "object" }
kb_42_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "A vaccine delivery driver", "properties": { "doc_type": { "pattern": "^driver$", "type": "string" }, "email": { "_format": "email", "chance": "email", "type": "string" }, "forename": { "faker": "name.firstName", "minLength": 1, "type": "string" }, "phone": { "faker": "phone.phoneNumber", "type": "string" }, "surname": { "faker": "name.lastName", "minLength": 1, "type": "string" }, "version": { "_format": "semver", "type": "string" } }, "required": [ "doc_type", "version", "forename", "surname", "email", "phone" ], "title": "Driver", "type": "object" }
o37720
{ "additionalProperties": false, "description": "Schema for a screen view event", "minProperties": 2, "properties": { "id": { "_format": "uuid", "description": "An ID from the associated screenview event.", "maxLength": 36, "type": "string" }, "name": { "description": "The name of the screen viewed.", "type": "string" }, "previousId": { "_format": "uuid", "description": "A screenview ID of the previous screenview.", "type": "string" }, "previousName": { "description": "The name of the previous screen.", "type": "string" }, "previousType": { "description": "The screen type of the previous screenview.", "type": "string" }, "transitionType": { "description": "The type of transition that led to the screen being viewed.", "type": "string" }, "type": { "description": "The type of screen that was viewed e.g feed / carousel.", "type": "string" } }, "required": [ "name", "id" ], "self": { "format": "jsonschema", "name": "screen_view", "vendor": "com.snowplowanalytics.mobile", "version": "1-0-0" }, "type": "object" }
sp_225_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://dcc.icgc.org/drug-text", "type": "object", "properties": { "atc_codes_code": { "id": "https://dcc.icgc.org/drug-text/atc_codes_code", "type": "array", "items": { "id": "https://dcc.icgc.org/drug-text/atc_codes_code/0", "type": "string" }, "additionalItems": false }, "atc_codes_description": { "id": "https://dcc.icgc.org/drug-text/atc_codes_description", "type": "array", "items": { "id": "https://dcc.icgc.org/drug-text/atc_codes_description/0", "type": "string" }, "additionalItems": false }, "atc_level5_codes": { "id": "https://dcc.icgc.org/drug-text/atc_level5_codes", "type": "array", "items": { "id": "https://dcc.icgc.org/drug-text/atc_level5_codes/0", "type": "string" }, "additionalItems": false }, "drug_class": { "id": "https://dcc.icgc.org/drug-text/drug_class", "type": "string" }, "external_references_chembl": { "id": "https://dcc.icgc.org/drug-text/external_references_chembl", "type": "array", "items": { "id": "https://dcc.icgc.org/drug-text/external_references_chembl/0", "type": "string" }, "additionalItems": false }, "external_references_drugbank": { "id": "https://dcc.icgc.org/drug-text/external_references_drugbank", "type": "array", "items": { "id": "https://dcc.icgc.org/drug-text/external_references_drugbank/0", "type": "string" }, "additionalItems": false }, "id": { "id": "https://dcc.icgc.org/drug-text/id", "type": "string" }, "inchikey": { "id": "https://dcc.icgc.org/drug-text/inchikey", "type": "string" }, "name": { "id": "https://dcc.icgc.org/drug-text/name", "type": "string" }, "synonyms": { "id": "https://dcc.icgc.org/drug-text/synonyms", "type": "array", "items": { "id": "https://dcc.icgc.org/drug-text/synonyms/1", "type": "string" }, "additionalItems": false }, "trials_conditions_name": { "id": "https://dcc.icgc.org/drug-text/trials_conditions_name", "type": "array", "items": { "id": "https://dcc.icgc.org/drug-text/trials_conditions_name/185", "type": "string" }, "additionalItems": false }, "trials_description": { "id": "https://dcc.icgc.org/drug-text/trials_description", "type": "array", "items": { "id": "https://dcc.icgc.org/drug-text/trials_description/155", "type": "string" }, "additionalItems": false }, "type": { "id": "https://dcc.icgc.org/drug-text/type", "type": "string" } }, "additionalProperties": false }
o47111
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "oneOf": [ { "type": "string", "maxLength": 32767 }, { "type": "number" }, { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "value": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false } ] } }, "additionalProperties": false }
o9803
{ "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", "properties": { "apiVersion": { "description": "APIVersion holds the API group and version of the referenced subject. Defaults to \"v1\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io/v1alpha1\" for User and Group subjects.", "type": [ "string", "null" ] }, "kind": { "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", "type": [ "string", "null" ] }, "name": { "description": "Name of the object being referenced.", "type": [ "string", "null" ] }, "namespace": { "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", "type": [ "string", "null" ] } }, "required": [ "kind", "name" ], "type": "object" }
kb_1038_Normalized
{ "$id": "https://json.schemastore.org/drupal-routing.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": { "type": "object", "properties": { "path": { "title": "Route path", "type": "string" }, "defaults": { "title": "Default route parameters", "type": "object", "properties": { "_controller": { "title": "A controller to execute when the route is matched", "type": "string" }, "_form": { "type": "string" }, "_title": { "type": "string" }, "_title_callback": { "type": "string" }, "_access": { "type": "string" }, "_entity_list": { "type": "string" }, "_entity_form": { "type": "string" }, "_entity_view": { "type": "string" } } }, "requirements": { "title": "List of requirements that makes a specific route only match under specific conditions", "type": "object", "properties": { "_access": { "type": "string" }, "_custom_access": { "type": "string" }, "_format": { "type": "string" }, "_entity_access": { "type": "string" }, "_entity_create_access": { "type": "string" }, "_entity_delete_multiple_access": { "type": "string" }, "_module_dependencies": { "type": "string" }, "_csrf_token": { "type": "string" }, "_user_is_logged_in": { "type": "string" }, "_access_theme": { "type": "string" }, "_permission": { "type": "string" } } }, "methods": { "title": "Method of the incoming request to match the route", "type": "array", "items": { "type": "string", "enum": ["GET", "POST", "PATCH", "PUT", "DELETE"] }, "uniqueItems": true }, "options": { "title": "Additional route options", "type": "object", "properties": { "no_cache": { "type": "boolean" }, "_admin_route": { "type": "boolean" }, "_no_path": { "type": "boolean" }, "_maintenance_access": { "type": "boolean" }, "_node_operation_route": { "type": "boolean" }, "parameters": { "type": "object" }, "_auth": { "type": "array", "items": { "type": "string" }, "uniqueItems": true } } } }, "additionalProperties": false }, "properties": { "route_callbacks": { "title": "List of callbacks to provide routes", "type": "array", "items": { "type": "string" }, "uniqueItems": true } }, "title": "JSON schema for Drupal routing file", "type": "object" }
drupal-routing
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "title": "Circulation policy", "description": "JSON schema for circulation policies.", "additionalProperties": false, "required": [ "$schema", "pid", "name", "organisation", "is_default" ], "properties": { "$schema": { "title": "Schema", "description": "Schema to validate circulation policies records against.", "type": "string", "minLength": 9, "default": "https://ils.rero.ch/schemas/circ_policies/circ_policy-v0.0.1.json" }, "pid": { "title": "Circulation policy ID", "type": "string", "minLength": 1 }, "name": { "title": "Circulation policy name", "description": "The name of the circulation policy.", "type": "string", "minLength": 2 }, "description": { "title": "Circulation policy description", "description": "The description of the circulation policy.", "type": "string" }, "organisation": { "title": "Organisation", "type": "object", "properties": { "$ref": { "title": "Organisation URI", "type": "string", "pattern": "^https://ils.rero.ch/api/organisations/.*?$" } } }, "allow_checkout": { "title": "Allow Checkout", "description": "Checkouts are allowed or not.", "type": "boolean", "default": true }, "checkout_duration": { "title": "Checkout duration in days", "description": "The duration of the checkout in days.", "type": "integer", "minimum": 1, "default": 7 }, "allow_requests": { "title": "Allow patron requests", "description": "Patron requests are allowed or not.", "type": "boolean", "default": true }, "number_of_days_before_due_date": { "title": "Number of days before due date.", "description": "Number of days before due date for sending the due_soon notification.", "type": "integer", "default": 5, "minimum": 0 }, "number_of_days_after_due_date": { "title": "Number of days after due date", "description": "Number of days after due date for sending the first overdue notification.", "type": "integer", "default": 5, "minimum": 1 }, "reminder_fee_amount": { "title": "The amount of reminder fee", "description": "Overdue amount.", "type": "number", "default": 2.0 }, "number_renewals": { "title": "Maximum number of renewals", "description": "Maximum number of renewals allowed.", "type": "integer", "minimum": 0, "default": 0 }, "renewal_duration": { "title": "Renewal duration in days", "description": "The duration of the renewal in days.", "type": "integer", "minimum": 1 }, "is_default": { "title": "Mark as default policy", "type": "boolean", "default": false }, "policy_library_level": { "title": "Library level policy", "type": "boolean", "default": false }, "libraries": { "title": "List of libraries", "type": "array", "items": { "type": "object", "additionalProperties": false, "required": [ "$ref" ], "properties": { "$ref": { "title": "Library URI", "type": "string", "pattern": "^https://ils.rero.ch/api/libraries/.*?$" } } } }, "settings": { "title": "Patron + Item types links", "type": "array", "items": { "type": "object", "additionalProperties": false, "required": [ "patron_type", "item_type" ], "properties": { "patron_type": { "title": "Patron type", "type": "object", "additionalProperties": false, "required": [ "$ref" ], "properties": { "$ref": { "title": "Patron type URI", "type": "string", "pattern": "^https://ils.rero.ch/api/patron_types/.*?$" } } }, "item_type": { "title": "Item type", "type": "object", "additionalProperties": false, "required": [ "$ref" ], "properties": { "$ref": { "title": "Item type URI", "type": "string", "pattern": "^https://ils.rero.ch/api/item_types/.*?$" } } } } } } } }
o69965
{ "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "___utils_content_element_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "An item that conforms to this schema can be rendered in a sequence", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/trait_alignment_json" }, "channels": { "$ref": "#/definitions/trait_channel_json" }, "gallery_properties": { "$ref": "#/definitions/trait_gallery_properties_json" }, "subtype": { "$ref": "#/definitions/trait_subtype_json" }, "type": { "type": "string" } }, "required": [ "type" ], "title": "An element that can be listed as part of content elements", "type": "object" }, "trait_additional_properties_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "A grab-bag object for non-validatable data.", "title": "Has additional properties", "type": "object" }, "trait_alignment_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A property used to determine horizontal positioning of a content element relative to the elements that immediately follow it in the element sequence.", "enum": [ "left", "right", "center" ], "title": "Alignment", "type": "string" }, "trait_channel_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An optional list of output types for which this element should be visible", "items": { "type": "string" }, "title": "Channel trait", "type": "array" }, "trait_focal_point_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Coordinates representing the 'visual center' of an image. The X axis is horizontal line and the Y axis the vertical line, with 0,0 being the LEFT, TOP of the image.", "properties": { "x": { "description": "The coordinate point on the horizontal axis", "type": "number" }, "y": { "description": "The coordinate point on the vertical axis", "type": "number" } }, "required": [ "x", "y" ], "title": "Focal Point", "type": "object" }, "trait_gallery_properties_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An object for overrides for images when images are used in a gallery. Example usage: Each image in a gallery may have the images own focal point overridden by the gallery.", "gallery_properties": { "focal_point": { "$ref": "#/definitions/trait_focal_point_json" } }, "title": "Has gallery properties", "type": "object" }, "trait_id_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A globally unique identifier of the content in the ANS repository.", "title": "Globally Unique ID trait", "type": "string" }, "trait_subtype_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.", "title": "Subtype or Template", "type": "string" } }, "description": "Holds attributes of an ANS collection - a common parent to story and gallery objects.", "items": { "$ref": "#/definitions/___utils_content_element_json" }, "title": "A collection of content.", "type": "array" }
wp_47_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema", "type": "object", "format": "minimal", "properties": { "repositories": { "type": "object", "patternProperties": { "^[^/#]+$": { "type": "object", "format": "minimal_repository" } }, "additionalProperties": false }, "number_of_repositories": { "format": "positiveInteger" }, "number_of_first_timers": { "format": "positiveInteger" }, "first_timers": { "type": "object", "patternProperties": { "^[^/#]+$": { "type": "object", "format": "minimal_user" } }, "additionalProperties": false }, "pull_requests_in_organization": { "type": "object", "patternProperties": { "^[^/#]+/[^/#]+#[012456789]+$": { "type": "object", "format": "minimal_pullrequest" } }, "additionalProperties": false }, "number_of_pull_requests_in_organization": { "format": "positiveInteger" } }, "required": [ "repositories", "number_of_pull_requests_in_organization", "pull_requests_in_organization", "first_timers", "number_of_first_timers", "number_of_repositories" ] }
o63382
{ "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_Affinity": { "description": "Affinity is a group of affinity scheduling rules.", "properties": { "nodeAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity", "description": "Describes node affinity scheduling rules for the pod." }, "podAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity", "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." }, "podAntiAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity", "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." } }, "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_AzureFileVolumeSource": { "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" }, "shareName": { "description": "Share Name", "type": "string" } }, "required": [ "secretName", "shareName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource": { "description": "Represents a source location of a volume to mount, managed by an external CSI driver", "properties": { "driver": { "description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.", "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "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 secret references are passed." }, "readOnly": { "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, "description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.", "type": "object" } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities": { "description": "Adds and removes POSIX capabilities from running containers.", "properties": { "add": { "description": "Added capabilities", "items": { "type": "string" }, "type": "array" }, "drop": { "description": "Removed capabilities", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource": { "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_LocalObjectReference", "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_CinderVolumeSource": { "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_LocalObjectReference", "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_ConfigMapEnvSource": { "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", "properties": { "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 must be defined", "type": "boolean" } }, "type": "object" }, "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_ConfigMapProjection": { "description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "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 keys must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource": { "description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "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 keys must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container": { "description": "A single application container that you want to run within a pod.", "properties": { "args": { "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "env": { "description": "List of environment variables to set in the container. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "envFrom": { "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "image": { "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.", "type": "string" }, "imagePullPolicy": { "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", "type": "string" }, "lifecycle": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle", "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated." }, "livenessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "name": { "description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", "type": "string" }, "ports": { "description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort" }, "type": "array", "x-kubernetes-list-map-keys": [ "containerPort", "protocol" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "containerPort", "x-kubernetes-patch-strategy": "merge" }, "readinessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "resources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements", "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/" }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext", "description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" }, "startupProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" }, "stdinOnce": { "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", "type": "boolean" }, "terminationMessagePath": { "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "type": "string" }, "terminationMessagePolicy": { "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", "type": "string" }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": "boolean" }, "volumeDevices": { "description": "volumeDevices is the list of block devices to be used by the container.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice" }, "type": "array", "x-kubernetes-patch-merge-key": "devicePath", "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount" }, "type": "array", "x-kubernetes-patch-merge-key": "mountPath", "x-kubernetes-patch-strategy": "merge" }, "workingDir": { "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort": { "description": "ContainerPort represents a network port in a single container.", "properties": { "containerPort": { "_format": "int32", "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", "type": "integer" }, "hostIP": { "description": "What host IP to bind the external port to.", "type": "string" }, "hostPort": { "_format": "int32", "description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.", "type": "integer" }, "name": { "description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", "type": "string" }, "protocol": { "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".", "type": "string" } }, "required": [ "containerPort" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection": { "description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.", "properties": { "items": { "description": "Items is a list of DownwardAPIVolume file", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile": { "description": "DownwardAPIVolumeFile represents information to create the file containing the pod field", "properties": { "fieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector", "description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported." }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'", "type": "string" }, "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, requests.cpu and requests.memory) are currently supported." } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource": { "description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "Items is a list of downward API volume file", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource": { "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.", "properties": { "medium": { "description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", "type": "string" }, "sizeLimit": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource": { "description": "EnvFromSource represents the source of a set of ConfigMaps", "properties": { "configMapRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource", "description": "The ConfigMap to select from" }, "prefix": { "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource", "description": "The Secret to select from" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar": { "description": "EnvVar represents an environment variable present in a Container.", "properties": { "name": { "description": "Name of the environment variable. Must be a C_IDENTIFIER.", "type": "string" }, "value": { "description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".", "type": "string" }, "valueFrom": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource", "description": "Source for the environment variable's value. Cannot be used if value is not empty." } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource": { "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" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer": { "description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.", "properties": { "args": { "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "env": { "description": "List of environment variables to set in the container. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "envFrom": { "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "image": { "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images", "type": "string" }, "imagePullPolicy": { "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", "type": "string" }, "lifecycle": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle", "description": "Lifecycle is not allowed for ephemeral containers." }, "livenessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "name": { "description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.", "type": "string" }, "ports": { "description": "Ports are not allowed for ephemeral containers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort" }, "type": "array" }, "readinessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "resources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements", "description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod." }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext", "description": "SecurityContext is not allowed for ephemeral containers." }, "startupProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" }, "stdinOnce": { "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", "type": "boolean" }, "targetContainerName": { "description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.", "type": "string" }, "terminationMessagePath": { "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "type": "string" }, "terminationMessagePolicy": { "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", "type": "string" }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": "boolean" }, "volumeDevices": { "description": "volumeDevices is the list of block devices to be used by the container.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice" }, "type": "array", "x-kubernetes-patch-merge-key": "devicePath", "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount" }, "type": "array", "x-kubernetes-patch-merge-key": "mountPath", "x-kubernetes-patch-strategy": "merge" }, "workingDir": { "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction": { "description": "ExecAction describes a \"run in container\" action.", "properties": { "command": { "description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", "items": { "type": "string" }, "type": "array" } }, "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_FlexVolumeSource": { "description": "FlexVolume represents a generic 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_LocalObjectReference", "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_GitRepoVolumeSource": { "description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.", "properties": { "directory": { "description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.", "type": "string" }, "repository": { "description": "Repository URL", "type": "string" }, "revision": { "description": "Commit hash for the specified revision.", "type": "string" } }, "required": [ "repository" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource": { "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" }, "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_HTTPGetAction": { "description": "HTTPGetAction describes an action based on HTTP Get requests.", "properties": { "host": { "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.", "type": "string" }, "httpHeaders": { "description": "Custom headers to set in the request. HTTP allows repeated headers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader" }, "type": "array" }, "path": { "description": "Path to access on the HTTP server.", "type": "string" }, "port": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." }, "scheme": { "description": "Scheme to use for connecting to the host. Defaults to HTTP.", "type": "string" } }, "required": [ "port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader": { "description": "HTTPHeader describes a custom header to be used in HTTP probes", "properties": { "name": { "description": "The header field name", "type": "string" }, "value": { "description": "The header field value", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler": { "description": "Handler defines a specific action that should be taken", "properties": { "exec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction", "description": "One and only one of the following should be specified. Exec specifies the action to take." }, "httpGet": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction", "description": "HTTPGet specifies the http request to perform." }, "tcpSocket": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias": { "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.", "properties": { "hostnames": { "description": "Hostnames for the above IP address.", "items": { "type": "string" }, "type": "array" }, "ip": { "description": "IP address of the host file entry.", "type": "string" } }, "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_ISCSIVolumeSource": { "description": "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_LocalObjectReference", "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_KeyToPath": { "description": "Maps a string key to a path within a volume.", "properties": { "key": { "description": "The key to project.", "type": "string" }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.", "type": "string" } }, "required": [ "key", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle": { "description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", "properties": { "postStart": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler", "description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" }, "preStop": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler", "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": { "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" } }, "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_NodeAffinity": { "description": "Node affinity is a group of node affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector", "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node." } }, "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_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_PersistentVolumeClaimVolumeSource": { "description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).", "properties": { "claimName": { "description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "type": "string" }, "readOnly": { "description": "Will force the ReadOnly setting in VolumeMounts. Default false.", "type": "boolean" } }, "required": [ "claimName" ], "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_PodAffinity": { "description": "Pod affinity is a group of inter pod affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": { "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over a set of resources, in this case pods." }, "namespaces": { "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"", "items": { "type": "string" }, "type": "array" }, "topologyKey": { "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.", "type": "string" } }, "required": [ "topologyKey" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity": { "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig": { "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", "properties": { "nameservers": { "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.", "items": { "type": "string" }, "type": "array" }, "options": { "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption" }, "type": "array" }, "searches": { "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption": { "description": "PodDNSConfigOption defines DNS resolver options of a pod.", "properties": { "name": { "description": "Required.", "type": "string" }, "value": { "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate": { "description": "PodReadinessGate contains the reference to a pod condition", "properties": { "conditionType": { "description": "ConditionType refers to a condition in the pod's condition list with matching type.", "type": "string" } }, "required": [ "conditionType" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext": { "description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.", "properties": { "fsGroup": { "_format": "int64", "description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.", "type": "integer" }, "fsGroupChangePolicy": { "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".", "type": "string" }, "runAsGroup": { "_format": "int64", "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", "type": "integer" }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "boolean" }, "runAsUser": { "_format": "int64", "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container." }, "supplementalGroups": { "description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.", "items": { "_format": "int64", "type": "integer" }, "type": "array" }, "sysctls": { "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl" }, "type": "array" }, "windowsOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec": { "description": "PodSpec is a description of a pod.", "properties": { "activeDeadlineSeconds": { "_format": "int64", "description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.", "type": "integer" }, "affinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity", "description": "If specified, the pod's scheduling constraints" }, "automountServiceAccountToken": { "description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.", "type": "boolean" }, "containers": { "description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "dnsConfig": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig", "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." }, "dnsPolicy": { "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.", "type": "string" }, "enableServiceLinks": { "description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.", "type": "boolean" }, "ephemeralContainers": { "description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "hostAliases": { "description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias" }, "type": "array", "x-kubernetes-patch-merge-key": "ip", "x-kubernetes-patch-strategy": "merge" }, "hostIPC": { "description": "Use the host's ipc namespace. Optional: Default to false.", "type": "boolean" }, "hostNetwork": { "description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.", "type": "boolean" }, "hostPID": { "description": "Use the host's pid namespace. Optional: Default to false.", "type": "boolean" }, "hostname": { "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.", "type": "string" }, "imagePullSecrets": { "description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "initContainers": { "description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "nodeName": { "description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.", "type": "string" }, "nodeSelector": { "additionalProperties": { "type": "string" }, "description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/", "type": "object" }, "overhead": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.", "type": "object" }, "preemptionPolicy": { "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.", "type": "string" }, "priority": { "_format": "int32", "description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.", "type": "integer" }, "priorityClassName": { "description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.", "type": "string" }, "readinessGates": { "description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate" }, "type": "array" }, "restartPolicy": { "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy", "type": "string" }, "runtimeClassName": { "description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.", "type": "string" }, "schedulerName": { "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", "type": "string" }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext", "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field." }, "serviceAccount": { "description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.", "type": "string" }, "serviceAccountName": { "description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/", "type": "string" }, "shareProcessNamespace": { "description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.", "type": "boolean" }, "subdomain": { "description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.", "type": "string" }, "terminationGracePeriodSeconds": { "_format": "int64", "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", "type": "integer" }, "tolerations": { "description": "If specified, the pod's tolerations.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration" }, "type": "array" }, "topologySpreadConstraints": { "description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is only honored by clusters that enable the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint" }, "type": "array", "x-kubernetes-list-map-keys": [ "topologyKey", "whenUnsatisfiable" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "topologyKey", "x-kubernetes-patch-strategy": "merge" }, "volumes": { "description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge,retainKeys" } }, "required": [ "containers" ], "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_PreferredSchedulingTerm": { "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", "properties": { "preference": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm", "description": "A node selector term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "preference" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe": { "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", "properties": { "exec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction", "description": "One and only one of the following should be specified. Exec specifies the action to take." }, "failureThreshold": { "_format": "int32", "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", "type": "integer" }, "httpGet": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction", "description": "HTTPGet specifies the http request to perform." }, "initialDelaySeconds": { "_format": "int32", "description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer" }, "periodSeconds": { "_format": "int32", "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", "type": "integer" }, "successThreshold": { "_format": "int32", "description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" }, "timeoutSeconds": { "_format": "int32", "description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource": { "description": "Represents a projected volume source", "properties": { "defaultMode": { "_format": "int32", "description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "sources": { "description": "list of volume projections", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection" }, "type": "array" } }, "required": [ "sources" ], "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_RBDVolumeSource": { "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_LocalObjectReference", "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_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_ResourceRequirements": { "description": "ResourceRequirements describes the compute resource requirements.", "properties": { "limits": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object" }, "requests": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions": { "description": "SELinuxOptions are the labels to be applied to the container", "properties": { "level": { "description": "Level is SELinux level label that applies to the container.", "type": "string" }, "role": { "description": "Role is a SELinux role label that applies to the container.", "type": "string" }, "type": { "description": "Type is a SELinux type label that applies to the container.", "type": "string" }, "user": { "description": "User is a SELinux user label that applies to the container.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource": { "description": "ScaleIOVolumeSource 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_LocalObjectReference", "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_SecretEnvSource": { "description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.", "properties": { "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 must be defined", "type": "boolean" } }, "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_api_core_v1_SecretProjection": { "description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "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" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource": { "description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "optional": { "description": "Specify whether the Secret or its keys must be defined", "type": "boolean" }, "secretName": { "description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext": { "description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.", "properties": { "allowPrivilegeEscalation": { "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN", "type": "boolean" }, "capabilities": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities", "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime." }, "privileged": { "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.", "type": "boolean" }, "procMount": { "description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.", "type": "string" }, "readOnlyRootFilesystem": { "description": "Whether this container has a read-only root filesystem. Default is false.", "type": "boolean" }, "runAsGroup": { "_format": "int64", "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "integer" }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "boolean" }, "runAsUser": { "_format": "int64", "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." }, "windowsOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection": { "description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).", "properties": { "audience": { "description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.", "type": "string" }, "expirationSeconds": { "_format": "int64", "description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.", "type": "integer" }, "path": { "description": "Path is the path relative to the mount point of the file to project the token into.", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource": { "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_LocalObjectReference", "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_Sysctl": { "description": "Sysctl defines a kernel parameter to be set", "properties": { "name": { "description": "Name of a property to set", "type": "string" }, "value": { "description": "Value of a property to set", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction": { "description": "TCPSocketAction describes an action based on opening a socket", "properties": { "host": { "description": "Optional: Host name to connect to, defaults to the pod IP.", "type": "string" }, "port": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." } }, "required": [ "port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": { "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.", "properties": { "effect": { "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.", "type": "string" }, "key": { "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", "type": "string" }, "operator": { "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.", "type": "string" }, "tolerationSeconds": { "_format": "int64", "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", "type": "integer" }, "value": { "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint": { "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain." }, "maxSkew": { "_format": "int32", "description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.", "type": "integer" }, "topologyKey": { "description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.", "type": "string" }, "whenUnsatisfiable": { "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.", "type": "string" } }, "required": [ "maxSkew", "topologyKey", "whenUnsatisfiable" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume": { "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.", "properties": { "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_AzureFileVolumeSource", "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "cephfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource", "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_CinderVolumeSource", "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource", "description": "ConfigMap represents a configMap that should populate this volume" }, "csi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource", "description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)." }, "downwardAPI": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource", "description": "DownwardAPI represents downward API about the pod that should populate this volume" }, "emptyDir": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource", "description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir" }, "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_FlexVolumeSource", "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. 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. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "gitRepo": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource", "description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container." }, "glusterfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource", "description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. 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 pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. 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_ISCSIVolumeSource", "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md" }, "name": { "description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "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 that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "persistentVolumeClaim": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource", "description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" }, "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" }, "projected": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource", "description": "Items for all in one resources secrets, configmaps, and downward API" }, "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_RBDVolumeSource", "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_ScaleIOVolumeSource", "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "secret": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource", "description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret" }, "storageos": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource", "description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes." }, "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" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice": { "description": "volumeDevice describes a mapping of a raw block device within a container.", "properties": { "devicePath": { "description": "devicePath is the path inside of the container that the device will be mapped to.", "type": "string" }, "name": { "description": "name must match the name of a persistentVolumeClaim in the pod", "type": "string" } }, "required": [ "name", "devicePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount": { "description": "VolumeMount describes a mounting of a Volume within a container.", "properties": { "mountPath": { "description": "Path within the container at which the volume should be mounted. Must not contain ':'.", "type": "string" }, "mountPropagation": { "description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.", "type": "string" }, "name": { "description": "This must match the Name of a Volume.", "type": "string" }, "readOnly": { "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", "type": "boolean" }, "subPath": { "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", "type": "string" }, "subPathExpr": { "description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.", "type": "string" } }, "required": [ "name", "mountPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection": { "description": "Projection that may be projected along with other supported volume types", "properties": { "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection", "description": "information about the configMap data to project" }, "downwardAPI": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection", "description": "information about the downwardAPI data to project" }, "secret": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection", "description": "information about the secret data to project" }, "serviceAccountToken": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection", "description": "information about the serviceAccountToken data to project" } }, "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_core_v1_WeightedPodAffinityTerm": { "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", "properties": { "podAffinityTerm": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm", "description": "Required. A pod affinity term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "podAffinityTerm" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions": { "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.", "properties": { "gmsaCredentialSpec": { "description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.", "type": "string" }, "gmsaCredentialSpecName": { "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.", "type": "string" }, "runAsUserName": { "description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "string" } }, "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_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is 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. 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_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "description": "PodTemplateSpec describes the data a pod should have when created from a template", "properties": { "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_PodSpec", "description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object" }
kb_743_Normalized
{ "description": "Blog Post Schema", "properties": { "Body": { "type": "string" }, "Day": { "type": "string" }, "IsPublished": { "type": "boolean" }, "Month": { "type": "string" }, "PublishedDateTime": { "_format": "date-time", "type": "string" }, "Subtitle": { "type": "string" }, "Tags": { "items": { "enum": [ "csharp", "nodejs", "typescript" ], "type": "string" }, "type": "array" }, "Title": { "type": "string" }, "Year": { "type": "string" } }, "required": [ "IsPublished", "Year", "Month", "Day", "PublishedDateTime", "Title", "Body", "Tags" ], "title": "Blog Post", "type": "object" }
o18670
{ "version": "0.2", "type": "object", "$schema": "http://json-schema.org/draft-07/schema#", "required": [ "fixed", "ui" ], "properties": { "name": { "type": "string", "description": "Unique display name (to be used instead of plugin ID)", "examples": [ "Swing" ] }, "fixed": { "type": "boolean", "description": "true if fixed set (e.g. UI Library)" }, "ui": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "key": { "type": "string", "description": "The customization key", "examples": [ "PasswordField.inactiveBackground" ] }, "description": { "type": "string", "description": "Description text for this key" }, "source": { "type": "string", "description": "FQN of the underlying component (if applicable)", "examples": [ "javax.swing.JPasswordField" ] }, "deprecated": { "type": "boolean", "description": "Whether this key is deprecated. Note replacement (if any) in description.", "default": false }, "since": { "type": "string", "description": "Version in which key was introduced.", "examples": [ "2019.2" ] } }, "required": [ "key" ] } } } }
o90958
{ "$schema": "http://json-schema.org/draft-06/schema#", "version": "1.0.0", "type": "object", "properties": { "book": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "id": { "type": "string" }, "contents": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "headers": { "type": "array", "items": { "type": "string" } }, "ordinal": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "chapter", "appendix", "part", "episode" ] }, "identifier": { "type": [ "integer", "string" ] } }, "additionalProperties": false, "required": [ "type", "identifier" ] } }, "additionalProperties": false, "required": [ "name" ] } } }, "additionalProperties": false, "required": [ "name", "id", "contents" ] } } }, "additionalProperties": false }
o44934
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "title": "Library", "description": "JSON schema for a library", "additionalProperties": false, "required": [ "$schema", "code", "pid", "name", "organisation" ], "properties": { "$schema": { "title": "Schema", "description": "Schema to validate organisation records against.", "type": "string", "minLength": 9, "default": "https://ils.rero.ch/schemas/libraries/library-v0.0.1.json" }, "pid": { "title": "Library ID", "type": "string" }, "organisation": { "title": "Organisation", "type": "object", "properties": { "$ref": { "title": "Organisation URI", "type": "string", "pattern": "^https://ils.rero.ch/api/organisations/.*?$" } } }, "code": { "title": "Code", "description": "Code of the library.", "type": "string" }, "name": { "title": "Name", "description": "Name of the library.", "type": "string", "minLength": 1 }, "address": { "title": "Address", "description": "Address of the library.", "type": "string", "minLength": 1 }, "email": { "title": "Email", "description": "Email of the library.", "type": "string", "format": "email", "pattern": "^.*?@.*.*$", "minLength": 3 }, "opening_hours": { "title": "Opening Hours", "description": "Weekly opening hours", "required": [ "day", "is_open", "times" ], "default": [ { "day": "monday", "is_open": false, "times": [ { "start_time": "08:00", "end_time": "17:00" } ] }, { "day": "tuesday", "is_open": false, "times": [ { "start_time": "08:00", "end_time": "17:00" } ] }, { "day": "wednesday", "is_open": false, "times": [ { "start_time": "08:00", "end_time": "17:00" } ] }, { "day": "thursday", "is_open": false, "times": [ { "start_time": "08:00", "end_time": "17:00" } ] }, { "day": "friday", "is_open": false, "times": [ { "start_time": "08:00", "end_time": "17:00" } ] }, { "day": "saturday", "is_open": false, "times": [ { "start_time": "08:00", "end_time": "17:00" } ] }, { "day": "sunday", "is_open": false, "times": [ { "start_time": "08:00", "end_time": "17:00" } ] } ], "type": "array", "items": { "type": "object", "properties": { "day": { "title": "Day", "description": "Weekday.", "type": "string" }, "is_open": { "title": "Is open", "type": "boolean", "default": "false" }, "times": { "type": "array", "required": [ "start_time", "end_time" ], "default": [ { "start_time": "08:00", "end_time": "17:00" } ], "items": { "type": "object", "properties": { "start_time": { "type": "string", "minLength": 5, "maxLength": 5, "default": "08:00" }, "end_time": { "type": "string", "minLength": 5, "maxLength": 5, "default": "17:00" } } } } } } }, "exception_dates": { "title": "Exception Hours", "description": "Exception opening hours", "type": "array", "default": [], "items": { "type": "object", "required": [ "title", "is_open", "start_date" ], "properties": { "title": { "type": "string" }, "is_open": { "type": "boolean" }, "start_date": { "type": "string", "format": "date-time" }, "end_date": { "type": "string", "format": "date-time" }, "times": { "type": "array", "items": { "type": "object", "start_time": { "type": "string", "format": "date-time" }, "end_time": { "type": "string", "format": "date-time" } } }, "repeat": { "type": "object", "properties": { "interval": { "type": "integer" }, "period": { "type": "string", "enum": [ "daily", "weekly", "monthly", "yearly" ] }, "data": { "type": "array", "items": { "type": "integer" } } } } } } } } }
o69970
{ "definitions": { "account": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "allow_tracking": { "default": true, "description": "whether to allow third party web activity tracking", "example": true, "readOnly": false, "type": [ "boolean" ] }, "beta": { "default": false, "description": "whether allowed to utilize beta Heroku features", "example": false, "readOnly": false, "type": [ "boolean" ] }, "created_at": { "description": "when account was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "email": { "description": "unique email address of account", "example": "[email protected]", "format": "email", "readOnly": false, "type": [ "string" ] }, "id": { "description": "unique identifier of an account", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/account/definitions/email" }, { "$ref": "#/definitions/account/definitions/id" } ] }, "last_login": { "description": "when account last authorized with Heroku", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "name": { "description": "full name of the account owner", "example": "Tina Edmonds", "readOnly": false, "type": [ "string", "null" ] }, "new_password": { "description": "the new password for the account when changing the password", "example": "newpassword", "readOnly": true, "type": [ "string" ] }, "password": { "description": "current password on the account", "example": "currentpassword", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when account was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "verified": { "default": false, "description": "whether account has been verified with billing information", "example": false, "readOnly": true, "type": [ "boolean" ] } }, "description": "An account represents an individual signed up to use the Heroku platform.", "id": "schemata/account", "links": [ { "description": "Info for account.", "href": "/account", "method": "GET", "rel": "self", "title": "Info" }, { "description": "Update account.", "href": "/account", "method": "PATCH", "rel": "update", "schema": { "properties": { "allow_tracking": { "$ref": "#/definitions/account/definitions/allow_tracking" }, "beta": { "$ref": "#/definitions/account/definitions/beta" }, "name": { "$ref": "#/definitions/account/definitions/name" }, "password": { "$ref": "#/definitions/account/definitions/password" } }, "required": [ "password" ], "type": [ "object" ] }, "title": "Update" }, { "description": "Change Email for account.", "href": "/account", "method": "PATCH", "rel": "update", "schema": { "properties": { "email": { "$ref": "#/definitions/account/definitions/email" }, "password": { "$ref": "#/definitions/account/definitions/password" } }, "required": [ "password", "email" ], "type": [ "object" ] }, "title": "Change Email" }, { "description": "Change Password for account.", "href": "/account", "method": "PATCH", "rel": "update", "schema": { "properties": { "new_password": { "$ref": "#/definitions/account/definitions/new_password" }, "password": { "$ref": "#/definitions/account/definitions/password" } }, "required": [ "new_password", "password" ], "type": [ "object" ] }, "title": "Change Password" } ], "properties": { "allow_tracking": { "$ref": "#/definitions/account/definitions/allow_tracking" }, "beta": { "$ref": "#/definitions/account/definitions/beta" }, "created_at": { "$ref": "#/definitions/account/definitions/created_at" }, "email": { "$ref": "#/definitions/account/definitions/email" }, "id": { "$ref": "#/definitions/account/definitions/id" }, "last_login": { "$ref": "#/definitions/account/definitions/last_login" }, "name": { "$ref": "#/definitions/account/definitions/name" }, "updated_at": { "$ref": "#/definitions/account/definitions/updated_at" }, "verified": { "$ref": "#/definitions/account/definitions/verified" } }, "stability": "production", "title": "Heroku Platform API - Account", "type": [ "object" ] }, "account-feature": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when account feature was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "description": { "description": "description of account feature", "example": "Causes account to example.", "readOnly": true, "type": [ "string" ] }, "doc_url": { "description": "documentation URL of account feature", "example": "http://devcenter.heroku.com/articles/example", "readOnly": true, "type": [ "string" ] }, "enabled": { "description": "whether or not account feature has been enabled", "example": true, "readOnly": false, "type": [ "boolean" ] }, "id": { "description": "unique identifier of account feature", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/account-feature/definitions/id" }, { "$ref": "#/definitions/account-feature/definitions/name" } ] }, "name": { "description": "unique name of account feature", "example": "name", "readOnly": true, "type": [ "string" ] }, "state": { "description": "state of account feature", "example": "public", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when account feature was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "An account feature represents a Heroku labs capability that can be enabled or disabled for an account on Heroku.", "id": "schemata/account-feature", "links": [ { "description": "Info for an existing account feature.", "href": "/account/features/{(%23%2Fdefinitions%2Faccount-feature%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing account features.", "href": "/account/features", "method": "GET", "rel": "instances", "title": "List" }, { "description": "Update an existing account feature.", "href": "/account/features/{(%23%2Fdefinitions%2Faccount-feature%2Fdefinitions%2Fidentity)}", "method": "PATCH", "rel": "update", "schema": { "properties": { "enabled": { "$ref": "#/definitions/account-feature/definitions/enabled" } }, "required": [ "enabled" ], "type": [ "object" ] }, "title": "Update" } ], "properties": { "created_at": { "$ref": "#/definitions/account-feature/definitions/created_at" }, "description": { "$ref": "#/definitions/account-feature/definitions/description" }, "doc_url": { "$ref": "#/definitions/account-feature/definitions/doc_url" }, "enabled": { "$ref": "#/definitions/account-feature/definitions/enabled" }, "id": { "$ref": "#/definitions/account-feature/definitions/id" }, "name": { "$ref": "#/definitions/account-feature/definitions/name" }, "state": { "$ref": "#/definitions/account-feature/definitions/state" }, "updated_at": { "$ref": "#/definitions/account-feature/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - Account Feature", "type": [ "object" ] }, "addon": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "config_vars": { "description": "config vars associated with this application", "example": [ "FOO", "BAZ" ], "items": { "type": [ "string" ] }, "readOnly": true, "type": [ "array" ] }, "created_at": { "description": "when add-on was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of add-on", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/addon/definitions/id" }, { "$ref": "#/definitions/addon/definitions/name" } ] }, "name": { "description": "name of the add-on unique within its app", "example": "heroku-postgresql-teal", "pattern": "^[a-z][a-z0-9-]+$", "readOnly": true, "type": [ "string" ] }, "provider_id": { "description": "id of this add-on with its provider", "example": "[email protected]", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when add-on was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "Add-ons represent add-ons that have been provisioned for an app.", "id": "schemata/addon", "links": [ { "description": "Create a new add-on.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/addons", "method": "POST", "rel": "create", "schema": { "properties": { "config": { "additionalProperties": false, "description": "custom add-on provisioning options", "example": { "db-version": "1.2.3" }, "patternProperties": { "^\\w+$": { "type": [ "string" ] } }, "type": [ "object" ] }, "plan": { "$ref": "#/definitions/plan/definitions/identity" } }, "required": [ "plan" ], "type": [ "object" ] }, "title": "Create" }, { "description": "Delete an existing add-on.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/addons/{(%23%2Fdefinitions%2Faddon%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for an existing add-on.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/addons/{(%23%2Fdefinitions%2Faddon%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing add-ons.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/addons", "method": "GET", "rel": "instances", "title": "List" }, { "description": "Change add-on plan. Some add-ons may not support changing plans. In that case, an error will be returned.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/addons/{(%23%2Fdefinitions%2Faddon%2Fdefinitions%2Fidentity)}", "method": "PATCH", "rel": "update", "schema": { "properties": { "plan": { "$ref": "#/definitions/plan/definitions/identity" } }, "required": [ "plan" ], "type": [ "object" ] }, "title": "Update" } ], "properties": { "config_vars": { "$ref": "#/definitions/addon/definitions/config_vars" }, "created_at": { "$ref": "#/definitions/addon/definitions/created_at" }, "id": { "$ref": "#/definitions/addon/definitions/id" }, "name": { "$ref": "#/definitions/addon/definitions/name" }, "plan": { "description": "identity of add-on plan", "properties": { "id": { "$ref": "#/definitions/plan/definitions/id" }, "name": { "$ref": "#/definitions/plan/definitions/name" } }, "type": [ "object" ] }, "provider_id": { "$ref": "#/definitions/addon/definitions/provider_id" }, "updated_at": { "$ref": "#/definitions/addon/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - Add-on", "type": [ "object" ] }, "addon-service": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when addon-service was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of this addon-service", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/addon-service/definitions/id" }, { "$ref": "#/definitions/addon-service/definitions/name" } ] }, "name": { "description": "unique name of this addon-service", "example": "heroku-postgresql", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when addon-service was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "Add-on services represent add-ons that may be provisioned for apps.", "id": "schemata/addon-service", "links": [ { "description": "Info for existing addon-service.", "href": "/addon-services/{(%23%2Fdefinitions%2Faddon-service%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing addon-services.", "href": "/addon-services", "method": "GET", "rel": "instances", "title": "List" } ], "properties": { "created_at": { "$ref": "#/definitions/addon-service/definitions/created_at" }, "id": { "$ref": "#/definitions/addon-service/definitions/id" }, "name": { "$ref": "#/definitions/addon-service/definitions/name" }, "updated_at": { "$ref": "#/definitions/addon-service/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - Add-on Service", "type": [ "object" ] }, "app": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "archived_at": { "description": "when app was archived", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "null", "string" ] }, "buildpack_provided_description": { "description": "description from buildpack of app", "example": "Ruby/Rack", "readOnly": true, "type": [ "null", "string" ] }, "created_at": { "description": "when app was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "git_url": { "description": "git repo URL of app", "example": "[email protected]/example.git", "format": "uri", "pattern": "^git@heroku\\.com:[a-z][a-z0-9-]{3,30}\\.git$", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of app", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/app/definitions/id" }, { "$ref": "#/definitions/app/definitions/name" } ] }, "maintenance": { "default": false, "description": "maintenance status of app", "example": false, "readOnly": false, "type": [ "boolean" ] }, "name": { "description": "unique name of app", "example": "example", "pattern": "^[a-z][a-z0-9-]{3,30}$", "readOnly": false, "type": [ "string" ] }, "released_at": { "default": null, "description": "when app was released", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "null", "string" ] }, "repo_size": { "default": null, "description": "git repo size in bytes of app", "example": 0, "readOnly": true, "type": [ "integer", "null" ] }, "slug_size": { "default": null, "description": "slug size in bytes of app", "example": 0, "readOnly": true, "type": [ "integer", "null" ] }, "updated_at": { "description": "when app was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "web_url": { "description": "web URL of app", "example": "http://example.herokuapp.com", "format": "uri", "pattern": "^http://[a-z][a-z0-9-]{3,30}\\.herokuapp\\.com/$", "readOnly": true, "type": [ "string" ] } }, "description": "An app represents the program that you would like to deploy and run on Heroku.", "id": "schemata/app", "links": [ { "description": "Create a new app.", "href": "/apps", "method": "POST", "rel": "create", "schema": { "properties": { "name": { "$ref": "#/definitions/app/definitions/name" }, "region": { "$ref": "#/definitions/region/definitions/identity" }, "stack": { "$ref": "#/definitions/stack/definitions/identity" } }, "type": [ "object" ] }, "title": "Create" }, { "description": "Delete an existing app.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for existing app.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing apps.", "href": "/apps", "method": "GET", "rel": "instances", "title": "List" }, { "description": "Update an existing app.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}", "method": "PATCH", "rel": "update", "schema": { "properties": { "maintenance": { "$ref": "#/definitions/app/definitions/maintenance" }, "name": { "$ref": "#/definitions/app/definitions/name" } }, "type": [ "object" ] }, "title": "Update" } ], "properties": { "archived_at": { "$ref": "#/definitions/app/definitions/archived_at" }, "buildpack_provided_description": { "$ref": "#/definitions/app/definitions/buildpack_provided_description" }, "created_at": { "$ref": "#/definitions/app/definitions/created_at" }, "git_url": { "$ref": "#/definitions/app/definitions/git_url" }, "id": { "$ref": "#/definitions/app/definitions/id" }, "maintenance": { "$ref": "#/definitions/app/definitions/maintenance" }, "name": { "$ref": "#/definitions/app/definitions/name" }, "owner": { "description": "identity of app owner", "properties": { "email": { "$ref": "#/definitions/account/definitions/email" }, "id": { "$ref": "#/definitions/account/definitions/id" } }, "type": [ "object" ] }, "region": { "description": "identity of app region", "properties": { "id": { "$ref": "#/definitions/region/definitions/id" }, "name": { "$ref": "#/definitions/region/definitions/name" } }, "type": [ "object" ] }, "released_at": { "$ref": "#/definitions/app/definitions/released_at" }, "repo_size": { "$ref": "#/definitions/app/definitions/repo_size" }, "slug_size": { "$ref": "#/definitions/app/definitions/slug_size" }, "stack": { "description": "identity of app stack", "properties": { "id": { "$ref": "#/definitions/stack/definitions/id" }, "name": { "$ref": "#/definitions/stack/definitions/name" } }, "type": [ "object" ] }, "updated_at": { "$ref": "#/definitions/app/definitions/updated_at" }, "web_url": { "$ref": "#/definitions/app/definitions/web_url" } }, "stability": "production", "title": "Heroku Platform API - App", "type": [ "object" ] }, "app-feature": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when app feature was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "description": { "description": "description of app feature", "example": "Causes app to example.", "readOnly": true, "type": [ "string" ] }, "doc_url": { "description": "documentation URL of app feature", "example": "http://devcenter.heroku.com/articles/example", "readOnly": true, "type": [ "string" ] }, "enabled": { "description": "whether or not app feature has been enabled", "example": true, "readOnly": false, "type": [ "boolean" ] }, "id": { "description": "unique identifier of app feature", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/app-feature/definitions/id" }, { "$ref": "#/definitions/app-feature/definitions/name" } ] }, "name": { "description": "unique name of app feature", "example": "name", "readOnly": true, "type": [ "string" ] }, "state": { "description": "state of app feature", "example": "public", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when app feature was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "An app feature represents a Heroku labs capability that can be enabled or disabled for an app on Heroku.", "id": "schemata/app-feature", "links": [ { "description": "Info for an existing app feature.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/features/{(%23%2Fdefinitions%2Fapp-feature%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing app features.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/features", "method": "GET", "rel": "instances", "title": "List" }, { "description": "Update an existing app feature.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/features/{(%23%2Fdefinitions%2Fapp-feature%2Fdefinitions%2Fidentity)}", "method": "PATCH", "rel": "update", "schema": { "properties": { "enabled": { "$ref": "#/definitions/app-feature/definitions/enabled" } }, "required": [ "enabled" ], "type": [ "object" ] }, "title": "Update" } ], "properties": { "created_at": { "$ref": "#/definitions/app-feature/definitions/created_at" }, "description": { "$ref": "#/definitions/app-feature/definitions/description" }, "doc_url": { "$ref": "#/definitions/app-feature/definitions/doc_url" }, "enabled": { "$ref": "#/definitions/app-feature/definitions/enabled" }, "id": { "$ref": "#/definitions/app-feature/definitions/id" }, "name": { "$ref": "#/definitions/app-feature/definitions/name" }, "state": { "$ref": "#/definitions/app-feature/definitions/state" }, "updated_at": { "$ref": "#/definitions/app-feature/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - App Feature", "type": [ "object" ] }, "app-transfer": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when app transfer was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of app transfer", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/app-transfer/definitions/id" }, { "$ref": "#/definitions/app/definitions/name" } ] }, "state": { "description": "the current state of an app transfer", "enum": [ "pending", "accepted", "declined" ], "example": "pending", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when app transfer was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "An app transfer represents a two party interaction for transferring ownership of an app.", "id": "schemata/app-transfer", "links": [ { "description": "Create a new app transfer.", "href": "/account/app-transfers", "method": "POST", "rel": "create", "schema": { "properties": { "app": { "$ref": "#/definitions/app/definitions/identity" }, "recipient": { "$ref": "#/definitions/account/definitions/identity" } }, "required": [ "app", "recipient" ], "type": [ "object" ] }, "title": "Create" }, { "description": "Delete an existing app transfer", "href": "/account/app-transfers/{(%23%2Fdefinitions%2Fapp-transfer%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for existing app transfer.", "href": "/account/app-transfers/{(%23%2Fdefinitions%2Fapp-transfer%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing apps transfers.", "href": "/account/app-transfers", "method": "GET", "rel": "instances", "title": "List" }, { "description": "Update an existing app transfer.", "href": "/account/app-transfers/{(%23%2Fdefinitions%2Fapp-transfer%2Fdefinitions%2Fidentity)}", "method": "PATCH", "rel": "update", "schema": { "properties": { "state": { "$ref": "#/definitions/app-transfer/definitions/state" } }, "required": [ "state" ], "type": [ "object" ] }, "title": "Update" } ], "properties": { "app": { "description": "app involved in the transfer", "properties": { "id": { "$ref": "#/definitions/app/definitions/id" }, "name": { "$ref": "#/definitions/app/definitions/name" } }, "type": [ "object" ] }, "created_at": { "$ref": "#/definitions/app-transfer/definitions/created_at" }, "id": { "$ref": "#/definitions/app-transfer/definitions/id" }, "owner": { "description": "identity of the owner of the transfer", "properties": { "email": { "$ref": "#/definitions/account/definitions/email" }, "id": { "$ref": "#/definitions/account/definitions/id" } }, "type": [ "object" ] }, "recipient": { "description": "identity of the recipient of the transfer", "properties": { "email": { "$ref": "#/definitions/account/definitions/email" }, "id": { "$ref": "#/definitions/account/definitions/id" } }, "type": [ "object" ] }, "state": { "$ref": "#/definitions/app-transfer/definitions/state" }, "updated_at": { "$ref": "#/definitions/app-transfer/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - App Transfer", "type": [ "object" ] }, "collaborator": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when collaborator was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "email": { "description": "invited email address of collaborator", "example": "[email protected]", "format": "email", "readOnly": false, "type": [ "string" ] }, "id": { "description": "unique identifier of collaborator", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/collaborator/definitions/email" }, { "$ref": "#/definitions/collaborator/definitions/id" } ] }, "silent": { "default": false, "description": "whether to suppress email invitation when creating collaborator", "example": false, "readOnly": false, "type": [ "boolean" ] }, "updated_at": { "description": "when collaborator was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "A collaborator represents an account that has been given access to an app on Heroku.", "id": "schemata/collaborator", "links": [ { "description": "Create a new collaborator.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/collaborators", "method": "POST", "rel": "create", "schema": { "properties": { "silent": { "$ref": "#/definitions/collaborator/definitions/silent" }, "user": { "$ref": "#/definitions/account/definitions/identity" } }, "required": [ "user" ], "type": [ "object" ] }, "title": "Create" }, { "description": "Delete an existing collaborator.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/collaborators/{(%23%2Fdefinitions%2Fcollaborator%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for existing collaborator.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/collaborators/{(%23%2Fdefinitions%2Fcollaborator%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing collaborators.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/collaborators", "method": "GET", "rel": "instances", "title": "List" } ], "properties": { "created_at": { "$ref": "#/definitions/collaborator/definitions/created_at" }, "id": { "$ref": "#/definitions/collaborator/definitions/id" }, "updated_at": { "$ref": "#/definitions/collaborator/definitions/updated_at" }, "user": { "description": "identity of collaborated account", "properties": { "email": { "$ref": "#/definitions/account/definitions/email" }, "id": { "$ref": "#/definitions/account/definitions/id" } }, "type": [ "object" ] } }, "stability": "production", "title": "Heroku Platform API - Collaborator", "type": [ "object" ] }, "config-var": { "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": {}, "description": "Config Vars allow you to manage the configuration information provided to an app on Heroku.", "example": { "BAZ": "qux", "FOO": "bar" }, "id": "schemata/config-var", "links": [ { "description": "Get config-vars for app.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/config-vars", "method": "GET", "rel": "self", "title": "Info" }, { "description": "Update config-vars for app. You can update existing config-vars by setting them again, and remove by setting it to `NULL`.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/config-vars", "method": "PATCH", "rel": "update", "schema": { "additionalProperties": false, "description": "hash of config changes – update values or delete by seting it to NULL", "example": { "BAZ": "grault", "FOO": null }, "patternProperties": { "^\\w+$": { "type": [ "string", "null" ] } }, "type": [ "object" ] }, "title": "Update" } ], "patternProperties": { "^\\w+$": { "type": [ "string" ] } }, "stability": "production", "title": "Heroku Platform API - Config Vars", "type": [ "object" ] }, "domain": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when domain was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "hostname": { "description": "full hostname", "example": "subdomain.example.com", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of this domain", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/domain/definitions/id" }, { "$ref": "#/definitions/domain/definitions/hostname" } ] }, "updated_at": { "description": "when domain was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "Domains define what web routes should be routed to an app on Heroku.", "id": "schemata/domain", "links": [ { "description": "Create a new domain.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/domains", "method": "POST", "rel": "create", "schema": { "properties": { "hostname": { "$ref": "#/definitions/domain/definitions/hostname" } }, "required": [ "hostname" ], "type": [ "object" ] }, "title": "Create" }, { "description": "Delete an existing domain", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/domains/{(%23%2Fdefinitions%2Fdomain%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for existing domain.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/domains/{(%23%2Fdefinitions%2Fdomain%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing domains.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/domains", "method": "GET", "rel": "instances", "title": "List" } ], "properties": { "created_at": { "$ref": "#/definitions/domain/definitions/created_at" }, "hostname": { "$ref": "#/definitions/domain/definitions/hostname" }, "id": { "$ref": "#/definitions/domain/definitions/id" }, "updated_at": { "$ref": "#/definitions/domain/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - Domain", "type": [ "object" ] }, "dyno": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "attach": { "description": "whether to stream output or not", "example": true, "readOnly": false, "type": [ "boolean" ] }, "attach_url": { "description": "a URL to stream output from for attached processes or null for non-attached processes", "example": "rendezvous://rendezvous.runtime.heroku.com:5000/{rendezvous-id}", "readOnly": true, "type": [ "string", "null" ] }, "command": { "description": "command used to start this process", "example": "bash", "readOnly": false, "type": [ "string" ] }, "created_at": { "description": "when dyno was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "env": { "additionalProperties": false, "description": "custom environment to add to the dyno config vars", "example": { "COLUMNS": "80", "LINES": "24" }, "patternProperties": { "^\\w+$": { "type": [ "string" ] } }, "readOnly": false, "type": [ "object" ] }, "id": { "description": "unique identifier of this dyno", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/dyno/definitions/id" }, { "$ref": "#/definitions/dyno/definitions/name" } ] }, "name": { "description": "the name of this process on this dyno", "example": "run.1", "readOnly": true, "type": [ "string" ] }, "size": { "description": "dyno size (default: \"1X\")", "example": "1X", "readOnly": false, "type": [ "string" ] }, "state": { "description": "current status of process (either: crashed, down, idle, starting, or up)", "example": "up", "readOnly": true, "type": [ "string" ] }, "type": { "description": "type of process", "example": "run", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when process last changed state", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "Dynos encapsulate running processes of an app on Heroku.", "id": "schemata/dyno", "links": [ { "description": "Create a new dyno.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/dynos", "method": "POST", "rel": "create", "schema": { "properties": { "attach": { "$ref": "#/definitions/dyno/definitions/attach" }, "command": { "$ref": "#/definitions/dyno/definitions/command" }, "env": { "$ref": "#/definitions/dyno/definitions/env" }, "size": { "$ref": "#/definitions/dyno/definitions/size" } }, "required": [ "command" ], "type": [ "object" ] }, "title": "Create" }, { "description": "Restart dyno.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/dynos/{(%23%2Fdefinitions%2Fdyno%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "empty", "title": "Restart" }, { "description": "Restart all dynos", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/dynos", "method": "DELETE", "rel": "empty", "title": "Restart all" }, { "description": "Info for existing dyno.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/dynos/{(%23%2Fdefinitions%2Fdyno%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing dynos.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/dynos", "method": "GET", "rel": "instances", "title": "List" } ], "properties": { "attach_url": { "$ref": "#/definitions/dyno/definitions/attach_url" }, "command": { "$ref": "#/definitions/dyno/definitions/command" }, "created_at": { "$ref": "#/definitions/dyno/definitions/created_at" }, "id": { "$ref": "#/definitions/dyno/definitions/id" }, "name": { "$ref": "#/definitions/dyno/definitions/name" }, "release": { "description": "app release of the dyno", "properties": { "id": { "$ref": "#/definitions/release/definitions/id" }, "version": { "$ref": "#/definitions/release/definitions/version" } }, "type": [ "object" ] }, "size": { "$ref": "#/definitions/dyno/definitions/size" }, "state": { "$ref": "#/definitions/dyno/definitions/state" }, "type": { "$ref": "#/definitions/dyno/definitions/type" }, "updated_at": { "$ref": "#/definitions/dyno/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - Dyno", "type": [ "object" ] }, "formation": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "command": { "description": "command to use to launch this process", "example": "bundle exec rails server -p $PORT", "readOnly": false, "type": [ "string" ] }, "created_at": { "description": "when process type was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of this process type", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/formation/definitions/id" }, { "$ref": "#/definitions/formation/definitions/type" } ] }, "quantity": { "description": "number of processes to maintain", "example": 1, "readOnly": false, "type": [ "integer" ] }, "size": { "description": "dyno size (default: \"1X\")", "example": "1X", "readOnly": false, "type": [ "string" ] }, "type": { "description": "type of process to maintain", "example": "web", "readOnly": true, "type": [ "string" ] }, "update": { "additionalProperties": false, "description": "Properties to update a process type", "properties": { "process": { "$ref": "#/definitions/formation/definitions/identity" }, "quantity": { "$ref": "#/definitions/formation/definitions/quantity" }, "size": { "$ref": "#/definitions/formation/definitions/size" } }, "readOnly": false, "required": [ "process" ], "type": [ "object" ] }, "updated_at": { "description": "when dyno type was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "The formation of processes that should be maintained for an app. Update the formation to scale processes or change dyno sizes. Available process type names and commands are defined by the `process_types` attribute for the [slug](#slug) currently released on an app.", "id": "schemata/formation", "links": [ { "description": "Info for a process type", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/formation/{(%23%2Fdefinitions%2Fformation%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List process type formation", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/formation", "method": "GET", "rel": "instances", "title": "List" }, { "description": "Batch update process types", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/formation", "method": "PATCH", "rel": "update", "schema": { "properties": { "updates": { "description": "Array with formation updates. Each element must have \"process\", the id or name of the process type to be updated, and can optionally update its \"quantity\" or \"size\".", "example": { "updates": [ { "process": "web", "quantity": 1, "size": "2X" } ] }, "items": { "$ref": "#/definitions/formation/definitions/update" }, "type": [ "array" ] } }, "required": [ "updates" ], "type": [ "object" ] }, "title": "Batch update" }, { "description": "Update process type", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/formation/{(%23%2Fdefinitions%2Fformation%2Fdefinitions%2Fidentity)}", "method": "PATCH", "rel": "update", "schema": { "properties": { "quantity": { "$ref": "#/definitions/formation/definitions/quantity" }, "size": { "$ref": "#/definitions/formation/definitions/size" } }, "type": [ "object" ] }, "title": "Update", "type": [ "object" ] } ], "properties": { "command": { "$ref": "#/definitions/formation/definitions/command" }, "created_at": { "$ref": "#/definitions/formation/definitions/created_at" }, "id": { "$ref": "#/definitions/formation/definitions/id" }, "quantity": { "$ref": "#/definitions/formation/definitions/quantity" }, "size": { "$ref": "#/definitions/formation/definitions/size" }, "type": { "$ref": "#/definitions/formation/definitions/type" }, "updated_at": { "$ref": "#/definitions/formation/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - Formation", "type": [ "object" ] }, "key": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "comment": { "description": "comment on the key", "example": "username@host", "readOnly": true, "type": [ "string" ] }, "created_at": { "description": "when key was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "email": { "deprecated": true, "description": "deprecated. Please refer to 'comment' instead", "example": "username@host", "readOnly": true, "type": [ "string" ] }, "fingerprint": { "description": "a unique identifying string based on contents", "example": "17:63:a4:ba:24:d3:7f:af:17:c8:94:82:7e:80:56:bf", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of this key", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/key/definitions/id" }, { "$ref": "#/definitions/key/definitions/fingerprint" } ] }, "public_key": { "description": "full public_key as uploaded", "example": "ssh-rsa AAAAB3NzaC1ycVc/../839Uv [email protected]", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when key was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "Keys represent public SSH keys associated with an account and are used to authorize accounts as they are performing git operations.", "id": "schemata/key", "links": [ { "description": "Create a new key.", "href": "/account/keys", "method": "POST", "rel": "create", "schema": { "properties": { "public_key": { "$ref": "#/definitions/key/definitions/public_key" } }, "required": [ "public_key" ], "type": [ "object" ] }, "title": "Create" }, { "description": "Delete an existing key", "href": "/account/keys/{(%23%2Fdefinitions%2Fkey%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for existing key.", "href": "/account/keys/{(%23%2Fdefinitions%2Fkey%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing keys.", "href": "/account/keys", "method": "GET", "rel": "instances", "title": "List" } ], "properties": { "comment": { "$ref": "#/definitions/key/definitions/comment" }, "created_at": { "$ref": "#/definitions/key/definitions/created_at" }, "email": { "$ref": "#/definitions/key/definitions/email" }, "fingerprint": { "$ref": "#/definitions/key/definitions/fingerprint" }, "id": { "$ref": "#/definitions/key/definitions/id" }, "public_key": { "$ref": "#/definitions/key/definitions/public_key" }, "updated_at": { "$ref": "#/definitions/key/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - Key", "type": [ "object" ] }, "log-drain": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "addon": { "description": "addon that created the drain", "example": "example", "properties": { "id": { "$ref": "#/definitions/addon/definitions/id" } }, "readOnly": true, "type": [ "object", "null" ] }, "created_at": { "description": "when log drain was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of this log drain", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/log-drain/definitions/id" }, { "$ref": "#/definitions/log-drain/definitions/url" } ] }, "token": { "description": "token associated with the log drain", "example": "d.01234567-89ab-cdef-0123-456789abcdef", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when log drain was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "url": { "description": "url associated with the log drain", "example": "https://example.com/drain", "readOnly": true, "type": [ "string" ] } }, "description": "[Log drains](https://devcenter.heroku.com/articles/logging#syslog-drains) provide a way to forward your Heroku logs to an external syslog server for long-term archiving. This external service must be configured to receive syslog packets from Heroku, whereupon its URL can be added to an app using this API. Some addons will add a log drain when they are provisioned to an app. These drains can only be removed by removing the add-on.", "id": "schemata/log-drain", "links": [ { "description": "Create a new log drain.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/log-drains", "method": "POST", "rel": "create", "schema": { "properties": { "url": { "$ref": "#/definitions/log-drain/definitions/url" } }, "required": [ "url" ], "type": [ "object" ] }, "title": "Create" }, { "description": "Delete an existing log drain. Log drains added by add-ons can only be removed by removing the add-on.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/log-drains/{(%23%2Fdefinitions%2Flog-drain%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for existing log drain.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/log-drains/{(%23%2Fdefinitions%2Flog-drain%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing log drains.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/log-drains", "method": "GET", "rel": "instances", "title": "List" } ], "properties": { "addon": { "$ref": "#/definitions/log-drain/definitions/addon" }, "created_at": { "$ref": "#/definitions/log-drain/definitions/created_at" }, "id": { "$ref": "#/definitions/log-drain/definitions/id" }, "token": { "$ref": "#/definitions/log-drain/definitions/token" }, "updated_at": { "$ref": "#/definitions/log-drain/definitions/updated_at" }, "url": { "$ref": "#/definitions/log-drain/definitions/url" } }, "stability": "production", "title": "Heroku Platform API - Log Drain", "type": [ "object" ] }, "log-session": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when log connection was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "dyno": { "description": "dyno to limit results to", "example": "web.1", "readOnly": false, "type": [ "string" ] }, "id": { "description": "unique identifier of this log session", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/log-session/definitions/id" } ] }, "lines": { "description": "number of log lines to stream at once", "example": 10, "readOnly": false, "type": [ "integer" ] }, "logplex_url": { "description": "URL for log streaming session", "example": "https://logplex.heroku.com/sessions/01234567-89ab-cdef-0123-456789abcdef?srv=1325419200", "readOnly": true, "type": [ "string" ] }, "source": { "description": "log source to limit results to", "example": "app", "readOnly": false, "type": [ "string" ] }, "tail": { "description": "whether to stream ongoing logs", "example": true, "readOnly": false, "type": [ "boolean" ] }, "updated_at": { "description": "when log session was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "A log session is a reference to the http based log stream for an app.", "id": "schemata/log-session", "links": [ { "description": "Create a new log session.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/log-sessions", "method": "POST", "rel": "create", "schema": { "properties": { "dyno": { "$ref": "#/definitions/log-session/definitions/dyno" }, "lines": { "$ref": "#/definitions/log-session/definitions/lines" }, "source": { "$ref": "#/definitions/log-session/definitions/source" }, "tail": { "$ref": "#/definitions/log-session/definitions/tail" } }, "type": [ "object" ] }, "title": "Create" } ], "properties": { "created_at": { "$ref": "#/definitions/log-session/definitions/created_at" }, "id": { "$ref": "#/definitions/log-session/definitions/id" }, "logplex_url": { "$ref": "#/definitions/log-session/definitions/logplex_url" }, "updated_at": { "$ref": "#/definitions/log-session/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - Log Session", "type": [ "object" ] }, "oauth-authorization": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when OAuth authorization was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "description": { "description": "human-friendly description of this OAuth authorization", "example": "sample authorization", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of OAuth authorization", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/oauth-authorization/definitions/id" } ] }, "scope": { "description": "The scope of access OAuth authorization allows", "example": [ "global" ], "items": { "type": [ "string" ] }, "readOnly": true, "type": [ "array" ] }, "updated_at": { "description": "when OAuth authorization was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "OAuth authorizations represent clients that a Heroku user has authorized to automate, customize or extend their usage of the platform. For more information please refer to the [Heroku OAuth documentation](https://devcenter.heroku.com/articles/oauth)", "id": "schemata/oauth-authorization", "links": [ { "description": "Create a new OAuth authorization.", "href": "/oauth/authorizations", "method": "POST", "rel": "create", "schema": { "properties": { "client": { "$ref": "#/definitions/oauth-client/definitions/identity" }, "description": { "$ref": "#/definitions/oauth-authorization/definitions/description" }, "expires_in": { "$ref": "#/definitions/oauth-token/definitions/expires_in" }, "scope": { "$ref": "#/definitions/oauth-authorization/definitions/scope" } }, "required": [ "scope" ], "type": [ "object" ] }, "title": "Create" }, { "description": "Delete OAuth authorization.", "href": "/oauth/authorizations/{(%23%2Fdefinitions%2Foauth-authorization%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for an OAuth authorization.", "href": "/oauth/authorizations/{(%23%2Fdefinitions%2Foauth-authorization%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List OAuth authorizations.", "href": "/oauth/authorizations", "method": "GET", "rel": "instances", "title": "List" } ], "properties": { "access_token": { "description": "access token for this authorization", "properties": { "expires_in": { "$ref": "#/definitions/oauth-token/definitions/expires_in" }, "id": { "$ref": "#/definitions/oauth-token/definitions/id" }, "token": { "$ref": "#/definitions/oauth-token/definitions/token" } }, "type": [ "null", "object" ] }, "client": { "description": "identifier of the client that obtained this authorization, if any", "properties": { "id": { "$ref": "#/definitions/oauth-client/definitions/id" }, "name": { "$ref": "#/definitions/oauth-client/definitions/name" }, "redirect_uri": { "$ref": "#/definitions/oauth-client/definitions/redirect_uri" } }, "type": [ "null", "object" ] }, "created_at": { "$ref": "#/definitions/oauth-authorization/definitions/created_at" }, "grant": { "description": "this authorization's grant", "properties": { "code": { "$ref": "#/definitions/oauth-grant/definitions/code" }, "expires_in": { "$ref": "#/definitions/oauth-grant/definitions/expires_in" }, "id": { "$ref": "#/definitions/oauth-grant/definitions/id" } }, "type": [ "null", "object" ] }, "id": { "$ref": "#/definitions/oauth-authorization/definitions/id" }, "refresh_token": { "description": "refresh token for this authorization", "properties": { "expires_in": { "$ref": "#/definitions/oauth-token/definitions/expires_in" }, "id": { "$ref": "#/definitions/oauth-token/definitions/id" }, "token": { "$ref": "#/definitions/oauth-token/definitions/token" } }, "type": [ "null", "object" ] }, "scope": { "$ref": "#/definitions/oauth-authorization/definitions/scope" }, "updated_at": { "$ref": "#/definitions/oauth-authorization/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - OAuth Authorization", "type": [ "object" ] }, "oauth-client": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when OAuth client was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of this OAuth client", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/oauth-client/definitions/id" } ] }, "ignores_delinquent": { "description": "whether the client is still operable given a delinquent account", "example": false, "readOnly": true, "type": [ "boolean", "null" ] }, "name": { "description": "OAuth client name", "example": "example", "readOnly": true, "type": [ "string" ] }, "redirect_uri": { "description": "endpoint for redirection after authorization with OAuth client", "example": "https://example.com/auth/heroku/callback", "readOnly": true, "type": [ "string" ] }, "secret": { "description": "secret used to obtain OAuth authorizations under this client", "example": "01234567-89ab-cdef-0123-456789abcdef", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when OAuth client was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "OAuth clients are applications that Heroku users can authorize to automate, customize or extend their usage of the platform. For more information please refer to the [Heroku OAuth documentation](https://devcenter.heroku.com/articles/oauth).", "id": "schemata/oauth-client", "links": [ { "description": "Create a new OAuth client.", "href": "/oauth/clients", "method": "POST", "rel": "create", "schema": { "properties": { "name": { "$ref": "#/definitions/oauth-client/definitions/name" }, "redirect_uri": { "$ref": "#/definitions/oauth-client/definitions/redirect_uri" } }, "required": [ "name", "redirect_uri" ], "type": [ "object" ] }, "title": "Create" }, { "description": "Delete OAuth client.", "href": "/oauth/clients/{(%23%2Fdefinitions%2Foauth-client%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for an OAuth client", "href": "/oauth/clients/{(%23%2Fdefinitions%2Foauth-client%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List OAuth clients", "href": "/oauth/clients", "method": "GET", "rel": "instances", "title": "List" }, { "description": "Update OAuth client", "href": "/oauth/clients/{(%23%2Fdefinitions%2Foauth-client%2Fdefinitions%2Fidentity)}", "method": "PATCH", "rel": "update", "schema": { "properties": { "name": { "$ref": "#/definitions/oauth-client/definitions/name" }, "redirect_uri": { "$ref": "#/definitions/oauth-client/definitions/redirect_uri" } }, "type": [ "object" ] }, "title": "Update" } ], "properties": { "created_at": { "$ref": "#/definitions/oauth-client/definitions/created_at" }, "id": { "$ref": "#/definitions/oauth-client/definitions/id" }, "ignores_delinquent": { "$ref": "#/definitions/oauth-client/definitions/ignores_delinquent" }, "name": { "$ref": "#/definitions/oauth-client/definitions/name" }, "redirect_uri": { "$ref": "#/definitions/oauth-client/definitions/redirect_uri" }, "secret": { "$ref": "#/definitions/oauth-client/definitions/secret" }, "updated_at": { "$ref": "#/definitions/oauth-client/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - OAuth Client", "type": [ "object" ] }, "oauth-grant": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "code": { "description": "grant code received from OAuth web application authorization", "example": "01234567-89ab-cdef-0123-456789abcdef", "readOnly": true, "type": [ "string" ] }, "expires_in": { "description": "seconds until OAuth grant expires", "example": 2592000, "readOnly": true, "type": [ "integer" ] }, "id": { "description": "unique identifier of OAuth grant", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/oauth-grant/definitions/id" } ] }, "type": { "description": "type of grant requested, one of `authorization_code` or `refresh_token`", "example": "authorization_code", "readOnly": false, "type": [ "string" ] } }, "description": "OAuth grants are used to obtain authorizations on behalf of a user. For more information please refer to the [Heroku OAuth documentation](https://devcenter.heroku.com/articles/oauth)", "id": "schemata/oauth-grant", "links": [], "properties": {}, "stability": "production", "title": "Heroku Platform API - OAuth Grant", "type": [ "object" ] }, "oauth-token": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when OAuth token was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "expires_in": { "description": "seconds until OAuth token expires; may be `null` for tokens with indefinite lifetime", "example": 2592000, "readOnly": true, "type": [ "null", "integer" ] }, "id": { "description": "unique identifier of OAuth token", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/oauth-token/definitions/id" } ] }, "token": { "description": "contents of the token to be used for authorization", "example": "01234567-89ab-cdef-0123-456789abcdef", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when OAuth token was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "OAuth tokens provide access for authorized clients to act on behalf of a Heroku user to automate, customize or extend their usage of the platform. For more information please refer to the [Heroku OAuth documentation](https://devcenter.heroku.com/articles/oauth)", "id": "schemata/oauth-token", "links": [ { "description": "Create a new OAuth token.", "href": "/oauth/tokens", "method": "POST", "rel": "create", "schema": { "properties": { "client": { "properties": { "secret": { "$ref": "#/definitions/oauth-client/definitions/secret" } }, "type": [ "object" ] }, "grant": { "properties": { "code": { "$ref": "#/definitions/oauth-grant/definitions/code" }, "type": { "$ref": "#/definitions/oauth-grant/definitions/type" } }, "type": [ "object" ] }, "refresh_token": { "properties": { "token": { "$ref": "#/definitions/oauth-token/definitions/token" } }, "type": [ "object" ] } }, "required": [ "grant", "client", "refresh_token" ], "type": [ "object" ] }, "title": "Create" } ], "properties": { "access_token": { "description": "current access token", "properties": { "expires_in": { "$ref": "#/definitions/oauth-token/definitions/expires_in" }, "id": { "$ref": "#/definitions/oauth-token/definitions/id" }, "token": { "$ref": "#/definitions/oauth-token/definitions/token" } }, "type": [ "object" ] }, "authorization": { "description": "authorization for this set of tokens", "properties": { "id": { "$ref": "#/definitions/oauth-authorization/definitions/id" } }, "type": [ "object" ] }, "client": { "description": "OAuth client secret used to obtain token", "properties": { "secret": { "$ref": "#/definitions/oauth-client/definitions/secret" } }, "type": [ "null", "object" ] }, "created_at": { "$ref": "#/definitions/oauth-token/definitions/created_at" }, "grant": { "description": "grant used on the underlying authorization", "properties": { "code": { "$ref": "#/definitions/oauth-grant/definitions/code" }, "type": { "$ref": "#/definitions/oauth-grant/definitions/type" } }, "type": [ "object" ] }, "id": { "$ref": "#/definitions/oauth-token/definitions/id" }, "refresh_token": { "description": "refresh token for this authorization", "properties": { "expires_in": { "$ref": "#/definitions/oauth-token/definitions/expires_in" }, "id": { "$ref": "#/definitions/oauth-token/definitions/id" }, "token": { "$ref": "#/definitions/oauth-token/definitions/token" } }, "type": [ "object" ] }, "session": { "description": "OAuth session using this token", "properties": { "id": { "$ref": "#/definitions/oauth-token/definitions/id" } }, "type": [ "object" ] }, "updated_at": { "$ref": "#/definitions/oauth-token/definitions/updated_at" }, "user": { "description": "Reference to the user associated with this token", "properties": { "id": { "$ref": "#/definitions/account/definitions/id" } }, "type": [ "object" ] } }, "stability": "production", "title": "Heroku Platform API - OAuth Token", "type": [ "object" ] }, "organization": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "credit_card_collections": { "description": "whether charges incurred by the org are paid by credit card.", "example": "true", "readOnly": true, "type": [ "boolean" ] }, "default": { "description": "whether to use this organization when none is specified", "example": "true", "readOnly": false, "type": [ "boolean" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/organization/definitions/name" } ] }, "name": { "description": "unique name of organization", "example": "example", "readOnly": true, "type": [ "string" ] }, "provisioned_licenses": { "description": "whether the org is provisioned licenses by salesforce.", "example": "true", "readOnly": true, "type": [ "boolean" ] }, "role": { "description": "role in the organization", "enum": [ "admin", "member", "collaborator" ], "example": "admin", "readOnly": true, "type": [ "string" ] } }, "description": "Organizations allow you to manage access to a shared group of applications across your development team.", "id": "schemata/organization", "links": [ { "description": "List organizations in which you are a member.", "href": "/organizations", "method": "GET", "rel": "instances", "title": "List" }, { "description": "Set or Unset the organization as your default organization.", "href": "/organizations/{(%23%2Fdefinitions%2Forganization%2Fdefinitions%2Fidentity)}", "method": "PATCH", "rel": "update", "schema": { "properties": { "default": { "$ref": "#/definitions/organization/definitions/default" } }, "type": [ "object" ] }, "title": "Update" } ], "properties": { "credit_card_collections": { "$ref": "#/definitions/organization/definitions/credit_card_collections" }, "default": { "$ref": "#/definitions/organization/definitions/default" }, "name": { "$ref": "#/definitions/organization/definitions/name" }, "provisioned_licenses": { "$ref": "#/definitions/organization/definitions/provisioned_licenses" }, "role": { "$ref": "#/definitions/organization/definitions/role" } }, "stability": "prototype", "title": "Heroku Platform API - Organization", "type": [ "object" ] }, "organization-app": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "joined": { "default": false, "description": "is the current member a collaborator on this app.", "example": false, "type": [ "boolean" ] }, "locked": { "default": false, "description": "are other organization members forbidden from joining this app.", "example": false, "type": [ "boolean" ] }, "personal": { "default": false, "description": "force creation of the app in the user account even if a default org is set.", "example": false, "type": [ "boolean" ] } }, "description": "An organization app encapsulates the organization specific functionality of Heroku apps.", "id": "schemata/organization-app", "links": [ { "description": "Create a new app in the specified organization, in the default organization if unspecified, or in personal account, if default organization is not set.", "href": "/organizations/apps", "method": "POST", "rel": "create", "schema": { "properties": { "locked": { "$ref": "#/definitions/organization-app/definitions/locked" }, "name": { "$ref": "#/definitions/app/definitions/name" }, "organization": { "$ref": "#/definitions/organization/definitions/name" }, "personal": { "$ref": "#/definitions/organization-app/definitions/personal" }, "region": { "$ref": "#/definitions/region/definitions/name" }, "stack": { "$ref": "#/definitions/stack/definitions/name" } }, "type": [ "object" ] }, "title": "Create" }, { "description": "List apps in the default organization, or in personal account, if default organization is not set.", "href": "/organizations/apps", "method": "GET", "rel": "instances", "title": "List" }, { "description": "List organization apps.", "href": "/organizations/{(%23%2Fdefinitions%2Forganization%2Fdefinitions%2Fidentity)}/apps", "method": "GET", "rel": "instances", "title": "List For Organization" }, { "description": "Info for an organization app.", "href": "/organizations/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "Lock or unlock an organization app.", "href": "/organizations/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}", "method": "PATCH", "rel": "update", "schema": { "properties": { "locked": { "$ref": "#/definitions/organization-app/definitions/locked" } }, "required": [ "locked" ], "type": [ "object" ] }, "title": "Update Locked" }, { "description": "Transfer an existing organization app to another Heroku account.", "href": "/organizations/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}", "method": "PATCH", "rel": "update", "schema": { "properties": { "owner": { "$ref": "#/definitions/account/definitions/identity" } }, "required": [ "owner" ], "type": [ "object" ] }, "title": "Transfer to Account" }, { "description": "Transfer an existing organization app to another organization.", "href": "/organizations/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}", "method": "PATCH", "rel": "update", "schema": { "properties": { "owner": { "$ref": "#/definitions/organization/definitions/name" } }, "required": [ "owner" ], "type": [ "object" ] }, "title": "Transfer to Organization" } ], "properties": { "archived_at": { "$ref": "#/definitions/app/definitions/archived_at" }, "buildpack_provided_description": { "$ref": "#/definitions/app/definitions/buildpack_provided_description" }, "created_at": { "$ref": "#/definitions/app/definitions/created_at" }, "git_url": { "$ref": "#/definitions/app/definitions/git_url" }, "id": { "$ref": "#/definitions/app/definitions/id" }, "joined": { "$ref": "#/definitions/organization-app/definitions/joined" }, "locked": { "$ref": "#/definitions/organization-app/definitions/locked" }, "maintenance": { "$ref": "#/definitions/app/definitions/maintenance" }, "name": { "$ref": "#/definitions/app/definitions/name" }, "organization": { "description": "organization that owns this app", "properties": { "name": { "$ref": "#/definitions/organization/definitions/name" } }, "type": [ "null", "object" ] }, "owner": { "description": "identity of app owner", "properties": { "email": { "$ref": "#/definitions/account/definitions/email" }, "id": { "$ref": "#/definitions/account/definitions/id" } }, "type": [ "null", "object" ] }, "region": { "description": "identity of app region", "properties": { "id": { "$ref": "#/definitions/region/definitions/id" }, "name": { "$ref": "#/definitions/region/definitions/name" } }, "type": [ "object" ] }, "released_at": { "$ref": "#/definitions/app/definitions/released_at" }, "repo_size": { "$ref": "#/definitions/app/definitions/repo_size" }, "slug_size": { "$ref": "#/definitions/app/definitions/slug_size" }, "stack": { "description": "identity of app stack", "properties": { "id": { "$ref": "#/definitions/stack/definitions/id" }, "name": { "$ref": "#/definitions/stack/definitions/name" } }, "type": [ "object" ] }, "updated_at": { "$ref": "#/definitions/app/definitions/updated_at" }, "web_url": { "$ref": "#/definitions/app/definitions/web_url" } }, "stability": "prototype", "title": "Heroku Platform API - Organization App", "type": [ "object" ] }, "organization-app-collaborator": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": {}, "description": "An organization collaborator represents an account that has been given access to an organization app on Heroku.", "id": "schemata/organization-app-collaborator", "links": [ { "description": "Create a new collaborator on an organization app. Use this endpoint instead of the `/apps/{app_id_or_name}/collaborator` endpoint when you want the collaborator to be granted [privileges] (https://devcenter.heroku.com/articles/org-users-access#roles) according to their role in the organization.", "href": "/organizations/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/collaborators", "method": "POST", "rel": "create", "schema": { "properties": { "silent": { "$ref": "#/definitions/collaborator/definitions/silent" }, "user": { "$ref": "#/definitions/account/definitions/identity" } }, "required": [ "user" ], "type": [ "object" ] }, "title": "Create" }, { "description": "Delete an existing collaborator from an organization app.", "href": "/organizations/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/collaborators/{(%23%2Fdefinitions%2Fcollaborator%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for a collaborator on an organization app.", "href": "/organizations/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/collaborators/{(%23%2Fdefinitions%2Fcollaborator%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List collaborators on an organization app.", "href": "/organizations/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/collaborators", "method": "GET", "rel": "instances", "title": "List" } ], "properties": { "created_at": { "$ref": "#/definitions/collaborator/definitions/created_at" }, "id": { "$ref": "#/definitions/collaborator/definitions/id" }, "role": { "$ref": "#/definitions/organization/definitions/role" }, "updated_at": { "$ref": "#/definitions/collaborator/definitions/updated_at" }, "user": { "description": "identity of collaborated account", "properties": { "email": { "$ref": "#/definitions/account/definitions/email" }, "id": { "$ref": "#/definitions/account/definitions/id" } }, "type": [ "object" ] } }, "stability": "prototype", "title": "Heroku Platform API - Organization App Collaborator", "type": [ "object" ] }, "organization-member": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when organization-member was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "email": { "description": "email address of the organization member", "example": "[email protected]", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/organization-member/definitions/email" } ] }, "updated_at": { "description": "when organization-member was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "An organization member is an individual with access to an organization.", "id": "schemata/organization-member", "links": [ { "description": "Create a new organization member, or update their role.", "href": "/organizations/{(%23%2Fdefinitions%2Forganization%2Fdefinitions%2Fidentity)}/members", "method": "PUT", "rel": "create", "schema": { "properties": { "email": { "$ref": "#/definitions/organization-member/definitions/email" }, "role": { "$ref": "#/definitions/organization/definitions/role" } }, "required": [ "email", "role" ], "type": [ "object" ] }, "title": "Create or Update" }, { "description": "Remove a member from the organization.", "href": "/organizations/{(%23%2Fdefinitions%2Forganization%2Fdefinitions%2Fidentity)}/members/{(%23%2Fdefinitions%2Forganization-member%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "List members of the organization.", "href": "/organizations/{(%23%2Fdefinitions%2Forganization%2Fdefinitions%2Fidentity)}/members", "method": "GET", "rel": "instances", "title": "List" } ], "properties": { "created_at": { "$ref": "#/definitions/organization-member/definitions/created_at" }, "email": { "$ref": "#/definitions/organization-member/definitions/email" }, "role": { "$ref": "#/definitions/organization/definitions/role" }, "updated_at": { "$ref": "#/definitions/organization-member/definitions/updated_at" } }, "stability": "prototype", "title": "Heroku Platform API - Organization Member", "type": [ "object" ] }, "plan": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "cents": { "description": "price in cents per unit of plan", "example": 0, "readOnly": true, "type": [ "integer" ] }, "created_at": { "description": "when plan was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "default": { "description": "whether this plan is the default for its addon service", "example": false, "readOnly": true, "type": [ "boolean" ] }, "description": { "description": "description of plan", "example": "Heroku Postgres Dev", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of this plan", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/plan/definitions/id" }, { "$ref": "#/definitions/plan/definitions/name" } ] }, "name": { "description": "unique name of this plan", "example": "heroku-postgresql:dev", "readOnly": true, "type": [ "string" ] }, "state": { "description": "release status for plan", "example": "public", "readOnly": true, "type": [ "string" ] }, "unit": { "description": "unit of price for plan", "example": "month", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when plan was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "Plans represent different configurations of add-ons that may be added to apps.", "id": "schemata/plan", "links": [ { "description": "Info for existing plan.", "href": "/addon-services/{(%23%2Fdefinitions%2Faddon-service%2Fdefinitions%2Fidentity)}/plans/{(%23%2Fdefinitions%2Fplan%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing plans.", "href": "/addon-services/{(%23%2Fdefinitions%2Faddon-service%2Fdefinitions%2Fidentity)}/plans", "method": "GET", "rel": "instances", "title": "List" } ], "properties": { "created_at": { "$ref": "#/definitions/plan/definitions/created_at" }, "default": { "$ref": "#/definitions/plan/definitions/default" }, "description": { "$ref": "#/definitions/plan/definitions/description" }, "id": { "$ref": "#/definitions/plan/definitions/id" }, "name": { "$ref": "#/definitions/plan/definitions/name" }, "price": { "description": "price", "properties": { "cents": { "$ref": "#/definitions/plan/definitions/cents" }, "unit": { "$ref": "#/definitions/plan/definitions/unit" } }, "type": [ "object" ] }, "state": { "$ref": "#/definitions/plan/definitions/state" }, "updated_at": { "$ref": "#/definitions/plan/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - Plan", "type": [ "object" ] }, "rate-limit": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "remaining": { "description": "allowed requests remaining in current interval", "example": 2399, "readOnly": true, "type": [ "integer" ] } }, "description": "Rate Limit represents the number of request tokens each account holds. Requests to this endpoint do not count towards the rate limit.", "id": "schemata/rate-limit", "links": [ { "description": "Info for rate limits.", "href": "/account/rate-limits", "method": "GET", "rel": "self", "title": "Info" } ], "properties": { "remaining": { "$ref": "#/definitions/rate-limit/definitions/remaining" } }, "stability": "production", "title": "Heroku Platform API - Rate Limit", "type": [ "object" ] }, "region": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when region was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "description": { "description": "description of region", "example": "United States", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of region", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/region/definitions/id" }, { "$ref": "#/definitions/region/definitions/name" } ] }, "name": { "description": "unique name of region", "example": "us", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when region was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "A region represents a geographic location in which your application may run.", "id": "schemata/region", "links": [ { "description": "Info for existing region.", "href": "/regions/{(%23%2Fdefinitions%2Fregion%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing regions.", "href": "/regions", "method": "GET", "rel": "instances", "title": "List" } ], "properties": { "created_at": { "$ref": "#/definitions/region/definitions/created_at" }, "description": { "$ref": "#/definitions/region/definitions/description" }, "id": { "$ref": "#/definitions/region/definitions/id" }, "name": { "$ref": "#/definitions/region/definitions/name" }, "updated_at": { "$ref": "#/definitions/region/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - Region", "type": [ "object" ] }, "release": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when release was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "description": { "description": "description of changes in this release", "example": "Added new feature", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of release", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/release/definitions/id" }, { "$ref": "#/definitions/release/definitions/version" } ] }, "updated_at": { "description": "when release was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "version": { "description": "unique version assigned to the release", "example": 11, "readOnly": true, "type": [ "integer" ] } }, "description": "A release represents a combination of code, config vars and add-ons for an app on Heroku.", "id": "schemata/release", "links": [ { "description": "Info for existing release.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/releases/{(%23%2Fdefinitions%2Frelease%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing releases.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/releases", "method": "GET", "rel": "instances", "title": "List" }, { "description": "Create new release. The API cannot be used to create releases on Bamboo apps.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/releases", "method": "POST", "rel": "create", "schema": { "properties": { "description": { "$ref": "#/definitions/release/definitions/description" }, "slug": { "$ref": "#/definitions/slug/definitions/identity" } }, "required": [ "slug" ], "type": [ "object" ] }, "title": "Create" }, { "description": "Rollback to an existing release.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/releases", "method": "POST", "rel": "create", "schema": { "properties": { "release": { "$ref": "#/definitions/release/definitions/id" } }, "required": [ "release" ], "type": [ "object" ] }, "title": "Rollback" } ], "properties": { "created_at": { "$ref": "#/definitions/release/definitions/created_at" }, "description": { "$ref": "#/definitions/release/definitions/description" }, "id": { "$ref": "#/definitions/release/definitions/id" }, "slug": { "description": "slug running in this release", "properties": { "id": { "$ref": "#/definitions/slug/definitions/id" } }, "type": [ "object", "null" ] }, "updated_at": { "$ref": "#/definitions/release/definitions/updated_at" }, "user": { "description": "user that created the release", "properties": { "email": { "$ref": "#/definitions/account/definitions/email" }, "id": { "$ref": "#/definitions/account/definitions/id" } }, "type": [ "object" ] }, "version": { "$ref": "#/definitions/release/definitions/version" } }, "stability": "production", "title": "Heroku Platform API - Release", "type": [ "object" ] }, "slug": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "buildpack_provided_description": { "description": "description from buildpack of slug", "example": "Ruby/Rack", "readOnly": false, "type": [ "null", "string" ] }, "commit": { "description": "identification of the code with your version control system (eg: SHA of the git HEAD)", "example": "60883d9e8947a57e04dc9124f25df004866a2051", "readOnly": false, "type": [ "null", "string" ] }, "created_at": { "description": "when slug was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of slug", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/slug/definitions/id" } ] }, "method": { "description": "method to be used to interact with the slug blob", "example": "GET", "readOnly": true, "type": [ "string" ] }, "process_types": { "additionalProperties": false, "description": "hash mapping process type names to their respective command", "example": { "web": "./bin/web -p $PORT" }, "patternProperties": { "^\\w+$": { "type": [ "string" ] } }, "readOnly": false, "type": [ "object" ] }, "size": { "default": null, "description": "size of slug, in bytes", "example": 2048, "readOnly": true, "type": [ "integer", "null" ] }, "updated_at": { "description": "when slug was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "url": { "description": "URL to interact with the slug blob", "example": "https://api.heroku.com/slugs/1234.tgz", "readOnly": true, "type": [ "string" ] } }, "description": "A slug is a snapshot of your application code that is ready to run on the platform.", "id": "schemata/slug", "links": [ { "description": "Info for existing slug.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/slugs/{(%23%2Fdefinitions%2Fslug%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "Create a new slug. For more information please refer to [Deploying Slugs using the Platform API](https://devcenter.heroku.com/articles/platform-api-deploying-slugs?preview=1).", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/slugs", "method": "POST", "rel": "create", "schema": { "properties": { "buildpack_provided_description": { "$ref": "#/definitions/slug/definitions/buildpack_provided_description" }, "commit": { "$ref": "#/definitions/slug/definitions/commit" }, "process_types": { "$ref": "#/definitions/slug/definitions/process_types" } }, "required": [ "process_types" ], "type": [ "object" ] }, "title": "Create" } ], "properties": { "blob": { "description": "pointer to the url where clients can fetch or store the actual release binary", "properties": { "method": { "$ref": "#/definitions/slug/definitions/method" }, "url": { "$ref": "#/definitions/slug/definitions/url" } }, "type": [ "object" ] }, "buildpack_provided_description": { "$ref": "#/definitions/slug/definitions/buildpack_provided_description" }, "commit": { "$ref": "#/definitions/slug/definitions/commit" }, "created_at": { "$ref": "#/definitions/slug/definitions/created_at" }, "id": { "$ref": "#/definitions/slug/definitions/id" }, "process_types": { "$ref": "#/definitions/slug/definitions/process_types" }, "size": { "$ref": "#/definitions/slug/definitions/size" }, "updated_at": { "$ref": "#/definitions/slug/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - Slug", "type": [ "object" ] }, "ssl-endpoint": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "certificate_chain": { "description": "raw contents of the public certificate chain (eg: .crt or .pem file)", "example": "-----BEGIN CERTIFICATE----- ...", "readOnly": false, "type": [ "string" ] }, "cname": { "description": "canonical name record, the address to point a domain at", "example": "example.herokussl.com", "readOnly": false, "type": [ "string" ] }, "created_at": { "description": "when endpoint was created", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of this SSL endpoint", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/ssl-endpoint/definitions/id" }, { "$ref": "#/definitions/ssl-endpoint/definitions/name" } ] }, "name": { "description": "unique name for SSL endpoint", "example": "example", "pattern": "^[a-z][a-z0-9-]{3,30}$", "readOnly": true, "type": [ "string" ] }, "preprocess": { "default": true, "description": "allow Heroku to modify an uploaded public certificate chain if deemed advantageous by adding missing intermediaries, stripping unnecessary ones, etc.", "example": true, "readOnly": false, "type": [ "boolean" ] }, "private_key": { "description": "contents of the private key (eg .key file)", "example": "-----BEGIN RSA PRIVATE KEY----- ...", "readOnly": false, "type": [ "string" ] }, "rollback": { "default": false, "description": "indicates that a rollback should be performed", "example": false, "readOnly": false, "type": [ "boolean" ] }, "updated_at": { "description": "when endpoint was updated", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "[SSL Endpoint](https://devcenter.heroku.com/articles/ssl-endpoint) is a public address serving custom SSL cert for HTTPS traffic to a Heroku app. Note that an app must have the `ssl:endpoint` addon installed before it can provision an SSL Endpoint using these APIs.", "id": "schemata/ssl-endpoint", "links": [ { "description": "Create a new SSL endpoint.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/ssl-endpoints", "method": "POST", "rel": "create", "schema": { "properties": { "certificate_chain": { "$ref": "#/definitions/ssl-endpoint/definitions/certificate_chain" }, "preprocess": { "$ref": "#/definitions/ssl-endpoint/definitions/preprocess" }, "private_key": { "$ref": "#/definitions/ssl-endpoint/definitions/private_key" } }, "required": [ "certificate_chain", "private_key" ], "type": [ "object" ] }, "title": "Create" }, { "description": "Delete existing SSL endpoint.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/ssl-endpoints/{(%23%2Fdefinitions%2Fssl-endpoint%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for existing SSL endpoint.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/ssl-endpoints/{(%23%2Fdefinitions%2Fssl-endpoint%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing SSL endpoints.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/ssl-endpoints", "method": "GET", "rel": "instances", "title": "List" }, { "description": "Update an existing SSL endpoint.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/ssl-endpoints/{(%23%2Fdefinitions%2Fssl-endpoint%2Fdefinitions%2Fidentity)}", "method": "PATCH", "rel": "update", "schema": { "properties": { "certificate_chain": { "$ref": "#/definitions/ssl-endpoint/definitions/certificate_chain" }, "preprocess": { "$ref": "#/definitions/ssl-endpoint/definitions/preprocess" }, "private_key": { "$ref": "#/definitions/ssl-endpoint/definitions/private_key" }, "rollback": { "$ref": "#/definitions/ssl-endpoint/definitions/rollback" } }, "type": [ "object" ] }, "title": "Update" } ], "properties": { "certificate_chain": { "$ref": "#/definitions/ssl-endpoint/definitions/certificate_chain" }, "cname": { "$ref": "#/definitions/ssl-endpoint/definitions/cname" }, "created_at": { "$ref": "#/definitions/ssl-endpoint/definitions/created_at" }, "id": { "$ref": "#/definitions/ssl-endpoint/definitions/id" }, "name": { "$ref": "#/definitions/ssl-endpoint/definitions/name" }, "updated_at": { "$ref": "#/definitions/ssl-endpoint/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - SSL Endpoint", "type": [ "object" ] }, "stack": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when stack was introduced", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of stack", "example": "01234567-89ab-cdef-0123-456789abcdef", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/stack/definitions/name" }, { "$ref": "#/definitions/stack/definitions/id" } ] }, "name": { "description": "unique name of stack", "example": "cedar", "readOnly": true, "type": [ "string" ] }, "state": { "description": "availability of this stack: beta, deprecated or public", "example": "public", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when stack was last modified", "example": "2012-01-01T12:00:00Z", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "Stacks are the different application execution environments available in the Heroku platform.", "id": "schemata/stack", "links": [ { "description": "Stack info.", "href": "/stacks/{(%23%2Fdefinitions%2Fstack%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List available stacks.", "href": "/stacks", "method": "GET", "rel": "instances", "title": "List" } ], "properties": { "created_at": { "$ref": "#/definitions/stack/definitions/created_at" }, "id": { "$ref": "#/definitions/stack/definitions/id" }, "name": { "$ref": "#/definitions/stack/definitions/name" }, "state": { "$ref": "#/definitions/stack/definitions/state" }, "updated_at": { "$ref": "#/definitions/stack/definitions/updated_at" } }, "stability": "production", "title": "Heroku Platform API - Stack", "type": [ "object" ] } }, "description": "The platform API empowers developers to automate, extend and combine Heroku with other services.", "links": [ { "href": "https://api.heroku.com", "rel": "self" } ], "properties": { "account": { "$ref": "#/definitions/account" }, "account-feature": { "$ref": "#/definitions/account-feature" }, "addon": { "$ref": "#/definitions/addon" }, "addon-service": { "$ref": "#/definitions/addon-service" }, "app": { "$ref": "#/definitions/app" }, "app-feature": { "$ref": "#/definitions/app-feature" }, "app-transfer": { "$ref": "#/definitions/app-transfer" }, "collaborator": { "$ref": "#/definitions/collaborator" }, "config-var": { "$ref": "#/definitions/config-var" }, "domain": { "$ref": "#/definitions/domain" }, "dyno": { "$ref": "#/definitions/dyno" }, "formation": { "$ref": "#/definitions/formation" }, "key": { "$ref": "#/definitions/key" }, "log-drain": { "$ref": "#/definitions/log-drain" }, "log-session": { "$ref": "#/definitions/log-session" }, "oauth-authorization": { "$ref": "#/definitions/oauth-authorization" }, "oauth-client": { "$ref": "#/definitions/oauth-client" }, "oauth-grant": { "$ref": "#/definitions/oauth-grant" }, "oauth-token": { "$ref": "#/definitions/oauth-token" }, "organization": { "$ref": "#/definitions/organization" }, "organization-app": { "$ref": "#/definitions/organization-app" }, "organization-app-collaborator": { "$ref": "#/definitions/organization-app-collaborator" }, "organization-member": { "$ref": "#/definitions/organization-member" }, "plan": { "$ref": "#/definitions/plan" }, "rate-limit": { "$ref": "#/definitions/rate-limit" }, "region": { "$ref": "#/definitions/region" }, "release": { "$ref": "#/definitions/release" }, "slug": { "$ref": "#/definitions/slug" }, "ssl-endpoint": { "$ref": "#/definitions/ssl-endpoint" }, "stack": { "$ref": "#/definitions/stack" } }, "title": "Heroku Platform API", "type": [ "object" ] }
o91126
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "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 (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_aa156f3c
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius" ], "type": "object" }, "shape": { "description": "The shape type", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_f2309707
{ "properties": { "end_time": { "description": "The end time of the event in 'YYYY-MM-DDTHH:MM:SS' format", "format": "date-time", "type": "string" }, "location": { "description": "The location of the event", "type": "string" }, "start_time": { "description": "The start time of the event in 'YYYY-MM-DDTHH:MM:SS' format", "format": "date-time", "type": "string" }, "title": { "description": "The title of the event", "type": "string" } }, "required": [ "title", "start_time", "end_time" ], "type": "object" }
create_event_8169fd5e
{ "$ref": "#/definitions/oic.r.light", "definitions": { "oic.r.light": { "properties": { "if": { "default": "oic.if.baseline", "description": "Interface supported", "type": "string" }, "intensity": { "default": 1, "description": "brightness of the light", "maximum": 9, "minimum": 1, "type": "integer", "update_frequency": 1001 }, "power": { "default": "on", "description": "Light status", "enum": [ "on", "off" ], "type": "string", "update_frequency": 1000 }, "rt": { "default": "oic.r.light", "description": "Description about resource type", "type": "string" } }, "type": "object" } }, "required": [ "rt", "if", "power" ], "title": "OIC Light" }
o72111
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DaemonEndpoint": { "description": "DaemonEndpoint contains information about a single Daemon endpoint.", "properties": { "Port": { "_format": "int32", "description": "Port number of the given endpoint.", "type": "integer" } }, "required": [ "Port" ], "type": "object" } }, "description": "NodeDaemonEndpoints lists ports opened by daemons running on the Node.", "properties": { "kubeletEndpoint": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DaemonEndpoint", "description": "Endpoint on which Kubelet is listening." } }, "type": "object" }
kb_618_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": {}, "other_attributes": { "description": "Use for other attributes for which we don't yet have curated schema attributes", "type": "object" }, "properties": { "confidence": { "description": "Confidence in accuracy of data", "enum": [ "HIGH", "MEDIUM", "LOW" ], "type": "string" }, "direct": { "description": "Is the control relationship direct or indirect (if unknown, leave blank)?", "type": "boolean" }, "end_date": { "_format": "date", "description": "Latest known date this was known to be a subsidiary", "type": "string" }, "parent_identifier": { "description": "Any unique ID for the controlling company", "type": "string" }, "parent_jurisdiction": { "description": "Jurisdiction where controlling company is based", "minLength": 1, "type": "string" }, "parent_name": { "description": "Name of the controlling company", "minLength": 1, "type": "string" }, "percentage_controlled": { "description": "Percentage of the subsidiary that is controlled (if known), either directly or indirectly", "pattern": "^[0-9]{1,2}0?[.]?[0-9]{0,2}$", "type": "string" }, "retrieved_at": { "_format": "date", "type": "string" }, "sample_date": { "_format": "date", "description": "Date on which this fact was known to be true", "type": "string" }, "source_url": { "description": "Place where this fact can be verified", "minLength": 1, "type": "string" }, "start_date": { "_format": "date", "description": "Earliest known date this was known to be a subsidiary", "type": "string" }, "subsidiary_identifier": { "description": "Any unique id for the subsidiary that might be provided in the source", "type": "string" }, "subsidiary_jurisdiction": { "description": "Jurisdiction of the subsidiary", "minLength": 1, "type": "string" }, "subsidiary_name": { "description": "The name of the subsidiary", "minLength": 1, "type": "string" } }, "required": [ "source_url", "sample_date", "parent_name", "parent_jurisdiction", "subsidiary_name", "subsidiary_jurisdiction" ], "type": "object" }
o65428
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "namedResource": { "properties": { "name": { "type": "string" }, "resource_uri": { "type": "string" } }, "required": [ "name", "resource_uri" ], "type": "object" } }, "properties": { "created": { "pattern": "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}.\\d{6}", "type": "string" }, "id": { "type": "integer" }, "modified": { "pattern": "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}.\\d{6}", "type": "string" }, "name": { "type": "string" }, "pokemon": { "items": { "$ref": "#/definitions/namedResource" }, "type": "array" }, "resource_uri": { "type": "string" } }, "required": [ "resource_uri", "created", "modified", "name", "pokemon", "id" ], "type": "object" }
o12619
{ "$schema": "http://json-schema.org/draft-04/schema#", "properties": { "description": { "description": "A short description of the population", "type": "string" }, "id": { "description": "Integer data. Ex: 2673", "type": "integer" }, "name": { "description": "A name allowing to identify the population", "type": "string" }, "owner": { "description": "A single related resource. Can be either a URI or set of nested resource data.", "type": "string" }, "taxa": { "description": "The identifier (or URI) of the taxa object to which the population belongs.", "type": "string" } }, "required": [ "owner", "taxa", "name" ], "title": "Autogenerated JSON schema", "type": "object" }
o58604
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "JSON schema for JSHint configuration files", "type": "object", "properties": { "maxerr": { "description": "Maximum error before stopping", "type": "integer" }, "bitwise": { "description": "Prohibit bitwise operators (&, |, ^, etc.)", "type": "boolean" }, "camelcase": { "description": "Identifiers must be in camelCase", "type": "boolean" }, "curly": { "description": "Require {} for every new block or scope", "type": "boolean" }, "eqeqeq": { "description": "Require triple equals (===) for comparison", "type": "boolean" }, "forin": { "description": "Require filtering for..in loops with obj.hasOwnProperty()", "type": "boolean" }, "immed": { "description": "Require immediate invocations to be wrapped in parens e.g. `(function () { } ());`", "type": "boolean" }, "indent": { "description": "Number of spaces to use for indentation", "type": [ "boolean", "integer" ] }, "latedef": { "description": "Require variables/functions to be defined before being used", "type": "boolean" }, "newcap": { "description": "Require capitalization of all constructor functions e.g. `new F()`", "type": "boolean" }, "noarg": { "description": "Prohibit use of `arguments.caller` and `arguments.callee`", "type": "boolean" }, "noempty": { "description": "Prohibit use of empty blocks", "type": "boolean" }, "nonew": { "description": "Prohibit use of constructors for side-effects (without assignment)", "type": "boolean" }, "plusplus": { "description": "Prohibit use of `++` & `--`", "type": "boolean" }, "quotmark": { "description": "Quotation mark consistency", "type": [ "boolean", "string" ], "enum": [ true, false, "single", "double" ] }, "undef": { "description": "Require all non-global variables to be declared (prevents global leaks)", "type": "boolean" }, "unused": { "description": "Require all defined variables be used", "type": "boolean" }, "strict": { "description": "Requires all functions run in ES5 Strict Mode", "type": "boolean" }, "trailing": { "description": "Prohibit trailing whitespaces", "type": "boolean" }, "maxparams": { "description": "Max number of formal params allowed per function", "type": [ "boolean", "integer" ] }, "maxdepth": { "description": "Max depth of nested blocks (within functions)", "type": [ "boolean", "integer" ] }, "maxstatements": { "description": "Max number statements per function", "type": [ "boolean", "integer" ] }, "maxcomplexity": { "description": "Max cyclomatic complexity per function", "type": [ "boolean", "integer" ] }, "maxlen": { "description": "Max number of characters per line", "type": [ "boolean", "integer" ] }, "asi": { "description": "Tolerate Automatic Semicolon Insertion (no semicolons)", "type": "boolean" }, "boss": { "description": "Tolerate assignments where comparisons would be expected", "type": "boolean" }, "debug": { "description": "Allow debugger statements e.g. browser breakpoints", "type": "boolean" }, "eqnull": { "description": "Tolerate use of `== null`", "type": "boolean" }, "es5": { "description": "Allow ES5 syntax (ex: getters and setters)", "type": "boolean" }, "esnext": { "description": "Allow ES.next (ES6) syntax (ex: `const`)", "type": "boolean" }, "moz": { "description": "Allow Mozilla specific syntax (extends and overrides esnext features)", "type": "boolean" }, "evil": { "description": "Tolerate use of `eval` and `new Function()`", "type": "boolean" }, "expr": { "description": "Tolerate `ExpressionStatement` as Programs", "type": "boolean" }, "funcscope": { "description": "Tolerate defining variables inside control statements", "type": "boolean" }, "globalstrict": { "description": "Allow global 'use strict' (also enables 'strict')", "type": "boolean" }, "iterator": { "description": "Tolerate using the `__iterator__` property", "type": "boolean" }, "lastsemic": { "description": "Tolerate omitting a semicolon for the last statement of a 1-line block", "type": "boolean" }, "laxbreak": { "description": "Tolerate possibly unsafe line breakings", "type": "boolean" }, "laxcomma": { "description": "Tolerate comma-first style coding", "type": "boolean" }, "loopfunc": { "description": "Tolerate functions being defined in loops", "type": "boolean" }, "multistr": { "description": "Tolerate multi-line strings", "type": "boolean" }, "proto": { "description": "Tolerate using the `__proto__` property", "type": "boolean" }, "scripturl": { "description": "Tolerate script-targeted URLs", "type": "boolean" }, "smarttabs": { "description": "Tolerate mixed tabs/spaces when used for alignment", "type": "boolean" }, "shadow": { "description": "Allows re-define variables later in code e.g. `var x=1; x=2;`", "type": "boolean" }, "sub": { "description": "Tolerate using `[]` notation when it can still be expressed in dot notation", "type": "boolean" }, "supernew": { "description": "Tolerate `new function () { ... };` and `new Object;`", "type": "boolean" }, "validthis": { "description": "Tolerate using this in a non-constructor function", "type": "boolean" }, "browser": { "description": "Web Browser (window, document, etc)", "type": "boolean" }, "couch": { "description": "CouchDB", "type": "boolean" }, "devel": { "description": "Development/debugging (alert, confirm, etc)", "type": "boolean" }, "dojo": { "description": "Dojo Toolkit", "type": "boolean" }, "jquery": { "description": "jQuery", "type": "boolean" }, "mootools": { "description": "MooTools", "type": "boolean" }, "node": { "description": "Node.js", "type": "boolean" }, "nonstandard": { "description": "Widely adopted globals (escape, unescape, etc)", "type": "boolean" }, "prototypejs": { "description": "Prototype and Scriptaculous", "type": "boolean" }, "rhino": { "description": "Rhino", "type": "boolean" }, "worker": { "description": "Web Workers", "type": "boolean" }, "wsh": { "description": "Windows Scripting Host", "type": "boolean" }, "yui": { "description": "Yahoo User Interface", "type": "boolean" }, "globals": { "description": "additional predefined global variables", "type": "object", "additionalProperties": { "type": "boolean" } } } }
o73929
{ "oneOf": [ { "additionalProperties": false, "properties": { "key": { "maxLength": 12, "pattern": "^[a-zA-Z0-9_\\.]+$", "type": "string" } } }, { "additionalProperties": false, "properties": { "keys": { "items": { "maxLength": 12, "pattern": "^[a-zA-Z0-9_\\.]+$", "type": "string" }, "type": "array" } } } ], "title": "ForgetRequest", "type": "object" }
o10020
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "meta": { "type": "object", "properties": { "id": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" }, "type": { "type": "string", "enum": [ "EiffelTestSuiteStartedEvent" ] }, "version": { "type": "string", "enum": [ "2.0.0" ], "default": "2.0.0" }, "time": { "type": "integer" }, "tags": { "type": "array", "items": { "type": "string" } }, "source": { "type": "object", "properties": { "domainId": { "type": "string" }, "host": { "type": "string" }, "name": { "type": "string" }, "serializer": { "type": "string", "pattern": "^pkg:" }, "uri": { "type": "string" } }, "additionalProperties": false }, "security": { "type": "object", "properties": { "sdm": { "type": "object", "properties": { "authorIdentity": { "type": "string" }, "encryptedDigest": { "type": "string" } }, "required": [ "authorIdentity", "encryptedDigest" ], "additionalProperties": false } }, "additionalProperties": false } }, "required": [ "id", "type", "version", "time" ], "additionalProperties": false }, "data": { "type": "object", "properties": { "name": { "type": "string" }, "categories": { "type": "array", "items": { "type": "string" } }, "types": { "type": "array", "items": { "type": "string", "enum": [ "ACCESSIBILITY", "BACKUP_RECOVERY", "COMPATIBILITY", "CONVERSION", "DISASTER_RECOVERY", "FUNCTIONAL", "INSTALLABILITY", "INTEROPERABILITY", "LOCALIZATION", "MAINTAINABILITY", "PERFORMANCE", "PORTABILITY", "PROCEDURE", "RELIABILITY", "SECURITY", "STABILITY", "USABILITY" ] } }, "liveLogs": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "uri": { "type": "string" } }, "required": [ "name", "uri" ], "additionalProperties": false } }, "customData": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": {} }, "required": [ "key", "value" ], "additionalProperties": false } } }, "required": [ "name" ], "additionalProperties": false }, "links": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "target": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" } }, "required": [ "type", "target" ], "additionalProperties": false } } }, "required": [ "meta", "data", "links" ], "additionalProperties": false }
o5420
{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "MyObject": { "properties": { "as_integer": { "type": "integer" }, "as_number": { "type": "number" } }, "type": "object" } }, "properties": { "MyObject": { "$ref": "#/definitions/MyObject" } }, "required": [ "MyObject" ] }
o17681
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceScale": { "description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.", "properties": { "labelSelectorPath": { "description": "labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string.", "type": "string" }, "specReplicasPath": { "description": "specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET.", "type": "string" }, "statusReplicasPath": { "description": "statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0.", "type": "string" } }, "required": [ "specReplicasPath", "statusReplicasPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceStatus": { "description": "CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza", "type": "object" } }, "description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.", "properties": { "scale": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceScale", "description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object." }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceStatus", "description": "status indicates the custom resource should serve a `/status` subresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to the `status` stanza of the object. 2. requests to the custom resource `/status` subresource ignore changes to anything other than the `status` stanza of the object." } }, "type": "object" }
kb_213_Normalized
{ "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" } }, "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" }
kb_615_Normalized
{ "$schema": "http://json-schema.org/draft-06/schema#", "$id": "https://scikit-hep.org/pyhf/schemas/1.0.0/workspace.json", "type": "object", "properties": { "channels": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "samples": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "data": { "type": "array", "items": { "type": "number" }, "minItems": 1 }, "modifiers": { "type": "array", "items": { "anyOf": [ { "type": "object", "properties": { "name": { "type": "string" }, "type": { "const": "histosys" }, "data": { "type": "object", "properties": { "lo_data": { "type": "array", "items": { "type": "number" }, "minItems": 1 }, "hi_data": { "type": "array", "items": { "type": "number" }, "minItems": 1 } }, "required": [ "lo_data", "hi_data" ] } }, "required": [ "name", "type", "data" ], "additionalProperties": false }, { "type": "object", "properties": { "name": { "const": "lumi" }, "type": { "const": "lumi" }, "data": { "type": "null" } }, "required": [ "name", "type", "data" ], "additionalProperties": false }, { "type": "object", "properties": { "name": { "type": "string" }, "type": { "const": "normfactor" }, "data": { "type": "null" } }, "required": [ "name", "type", "data" ], "additionalProperties": false }, { "type": "object", "properties": { "name": { "type": "string" }, "type": { "const": "normsys" }, "data": { "type": "object", "properties": { "lo": { "type": "number" }, "hi": { "type": "number" } }, "required": [ "lo", "hi" ] } }, "required": [ "name", "type", "data" ], "additionalProperties": false }, { "type": "object", "properties": { "name": { "type": "string" }, "type": { "const": "shapefactor" }, "data": { "type": "null" } }, "required": [ "name", "type", "data" ], "additionalProperties": false }, { "type": "object", "properties": { "name": { "type": "string" }, "type": { "const": "shapesys" }, "data": { "type": "array", "items": { "type": "number" }, "minItems": 1 } }, "required": [ "name", "type", "data" ], "additionalProperties": false }, { "type": "object", "properties": { "name": { "type": "string" }, "type": { "const": "staterror" }, "data": { "type": "array", "items": { "type": "number" }, "minItems": 1 } }, "required": [ "name", "type", "data" ], "additionalProperties": false } ] } } }, "required": [ "name", "data", "modifiers" ], "additionalProperties": false }, "minItems": 1 } }, "required": [ "name", "samples" ], "additionalProperties": false }, "minItems": 1 }, "measurements": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "config": { "type": "object", "properties": { "poi": { "type": "string" }, "parameters": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "inits": { "type": "array", "items": { "type": "number" }, "minItems": 1 }, "bounds": { "type": "array", "items": { "type": "array", "items": { "type": "number", "minItems": 2, "maxItems": 2 } }, "minItems": 1 }, "auxdata": { "type": "array", "items": { "type": "number" }, "minItems": 1 }, "factors": { "type": "array", "items": { "type": "number" }, "minItems": 1 }, "sigmas": { "type": "array", "items": { "type": "number" }, "minItems": 1 }, "fixed": { "type": "boolean" } }, "required": [ "name" ], "additionalProperties": false } } }, "required": [ "poi", "parameters" ], "additionalProperties": false } }, "required": [ "name", "config" ], "additionalProperties": false }, "minItems": 1 }, "observations": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "data": { "type": "array", "items": { "type": "number" }, "minItems": 1 } }, "required": [ "name", "data" ], "additionalProperties": false }, "minItems": 1 }, "version": { "const": "1.0.0" } }, "additionalProperties": false, "required": [ "channels", "measurements", "observations", "version" ] }
o6771
{ "additionalProperties": false, "definitions": {}, "description": "api-box input json schema", "properties": { "endpoints": { "items": { "properties": { "methods": { "items": { "properties": { "content_type": { "type": "string" }, "input": { "type": "object" }, "method": { "enum": [ "GET", "POST", "PUT", "DELETE" ] }, "result": { "anyOf": [ { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "type": "object" }, { "type": "array" } ] } }, "required": [ "method", "result" ], "type": "object" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "path": { "type": "string" } }, "required": [ "path" ], "type": "object" }, "type": "array", "_uniqueItems": true }, "global": { "type": "object" }, "name": { "type": "string" }, "prefix": { "type": "string" }, "version": { "type": "string" } }, "required": [ "name", "endpoints" ], "type": "object" }
o60823
{ "$id": "https://json.schemastore.org/cloudify.json", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "dataTypes": { "description": "To use data_types, the definitions version must be cloudify_dsl_1_2 or higher.", "type": "object", "patternProperties": { "": { "$ref": "#/definitions/dataType" } } }, "dataType": { "type": "object", "properties": { "description": { "type": "string", "description": "Description for the data type." }, "properties": { "type": "object", "description": "Dictionary of the data type properties." }, "derived_from": { "type": "string", "description": "Parent data type." } }, "additionalProperties": false }, "inputProperty": { "description": "inputs are parameters that are injected into a blueprint when a deployment is created. These parameters can be referenced by using the get_input intrinsic function.", "type": "object", "properties": { "description": { "description": "An optional description for the input.", "type": "string" }, "type": { "description": "The required data type of the input. Not specifying a data type means the type can be anything, including a list, an array or a dictionary. Valid types: string, integer, float, boolean, list, dict, regex or a custom data type.", "anyOf": [ { "type": "string" }, { "type": "string", "enum": [ "string", "integer", "float", "boolean", "list", "dict", "regex" ] } ] }, "default": { "description": "An optional default value for the input.", "type": ["number", "string", "array", "boolean", "integer", "object"] }, "constraints": { "$ref": "#/definitions/inputPropertyConstraints" }, "required": { "description": "a boolean value to indicate whether the input is required must be passed or not.", "type": "boolean" } }, "additionalProperties": false }, "inputPropertyConstraints": { "description": "The constraints the input value must comply with. Read more details about the format and usage of the constraints in the Constraints section below.", "anyOf": [ { "type": "object", "properties": { "equal": { "description": "", "type": ["number", "string", "boolean", "integer"] }, "greater_than": { "type": ["number", "string", "boolean", "integer"] }, "greater_or_equal": { "type": ["number", "string", "boolean", "integer"] }, "less_than": { "type": ["number", "string", "boolean", "integer"] }, "less_or_equal": { "type": ["number", "string", "boolean", "integer"] } } }, { "valid_values": { "type": "array", "items": { "type": ["number", "string", "boolean", "integer"] } } } ] }, "nodeTemplates": { "type": "object", "description": "node_templates represent the actual instances of node types that eventually represent the running application/service, as described in the blueprint. node_templates are more commonly referred to as nodes. Nodes can comprise more than one instance. For example, you might define a node that contains two VMs. Each VM is a node_instance.", "patternProperties": { "": { "$ref": "#/definitions/nodeTemplate" } } }, "nodeTemplate": { "type": "object", "properties": { "type": { "type": "string", "description": "The node-type of this node template.", "anyOf": [ { "type": "string" }, { "type": "string", "enum": [ "cloudify.nodes.Root", "cloudify.nodes.Tier", "cloudify.nodes.Compute", "cloudify.nodes.Container", "cloudify.nodes.Network", "cloudify.nodes.Subnet", "cloudify.nodes.Router", "cloudify.nodes.Port", "cloudify.nodes.VirtualIP", "cloudify.nodes.SecurityGroup", "cloudify.nodes.LoadBalancer", "cloudify.nodes.Volume", "cloudify.nodes.FileSystem", "cloudify.nodes.ObjectStorage", "cloudify.nodes.SoftwareComponent", "cloudify.nodes.WebServer", "cloudify.nodes.ApplicationServer", "cloudify.nodes.DBMS", "cloudify.nodes.MessageBugServer", "cloudify.nodes.ApplicationModule", "cloudify.nodes.Component", "cloudify.nodes.ServiceComponent", "cloudify.nodes.SharedResource", "cloudify.nodes.aws.dynamodb.Table", "cloudify.nodes.aws.iam.Group", "cloudify.nodes.aws.iam.AccessKey", "cloudify.nodes.aws.iam.LoginProfile", "cloudify.nodes.aws.iam.User", "cloudify.nodes.aws.iam.Role", "cloudify.nodes.aws.iam.RolePolicy", "cloudify.nodes.aws.iam.InstanceProfile", "cloudify.nodes.aws.iam.Policy", "cloudify.nodes.aws.lambda.Function", "cloudify.nodes.aws.lambda.Invoke", "cloudify.nodes.aws.lambda.Permission", "cloudify.nodes.aws.rds.Instance", "cloudify.nodes.aws.rds.InstanceReadReplica", "cloudify.nodes.aws.rds.SubnetGroup", "cloudify.nodes.aws.rds.OptionGroup", "cloudify.nodes.aws.rds.Option", "cloudify.nodes.aws.rds.ParameterGroup", "cloudify.nodes.aws.rds.Parameter", "cloudify.nodes.aws.route53.HostedZone", "cloudify.nodes.aws.route53.RecordSet", "cloudify.nodes.aws.SQS.Queue", "cloudify.nodes.aws.SNS.Topic", "cloudify.nodes.aws.SNS.Subscription", "cloudify.nodes.aws.elb.LoadBalancer", "cloudify.nodes.aws.elb.Classic.LoadBalancer", "cloudify.nodes.aws.elb.Classic.HealthCheck", "cloudify.nodes.aws.elb.Listener", "cloudify.nodes.aws.elb.Classic.Listener", "cloudify.nodes.aws.elb.Rule", "cloudify.nodes.aws.elb.TargetGroup", "cloudify.nodes.aws.elb.Classic.Policy", "cloudify.nodes.aws.elb.Classic.Policy.Stickiness", "cloudify.nodes.aws.s3.BaseBucket", "cloudify.nodes.aws.s3.BaseBucketObject", "cloudify.nodes.aws.s3.Bucket", "cloudify.nodes.aws.s3.BucketPolicy", "cloudify.nodes.aws.s3.BucketLifecycleConfiguration", "cloudify.nodes.aws.s3.BucketTagging", "cloudify.nodes.aws.s3.BucketObject", "cloudify.nodes.aws.ec2.BaseType", "cloudify.nodes.aws.ec2.Vpc", "cloudify.nodes.aws.ec2.VpcPeering", "cloudify.nodes.aws.ec2.VpcPeeringRequest", "cloudify.nodes.aws.ec2.VpcPeeringAcceptRequest", "cloudify.nodes.aws.ec2.VpcPeeringRejectRequest", "cloudify.nodes.aws.ec2.Subnet", "cloudify.nodes.aws.ec2.SecurityGroup", "cloudify.nodes.aws.ec2.SecurityGroupRuleIngress", "cloudify.nodes.aws.ec2.SecurityGroupRuleEgress", "cloudify.nodes.aws.ec2.NATGateway", "cloudify.nodes.aws.ec2.Interface", "cloudify.nodes.aws.ec2.Instances", "cloudify.nodes.aws.ec2.Keypair", "cloudify.nodes.aws.ec2.ElasticIP", "cloudify.nodes.aws.ec2.NetworkACL", "cloudify.nodes.aws.ec2.NetworkAclEntry", "cloudify.nodes.aws.ec2.DHCPOptions", "cloudify.nodes.aws.ec2.VPNGateway", "cloudify.nodes.aws.ec2.VPNConnection", "cloudify.nodes.aws.ec2.VPNConnectionRoute", "cloudify.nodes.aws.ec2.CustomerGateway", "cloudify.nodes.aws.ec2.InternetGateway", "cloudify.nodes.aws.ec2.RouteTable", "cloudify.nodes.aws.ec2.Route", "cloudify.nodes.aws.ec2.Image", "cloudify.nodes.aws.ec2.Tags", "cloudify.nodes.aws.ec2.EBSVolume", "cloudify.nodes.aws.ec2.EBSAttachment", "cloudify.nodes.aws.autoscaling.Group", "cloudify.nodes.aws.autoscaling.LaunchConfiguration", "cloudify.nodes.aws.autoscaling.Policy", "cloudify.nodes.aws.autoscaling.LifecycleHook", "cloudify.nodes.aws.autoscaling.NotificationConfiguration", "cloudify.nodes.aws.cloudwatch.Alarm", "cloudify.nodes.aws.cloudwatch.Rule", "cloudify.nodes.aws.cloudwatch.Event", "cloudify.nodes.aws.cloudwatch.Target", "cloudify.nodes.aws.efs.FileSystem", "cloudify.nodes.aws.efs.MountTarget", "cloudify.nodes.aws.efs.FileSystemTags", "cloudify.nodes.aws.kms.CustomerMasterKey", "cloudify.nodes.aws.kms.Alias", "cloudify.nodes.aws.kms.Grant", "cloudify.nodes.aws.CloudFormation.Stack", "cloudify.nodes.aws.ecs.Cluster", "cloudify.nodes.aws.ecs.Service", "cloudify.nodes.aws.ecs.TaskDefinition", "cloudify.nodes.swift.s3.Bucket", "cloudify.nodes.swift.s3.BucketObject", "cloudify.nodes.aws.eks.Cluster", "cloudify.nodes.aws.eks.NodeGroup", "cloudify.azure.nodes.storage.StorageAccount", "cloudify.azure.nodes.storage.DataDisk", "cloudify.azure.nodes.storage.FileShare", "cloudify.azure.nodes.network.VirtualNetwork", "cloudify.azure.nodes.network.NetworkSecurityGroup", "cloudify.azure.nodes.network.NetworkSecurityRule", "cloudify.azure.nodes.network.Subnet", "cloudify.azure.nodes.network.RouteTable", "cloudify.azure.nodes.network.Route", "cloudify.azure.nodes.network.NetworkInterfaceCard", "cloudify.azure.nodes.network.IPConfiguration", "cloudify.azure.nodes.network.PublicIPAddress", "cloudify.azure.nodes.compute.AvailabilitySet", "cloudify.azure.nodes.compute.VirtualMachine", "cloudify.azure.nodes.compute.WindowsVirtualMachine", "cloudify.azure.nodes.compute.VirtualMachineExtension", "cloudify.azure.nodes.network.LoadBalancer", "cloudify.azure.nodes.network.LoadBalancer.BackendAddressPool", "cloudify.azure.nodes.network.LoadBalancer.Probe", "cloudify.azure.nodes.network.LoadBalancer.IncomingNATRule", "cloudify.azure.nodes.network.LoadBalancer.Rule", "cloudify.azure.Deployment", "cloudify.azure.nodes.compute.ContainerService", "cloudify.azure.nodes.Plan", "cloudify.azure.nodes.WebApp", "cloudify.azure.nodes.PublishingUser", "cloudify.azure.nodes.compute.ManagedCluster", "cloudify.gcp.project", "cloudify.gcp.nodes.Instance", "cloudify.gcp.nodes.InstanceGroup", "cloudify.gcp.nodes.Volume", "cloudify.gcp.nodes.Snapshot", "cloudify.gcp.nodes.Network", "cloudify.gcp.nodes.SubNetwork", "cloudify.gcp.nodes.VPCNetworkPeering", "cloudify.gcp.nodes.Route", "cloudify.gcp.nodes.FirewallRule", "cloudify.gcp.nodes.SecurityGroup", "cloudify.gcp.nodes.Access", "cloudify.gcp.nodes.KeyPair", "cloudify.gcp.nodes.ExternalIP", "cloudify.gcp.nodes.GlobalAddress", "cloudify.gcp.nodes.StaticIP", "cloudify.gcp.nodes.Address", "cloudify.gcp.nodes.Image", "cloudify.gcp.nodes.HealthCheck", "cloudify.gcp.nodes.BackendService", "cloudify.gcp.nodes.RegionBackendService", "cloudify.gcp.nodes.UrlMap", "cloudify.gcp.nodes.TargetProxy", "cloudify.gcp.nodes.SslCertificate", "cloudify.gcp.nodes.ForwardingRule", "cloudify.gcp.nodes.GlobalForwardingRule", "cloudify.gcp.nodes.DNSZone", "cloudify.gcp.nodes.DNSRecord", "cloudify.gcp.nodes.DNSAAAARecord", "cloudify.gcp.nodes.DNSMXRecord", "cloudify.gcp.nodes.DNSNSRecord", "cloudify.gcp.nodes.DNSTXTRecord", "cloudify.gcp.nodes.KubernetesCluster", "cloudify.gcp.nodes.KubernetesNodePool", "cloudify.gcp.nodes.KubernetesClusterMonitoring", "cloudify.gcp.nodes.KubernetesClusterlegacyAbac", "cloudify.gcp.nodes.KubernetesClusterNetworkPolicy", "cloudify.gcp.nodes.Topic", "cloudify.gcp.nodes.TopicPolicy", "cloudify.gcp.nodes.TopicMessage", "cloudify.gcp.nodes.Subscription", "cloudify.gcp.nodes.SubscriptionPolicy", "cloudify.gcp.nodes.Acknowledge", "cloudify.gcp.nodes.PullRequest", "cloudify.gcp.nodes.StackDriverGroup", "cloudify.gcp.nodes.StackDriverTimeSeries", "cloudify.gcp.nodes.StackDriverUpTimeCheckConfig", "cloudify.gcp.nodes.LoggingSink", "cloudify.gcp.nodes.LoggingExclusion", "cloudify.gcp.nodes.Logging.BillingAccounts.sinks", "cloudify.gcp.nodes.Logging.Folders.sinks", "cloudify.gcp.nodes.Logging.Organizations.sinks", "cloudify.gcp.nodes.Logging.Projects.sinks", "cloudify.gcp.nodes.Logging.BillingAccounts.exclusions", "cloudify.gcp.nodes.Logging.Folders.exclusions", "cloudify.gcp.nodes.Logging.Organizations.exclusions", "cloudify.gcp.nodes.Logging.Projects.exclusions", "cloudify.gcp.nodes.Logging.Projects.metrics", "cloudify.kubernetes.resources.StatefulSet", "cloudify.nodes.helm.Binary", "cloudify.nodes.helm.Release", "cloudify.nodes.helm.Repo" ] } ] }, "properties": { "type": "object", "description": "The properties of the node template, matching its node type properties schema." }, "instances": { "type": "object", "description": "Instances configuration. (Deprecated. Replaced with capabilities.scalable)" }, "interfaces": { "$ref": "#/definitions/nodeTemplateInterfaces", "description": "Used for a mapping plugins to interfaces operation, or for specifying inputs for already-mapped node type operations." }, "relationships": { "$ref": "#/definitions/nodeTemplateRelationships", "description": "Used for specifying the relationships that this node template has with other node templates." }, "capabilities": { "type": "object", "description": "Used for specifying the node template capabilities (Supported since: cloudify_dsl_1_3.) Only the scalable capability is supported." } }, "allOf": [ { "if": { "properties": { "type": { "const": "cloudify.nodes.aws.ec2.Vpc" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeAWSEC2VPC" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.aws.ec2.InternetGateway" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeAWSInternetGateway" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.aws.ec2.Subnet" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeAWSEC2Subnet" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.aws.ec2.RouteTable" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeAWSEC2RouteTable" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.aws.ec2.Route" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeAWSEC2Route" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.aws.ec2.ElasticIP" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeAWSEC2ElasticIP" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.aws.ec2.NATGateway" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeAWSEC2NATGateway" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.aws.ec2.SecurityGroup" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeAWSEC2SecurityGroup" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.aws.ec2.SecurityGroupRuleIngress" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeAWSEC2SecurityGroupRuleIngress" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.aws.ec2.Interface" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeAWSEC2Interface" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.aws.ec2.Image" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeAWSEC2Image" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.aws.ec2.Instances" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeAWSEC2Instances" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.aws.ec2.EBSVolume" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeAWSEC2EBSVolume" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.aws.ec2.EBSAttachment" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeAWSEC2EBSAttachment" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.docker.images" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeDockerImagesProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeDockerImagesInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.docker.containers" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeDockerContainersProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeDockerContainersInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.docker.host" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeDockerHostProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeDockerHostInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.docker.host_details" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeDockerHostDetailsProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeDockerHostDetailsInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.docker.image" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeDockerImageProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeDockerImageInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.docker.container" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeDockerContainerProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeDockerContainerInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.docker.container_files" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeDockerContainerFilesProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeDockerContainerFilesInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.docker.ansible_playbook" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeDockerAnsiblePlaybookProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeDockerAnsiblePlaybookInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.docker.terraform_module" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeDockerTerraformModuleProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeDockerTerraformModuleInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.nodes.Master" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesNodesMasterProperties" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.ResourceBase" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesResourceBase" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.ResourceWithValidateStatus" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesResourceWithValidateStatus" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.BlueprintDefinedResource" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.ClusterRoleBinding" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesClusterRoleBindingProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.RoleBinding" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesRoleBinding" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.Role" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesRoleProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.ClusterRole" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesClusterRoleProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.Secret" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesSecretProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.ServiceAccount" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesServiceAccountProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.Deployment" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesDeploymentProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.Node" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesNodeProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.Namespace" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesNamespaceProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.Pod" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesPodProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.ReplicaSet" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesReplicaSetProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.ReplicationController" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesReplicationControllerProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.DaemonSet" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesDaemonSetProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.CustomResourceDefinition" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesCustomResourceDefinitionProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.Service" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesServiceProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.PersistentVolume" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesPersistentVolumeProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.ConfigMap" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesConfigMapProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.StorageClass" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesStorageClassProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.StatefulSet" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesStatefulSetProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.PodSecurityPolicy" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesPodSecurityPolicyProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.NetworkPolicy" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesNetworkPolicyProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.Ingress" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesIngressProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.PersistentVolumeClaim" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesPersistentVolumeClaimProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.CustomBlueprintDefinedResource" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesCustomBlueprintDefinedResourceProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesCustomBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.CustomBlueprintDefinedResource" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesCustomBlueprintDefinedResourceProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesCustomBlueprintDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.FileDefinedResource" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesFileDefinedResourceProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesFileDefinedResourceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.kubernetes.resources.MultipleFileDefinedResources" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeKubernetesResourcesMultipleFileDefinedResourcesProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeKubernetesResourcesMultipleFileDefinedResourcesInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.terraform" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeTerraformProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeTerraformInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.terraform.Module" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeTerraformModuleProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeTerraformModuleInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.terraform.Module" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeTerraformModuleProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeTerraformModuleInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.ansible.Executor" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeAnsibleExecutorProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeAnsibleExecutorInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.NetworkBase" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackNetworkBaseProperties" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.Network" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackNetworkProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackNetworkInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.Subnet" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackSubnetProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackSubnetInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.Port" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackPortProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackPortInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.Router" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackRouterProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackRouterInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.FloatingIP" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackFloatingIPProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackFloatingIPInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.SecurityGroup" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackSecurityGroupProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackSecurityGroupInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.SecurityGroupRule" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackSecurityGroupRuleProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackSecurityGroupRuleInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.RBACPolicy" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackRBACPolicyProperties" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.Server" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackServerProperties" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.WindowsServer" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackWindowsServerProperties" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.KeyPair" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackKeyPairProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackKeyPairInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.HostAggregate" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackHostAggregateProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackHostAggregateInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.Image" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackImageProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackImageInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.Flavor" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackFlavorProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackFlavorInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.User" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackUserProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackUserInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.Group" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackGroupProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackGroupInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.Role" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackRoleProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackRoleInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.Project" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackProjectProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackProjectInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.Volume" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackVolumeProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackVolumeInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.VolumeType" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackVolumeTypeProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackVolumeTypeInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.Zone" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackZoneProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackZoneInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.openstack.RecordSet" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeOpenstackRecordSetProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeOpenstackRecordSetInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.DeploymentProxy" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyNodesDeploymentProxyProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyNodesDeploymentProxyInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.NodeInstanceProxy" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyNodesNodeInstanceProxyProperties" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.CloudInit.CloudConfig" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyNodesCloudInitCloudConfigProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyNodesCloudInitCloudConfigInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.keys.nodes.RSAKey" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyNodesRSAKeyProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyNodesRSAKeyInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.terminal.raw" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyTerminalRawProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyTerminalRawInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.File" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyNodesFileProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyNodesFileInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.ftp" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyNodesFTPProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyNodesFTPInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.rest.Requests" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyRestRequestsProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyRestRequestsInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.rest.BunchRequests" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyRestBunchRequestsProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyRestBunchRequestsInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.secrets.Writer" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyNodesSecretsWriterProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyNodesSecretsWriterInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.secrets.Reader" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyNodesSecretsReaderProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyNodesSecretsReaderInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.ResourceGroup" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesResourceGroupProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesResourceGroupInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.storage.StorageAccount" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesStorageStorageAccountProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesStorageStorageAccountInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.storage.DataDisk" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesStorageDataDiskProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesStorageDataDisktInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.storage.FileShare" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesStorageFileShareProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesStorageFileShareInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.network.VirtualNetwork" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkVirtualNetworkProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkVirtualNetworkInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.network.NetworkSecurityGroup" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkNetworkSecurityGroupProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkNetworkSecurityGroupInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.network.NetworkSecurityRule" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkNetworkSecurityRuleProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkNetworkSecurityRuleInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.network.Subnet" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkSubnetProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkSubnetInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.network.RouteTable" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkRouteTableProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkRouteTableInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.network.Route" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkRouteProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkRouteInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.network.NetworkInterfaceCard" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkNetworkInterfaceCardProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkNetworkInterfaceCardInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.network.IPConfiguration" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkIPConfigurationProperties" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.network.PublicIPAddress" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkPublicIPAddressProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkPublicIPAddressInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.compute.AvailabilitySet" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesComputeAvailabilitySetProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesComputeAvailabilitySetInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.compute.VirtualMachine" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesComputeVirtualMachineProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesComputeVirtualMachineInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.compute.WindowsVirtualMachine" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesComputeWindowsVirtualMachineProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesComputeWindowsVirtualMachineInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.compute.VirtualMachineExtension" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesComputeVirtualMachineExtensionProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesComputeVirtualMachineExtensionInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.network.LoadBalancer" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkLoadBalancerProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkLoadBalancerInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.network.LoadBalancer.BackendAddressPool" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkLoadBalancerBackendAddressPoolProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkLoadBalancerBackendAddressPoolInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.network.LoadBalancer.Probe" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkLoadBalancerProbeProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkLoadBalancerProbeInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.network.LoadBalancer.IncomingNATRule" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkLoadBalancerIncomingNATRuleProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkLoadBalancerIncomingNATRuleInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.network.LoadBalancer.Rule" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkLoadBalancerRuleProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesNetworkLoadBalancerRuleInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.Deployment" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureDeploymentProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureDeploymentInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.compute.ContainerService" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesComputeContainerServiceProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesComputeContainerServiceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.Plan" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesPlanProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesPlanInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.WebApp" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesWebAppProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesWebAppInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.PublishingUser" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesPublishingUserProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesPublishingUserInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.azure.nodes.compute.ManagedCluster" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesComputeManagedClusterProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesComputeManagedClusterInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.gcp.project" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyGCPProjectProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyGCPProjectInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.gcp.nodes.Instance" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeCloudifyGCPNodesInstanceProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeCloudifyGCPNodesInstanceInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.helm.Binary" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeHelmBinaryProperties" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.helm.Release" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeHelmReleaseProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeHelmReleaseInterfaces" } } } }, { "if": { "properties": { "type": { "const": "cloudify.nodes.helm.Repo" } } }, "then": { "properties": { "properties": { "$ref": "#/definitions/nodeTypeHelmRepoProperties" }, "interfaces": { "$ref": "#/definitions/nodeTypeHelmRepoInterfaces" } } } } ], "required": ["type"], "additionalProperties": false }, "gcpExternalResource": { "type": "object", "properties": { "use_external_resource": { "type": "boolean", "description": "Indicate whether the resource exists or if Cloudify should create the resource,\ntrue if you are bringing an existing resource, false if you want cloudify to create it.", "default": false } } }, "gcpResourceId": { "type": "object", "properties": { "resource_id": { "type": "string", "description": "The GCP resource ID of the external resource, if\nuse_external_resource is true. Otherwise it is an empty string." } } }, "nodeTypeCloudifyGCPProjectProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/gcpExternalResource" }, { "$ref": "#/definitions/gcpResourceId" }, { "properties": { "gcp_config": { "type": "object", "description": "A dictionary of values to pass to authenticate with the GCP API." }, "name": { "type": "string", "description": "Optional project name. By default it will be instance id." } } } ] }, "nodeTypeCloudifyGCPProjectInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["gcp_plugin.cloudify_gcp.admin.projects.create"] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["gcp_plugin.cloudify_gcp.admin.projects.delete"] } } } } } } }, "nodeTypeCloudifyGCPNodesInstanceProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/gcpExternalResource" }, { "$ref": "#/definitions/gcpResourceId" }, { "properties": { "gcp_config": { "type": "object", "description": "A dictionary of values to pass to authenticate with the GCP API." }, "use_public_ip": { "type": "boolean", "description": "Tells the deployment to use the public IP (if available) of the resource\nfor Cloudify Agent connections", "default": false }, "image_id": { "type": "string", "description": "The ID of the image in your GCP account." }, "instance_type": { "type": "string", "description": "The instance's type. All available instance types can be found here:\nhttps://cloud.google.com/compute/docs/machine-types", "default": "n1-standard-1" }, "name": { "description": "Optional instance name. By default it will be instance id.", "type": "string" }, "zone": { "description": "Optional zone name. If not given, this instance will be deployed\bin default zone.", "type": "string" }, "tags": { "description": "Optional tags. If not given, this instance will have a tag only with\nits name.", "type": "string" }, "block_project_ssh_keys": { "description": " Disable project-wide ssh keys for this Instance", "type": "boolean", "default": false }, "can_ip_forward": { "description": "Is the VM allowed to send packets with source address different to its own?", "type": "boolean", "default": false }, "scopes": { "description": "Optional scopes. If not will set by default:\n'https://www.googleapis.com/auth/devstorage.read_write',\n'https://www.googleapis.com/auth/logging.write'", "type": "array", "items": { "type": "string" } }, "startup_script": { "description": "A script which will be run when the Instance is first started\nexample:\n type: string\n script: |\n yum install some stuff\n systemctl start it\nor:\n type: file\n script: <path to script file>", "type": "string" }, "external_ip": { "description": "Should the Instance be created with an externally-accessible\nIP address. This will be an ephemeral IP.\nIf you would like to use an IP address which can be transferred\nto another Instance then connect this Instance to an `Address`\nnode using the\n`cloudify.gcp.relationships.instance_connected_to_ip`\nrelationship.", "type": "boolean", "default": false }, "additional_settings": { "description": "Additional instance settings.", "type": "object" } } } ] }, "nodeTypeCloudifyGCPNodesInstanceInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "configure": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["gcp_plugin.cloudify_gcp.compute.instance.create"] }, "inputs": { "type": "object", "properties": { "startup_script": { "type": "string", "default": { "get_property": ["SELF", "startup_script"] } }, "external_ip": { "type": "boolean", "default": { "get_property": ["SELF", "external_ip"] } }, "instance_type": { "type": "string", "default": { "get_property": ["SELF", "instance_type"] } }, "image_id": { "type": "string", "default": { "get_property": ["SELF", "image_id"] } }, "name": { "type": "string", "default": { "get_property": ["SELF", "name"] } }, "zone": { "type": "string", "default": { "get_property": ["SELF", "zone"] } }, "scopes": { "type": "array", "items": { "type": "string" }, "default": { "get_property": ["SELF", "scopes"] } }, "tags": { "type": "string", "default": { "get_property": ["SELF", "tags"] } }, "can_ip_forward": { "type": "boolean", "default": { "get_property": ["SELF", "can_ip_forward"] } }, "additional_settings": { "type": "object", "default": { "get_property": ["SELF", "additional_settings"] } } } } } }, "start": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["gcp_plugin.cloudify_gcp.compute.instance.start"] }, "inputs": { "type": "object", "properties": { "name": { "type": "string", "default": { "get_attribute": ["SELF", "name"] } } } } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["gcp_plugin.cloudify_gcp.compute.instance.delete"] }, "inputs": { "type": "object", "properties": { "name": { "type": "string", "default": { "get_attribute": ["SELF", "name"] } }, "zone": { "type": "string", "default": { "get_attribute": ["SELF", "zone"] } } } } } } } } } }, "cloudifyDatatypesAzureConfig": { "type": "object", "properties": { "endpoints_active_directory": { "description": "A Microsoft Azure Active Directory endpoint.", "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "https://login.microsoftonline.com" }, "endpoints_resource_manager": { "description": "A Microsoft Azure Active Directory Resource Manager.", "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "https://management.azure.com" }, "endpoint_resource": { "description": "A Microsoft Azure Active Directory Resource Id.", "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "https://management.core.windows.net/" }, "endpoint_verify": { "description": "Connection certificate verify.", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": true }, "subscription_id": { "description": "A Microsoft Azure subscription ID. This is a unique\nuser account in Azure. This can be found in the\nSubscriptions tab on your dashboard.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "tenant_id": { "description": "A Microsoft Azure tenant ID. This can be found in the Azure Active Directory dashboard by accessing\nyour directory. Open the Application Endpoints\ndialog and your tenant ID will be in the URL for\nthe OAUTH2.0 TOKEN ENDPOINT.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "client_id": { "description": "A Microsoft Azure client ID. This can be found in\nthe Azure Active Directory dashboard by accessing\nyour directory. View the Applications tab and select\nthe application used to access Azure APIs. Your\nclient ID can be found by expanding the ACCESS WEB\nAPIS IN OTHER APPLICATIONS tab.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "client_secret": { "description": "A Microsoft Azure client secret key. This can be found\nor generated in the same location as your client ID.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "scale_name_separator": { "description": "When scaling resources, a unique name must be sent to\nthe Azure API. Since names are left to the user to\nmanage (the service does not generate unique IDs),\nthis plugin will attempt to append characters or\nnumbers to the end of the resource name when resources\nare scaled out. This value should be a character, or\ncharacters, that will separate the base name from the\ngenerated unique characters. For instance, if the\nbase name of a resource is \"myvm\", the separator is\nset to \"_\", and a scale workflow attempts to create\nanother resource, the resulting name could be\nsomething like \"myvm_1\". This field can be left blank.", "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "_" }, "scale_name_suffix_chars": { "description": "A string of characters (ASCII) to be used when\ngenerating unique suffix data when scaling resources.\nSee \"scale_name_separator\" for more information.", "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "1234567890" }, "certificate": { "description": "Certificate private key.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "thumbprint": { "description": "Certificate thumbprint.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "cloud_environment": { "description": "An alternative cloud environment.", "$ref": "#/definitions/cloudifyStringOrGetInput" } } }, "cloudifyDatatypesAzureStorageStorageAccountConfig": { "type": "object", "description": "See https://msdn.microsoft.com/en-us/library/mt163564.aspx", "properties": { "accountType": { "description": "An storage account type (case sensitive)", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "networkAcls": { "type": "object" }, "supportsHttpsTrafficOnly": { "type": "object" }, "encryption": { "type": "object" }, "keySource": { "type": "object" } } }, "cloudifyDatatypesAzureStorageDataDiskConfig": { "type": "object", "properties": { "container_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Container for the resource.", "default": "vhds" }, "size": { "description": "Size of the Page Blob (Azure disk) in GiB. Maximum of 1023 GiB allowed.", "$ref": "#/definitions/cloudifyIntegerOrGetInput", "default": 20 }, "force_delete": { "description": "If set to true, the resource's \"delete\" lifecycle will purge the\nAzure Data Disk from the Azure Storage Account. If false, the\nData Disk is left as-is in the Storage Account.", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false } }, "required": ["size"] }, "cloudifyDatatypesAzureNetworkVirtualNetworkConfig": { "type": "string", "description": "See https://msdn.microsoft.com/en-us/library/mt163661.aspx", "properties": { "addressSpace": { "type": "object" }, "dhcpOptions": { "type": "object" }, "subnets": { "type": "object" } }, "required": ["addressSpace"] }, "cloudifyDatatypesAzureNetworkNetworkSecurityRuleConfig": { "type": "object", "description": "See https://msdn.microsoft.com/en-us/library/mt163645.aspx", "properties": { "description": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "protocol": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "sourcePortRange": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "destinationPortRange": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "sourceAddressPrefix": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "destinationAddressPrefix": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "access": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "priority": { "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "direction": { "$ref": "#/definitions/cloudifyStringOrGetInput" } }, "required": [ "protocol", "sourceAddressPrefix", "destinationAddressPrefix", "access", "priority", "direction" ] }, "cloudifyDatatypesAzureNetworkNetworkSecurityGroupConfig": { "type": "object", "description": "See https://msdn.microsoft.com/en-us/library/mt163656.aspx", "properties": { "securityRules": { "type": "object" } } }, "cloudifyDatatypesAzureNetworkSubnetConfig": { "type": "object", "description": "See https://msdn.microsoft.com/en-us/library/mt163621.aspx", "properties": { "addressPrefix": { "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "networkSecurityGroup": { "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "routeTable": { "$ref": "#/definitions/cloudifyIntegerOrGetInput" } } }, "cloudifyDatatypesAzureNetworkRouteTableConfig": { "type": "object", "description": "See https://msdn.microsoft.com/en-us/library/mt502548.aspx", "properties": { "routes": { "$ref": "#/definitions/cloudifyStringOrGetInput" } } }, "cloudifyDatatypesAzureNetworkIPConfigurationConfig": { "type": "object", "properties": { "privateIPAddress": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Static, private IP Address" }, "privateIPAllocationMethod": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Defines how a private IP address is assigned. Options\nare Static or Dynamic" } }, "required": ["privateIPAllocationMethod"] }, "cloudifyDatatypesAzureNetworkPublicIPAddressConfig": { "type": "object", "description": "See https://msdn.microsoft.com/en-us/library/mt163590.aspx", "properties": { "publicIPAllocationMethod": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Defines whether the IP address is stable or dynamic.\nOptions are Static or Dynamic" }, "idleTimeoutInMinutes": { "$ref": "#/definitions/cloudifyIntegerOrGetInput", "description": "Specifies the timeout (in minutes) for the TCP idle connection.\nThe value can be set between 4 and 30 minutes" }, "domainNameLabel": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The concatenation of the domain name label and the regionalized\nDNS zone make up the fully qualified domain name associated\nwith the public IP address." }, "reverseFqdn": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "A fully qualified domain name that resolves to this\npublic IP address." } }, "required": ["publicIPAllocationMethod"] }, "cloudifyDatatypesAzureComputeAvailabilitySetConfig": { "type": "object", "description": "See https://msdn.microsoft.com/en-us/library/mt163607.aspx", "properties": { "platformUpdateDomainCount": { "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "platformFaultDomainCount": { "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "sku": { "description": "dict to represent sku [for now we only provide name]", "type": "object" } } }, "cloudifyDatatypesAzureComputeVirtualMachineConfig": { "type": "object", "description": "https://msdn.microsoft.com/en-us/library/azure/mt163591.aspx", "properties": { "hardwareProfile": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "storageProfile": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "osProfile": { "type": "object" }, "spot_instance": { "$ref": "#/definitions/cloudifyDatatypesAzureComputeVirtualMachineSpotConfig" } } }, "cloudifyDatatypesAzureComputeVirtualMachineSpotConfig": { "type": "object", "description": "check the parameters from this link : https://www.shorturl.at/wHTU2", "properties": { "is_spot_instance": { "description": "set true if you want to consider spot instance params", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "priority": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Possible values include: 'Regular', 'Low', 'Spot'", "default": "Spot" }, "eviction_policy": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "the only supported value is 'Deallocate'", "default": "Deallocate" }, "billing_profile": { "type": "object" } } }, "cloudifyDatatypesAzureNetworkLoadBalancerProbeConfig": { "type": "object", "description": "See https://msdn.microsoft.com/en-us/library/mt163574.aspx", "properties": { "protocol": { "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "Tcp" }, "port": { "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "requestPath": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "intervalInSeconds": { "$ref": "#/definitions/cloudifyIntegerOrGetInput", "default": 5 }, "numberOfProbes": { "$ref": "#/definitions/cloudifyIntegerOrGetInput", "default": 16 } }, "required": ["port", "intervalInSeconds", "numberOfProbes"] }, "cloudifyDatatypesAzureNetworkLoadBalancerIncomingNATRuleConfig": { "type": "object", "description": "See https://msdn.microsoft.com/en-us/library/mt163574.aspx", "properties": { "protocol": { "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "Tcp" }, "frontendPort": { "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "backendPort": { "$ref": "#/definitions/cloudifyIntegerOrGetInput" } }, "required": ["protocol", "frontendPort", "backendPort"] }, "cloudifyDatatypesAzureNetworkLoadBalancerRuleConfig": { "type": "object", "description": "See https://msdn.microsoft.com/en-us/library/mt163574.aspx", "properties": { "protocol": { "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "Tcp" }, "frontendPort": { "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "backendPort": { "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "enableFloatingIP": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "idleTimeoutInMinutes": { "$ref": "#/definitions/cloudifyIntegerOrGetInput", "default": 5 }, "loadDistribution": { "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "Default" } }, "required": ["protocol", "frontendPort", "backendPort"] }, "cloudifyDatatypesAzureComputeManagedClusterConfig": { "type": "object", "description": "See https://docs.microsoft.com/en-us/rest/api/aks/managedclusters", "properties": { "location": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "tags": { "description": "A dict containing resource tags", "type": "object" }, "kubernetes_version": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "dns_prefix": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "agent_pool_profiles": { "description": "An array to pass an array of dict for agent profile", "type": "array", "items": { "anyOf": [ { "type": "string" }, { "type": "object", "properties": { "name": { "type": "object" }, "count": { "type": "number" }, "vmSize": { "type": "string" }, "osType": { "type": "string" }, "availabilityZones": { "type": "array", "items": { "type": "string" } }, "enableNodePublicIP": { "type": "boolean" } } } ] } }, "linux_profile": { "description": "A dict to define linux profile with user name and public keys", "type": "object" }, "network_profile": { "description": "A dict to define network profile loadbalancer,outbound,IPs", "type": "object" }, "windows_profile": { "description": "A dict to define windows profile with user name and password", "type": "object" }, "service_principal_profile": { "description": "A dict to define service service_principal_profile [client_id, secret]", "type": "object" }, "addon_profiles": { "description": "A dict to define addons to the managed cluster", "type": "object" }, "enable_rbac": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": true } } }, "cloudifyDatatypesAzureStorageFileShareConfig": { "type": "object", "properties": { "metadata": { "description": "Metadata (dict) for the File Share", "type": "object" }, "quota": { "description": "Quote, in GiB, for the maximum size of the file share", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "fail_on_exist": { "description": "If true, causes the operation to raise a NonRecoverableError if\nthe file share already exists. If false, issues a warning and\ncontinues execution.", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false } } }, "cloudifyDatatypesAzureNetworkLoadBalancerConfig": { "type": "object", "description": "See https://msdn.microsoft.com/en-us/library/mt163574.aspx", "properties": { "frontendIPConfigurations": { "type": "array", "items": { "type": "string" } }, "backendAddressPools": { "type": "array", "items": { "type": "string" } }, "loadBalancingRules": { "type": "array", "items": { "type": "string" } }, "probes": { "type": "array", "items": { "type": "string" } }, "inboundNatRules": { "type": "array", "items": { "type": "string" } } } }, "cloudifyDatatypesAzureNetworkRouteConfig": { "type": "object", "description": "See https://msdn.microsoft.com/en-us/library/mt459110.aspx", "properties": { "addressPrefix": { "type": "string" }, "nextHopType": { "type": "string" }, "nextHopIpAddress": { "type": "string" } }, "required": ["nextHopType", "addressPrefix"] }, "cloudifyDatatypesAzureNetworkNetworkInterfaceCardConfig": { "type": "object", "description": "See https://msdn.microsoft.com/en-us/library/mt163668.aspx", "properties": { "networkSecurityGroups": { "type": "array", "items": { "type": "string" } }, "ipConfigurations": { "type": "array", "items": { "type": "string" } }, "dnsSettings": { "type": "array", "items": { "type": "string" } } } }, "nodeTypeCloudifyAzureNodesResourceGroupProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Resources API Version", "default": "2017-05-10" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource. Resource group name must be no longer than\n80 characters long. It can contain only alphanumeric characters,\ndash, underscore, opening parenthesis, closing parenthesis,\nand period. The name cannot end with a period." }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": "false" }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } } }, "nodeTypeCloudifyAzureNodesResourceGroupInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": ["azure.cloudify_azure.resources.resourcegroup.create"] }, "delete": { "type": "string", "enum": ["azure.cloudify_azure.resources.resourcegroup.delete"] } } } } }, "nodeTypeCloudifyAzureNodesStorageStorageAccountProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Storage API Version", "default": "2015-06-15" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource. Storage account name must be between\n3 and 24 characters in length and use numbers and lower-case\nletters only." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "sku": { "description": "A Storage account SKU if needed.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureStorageStorageAccountConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": "false" }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This propertynwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["resource_config"] }, "nodeTypeCloudifyAzureNodesStorageStorageAccountInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": [ "azure.cloudify_azure.resources.storage.storageaccount.create" ] } }, "delete": { "type": "string", "enum": [ "azure.cloudify_azure.resources.storage.storageaccount.delete" ] } } } }, "nodeTypeCloudifyAzureNodesStorageDataDiskProperties": { "type": "object", "properties": { "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource (include any extension, such as .vhd).\nCan be up to 80 characters in length and\ncontain lowercase letters, numbers, \".\", and \"_\". Must start\nwith a number or lowercase letter and cannot end with\neither \"_\" or \".\"" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureStorageDataDiskConfig" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["use_external_resource"] }, "nodeTypeCloudifyAzureNodesStorageDataDisktInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": [ "azure.cloudify_azure.resources.storage.disk.create_data_disk" ] }, "delete": { "type": "string", "enum": [ "azure.cloudify_azure.resources.storage.disk.delete_data_disk" ] } } } } }, "nodeTypeCloudifyAzureNodesStorageFileShareProperties": { "type": "object", "properties": { "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource. Can be up to 63 characters in length and\ncontain lowercase letters, numbers, and dashes. Must start\nwith a number or lowercase letter and cannot contain\ntwo consecutive dashes." }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureStorageFileShareConfig" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["use_external_resource"] }, "nodeTypeCloudifyAzureNodesStorageFileShareInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "create": { "type": "string", "enum": [ "azure.cloudify_azure.resources.storage.file.create_file_share" ] } } } }, "nodeTypeCloudifyAzureNodesNetworkVirtualNetworkProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Network API Version", "default": "2016-09-01" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureNetworkVirtualNetworkConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": "false" }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["use_external_resource"] }, "nodeTypeCloudifyAzureNodesNetworkVirtualNetworkInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.virtualnetwork.create" ] }, "delete": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.virtualnetwork.delete" ] } } } } }, "nodeTypeCloudifyAzureNodesNetworkNetworkSecurityGroupProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Network API Version", "default": "2016-09-01" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureNetworkNetworkSecurityGroupConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["use_external_resource"] }, "nodeTypeCloudifyAzureNodesNetworkNetworkSecurityGroupInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.networksecuritygroup.create" ] }, "delete": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.networksecuritygroup.delete" ] } } } } }, "nodeTypeCloudifyAzureNodesNetworkNetworkSecurityRuleProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Network API Version", "default": "2016-09-01" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "network_security_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Network Security Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Network Security Groupnode)" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureNetworkNetworkSecurityRuleConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["use_external_resource"] }, "nodeTypeCloudifyAzureNodesNetworkNetworkSecurityRuleInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.networksecurityrule.create" ] }, "delete": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.networksecurityrule.delete" ] } } } } }, "nodeTypeCloudifyAzureNodesNetworkSubnetProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Network API Version", "default": "2016-09-01" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "virtual_network_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Virtual Network that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Virtual Network node)" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureNetworkSubnetConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["use_external_resource"] }, "nodeTypeCloudifyAzureNodesNetworkSubnetInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "create": { "type": "string", "enum": ["azure.cloudify_azure.resources.network.subnet.create"] }, "delete": { "type": "string", "enum": ["azure.cloudify_azure.resources.network.subnet.delete"] } } } }, "nodeTypeCloudifyAzureNodesNetworkRouteTableProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Network API Version", "default": "2016-09-01" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "location:": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureNetworkRouteTableConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["use_external_resource"] }, "nodeTypeCloudifyAzureNodesNetworkRouteTableInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.routetable.create" ] }, "delete": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.routetable.delete" ] } } } } }, "nodeTypeCloudifyAzureNodesNetworkRouteProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Network API Version", "default": "2016-09-01" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "route_table_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Network Security Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Virtual Network node)" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureNetworkRouteConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["use_external_resource"] }, "nodeTypeCloudifyAzureNodesNetworkRouteInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": ["azure.cloudify_azure.resources.network.route.create"] }, "delete": { "type": "string", "enum": ["azure.cloudify_azure.resources.network.route.delete"] } } } } }, "nodeTypeCloudifyAzureNodesNetworkNetworkInterfaceCardProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Network API Version", "default": "2016-09-01" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "primary": { "description": "When using multiple Network Interfaces, a primary must be set", "default": false }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureNetworkNetworkInterfaceCardConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } } }, "nodeTypeCloudifyAzureNodesNetworkNetworkInterfaceCardInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.networkinterfacecard.create" ] }, "configure": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.networkinterfacecard.configure" ] }, "start": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.networkinterfacecard.start" ] }, "delete": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.networkinterfacecard.delete" ] } } } } }, "nodeTypeCloudifyAzureNodesNetworkIPConfigurationProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Network API Version", "default": "2016-09-01" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureNetworkIPConfigurationConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["resource_config"] }, "nodeTypeCloudifyAzureNodesNetworkPublicIPAddressProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Network API Version", "default": "2016-09-01" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureNetworkPublicIPAddressConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["use_external_resource"] }, "nodeTypeCloudifyAzureNodesNetworkPublicIPAddressInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.publicipaddress.create" ] }, "start": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.publicipaddress.start" ] }, "delete": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.publicipaddress.delete" ] } } } } }, "nodeTypeCloudifyAzureNodesComputeAvailabilitySetProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Compute API Version", "default": "2016-03-30" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureComputeAvailabilitySetConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["resource_config", "use_external_resource"] }, "nodeTypeCloudifyAzureNodesComputeAvailabilitySetInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": [ "azure.cloudify_azure.resources.compute.availabilityset.create" ] }, "delete": { "type": "string", "enum": [ "azure.cloudify_azure.resources.compute.availabilityset.delete" ] } } } } }, "nodeTypeCloudifyAzureNodesComputeVirtualMachineProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Compute API Version", "default": "2016-03-30" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "use_public_ip": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "Tells the deployment to use the public IP (if available) of the resource\nfor Cloudify Agent connections" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "plan": { "description": "Specifies information about the marketplace image used to create the virtual\nmachine. This element is only used for marketplace images.", "type": "object" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureComputeVirtualMachineConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "ip": { "description": "Property specifying the IP address of the resource to\nuse for the agent installer.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "os_family": { "description": "Property specifying what type of operating system family\nthis compute node will run.", "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "linux" }, "agent_config": { "$ref": "#/definitions/cloudifyDataTypesAgentConfig", "type": "object" }, "storage_endpoint": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "This is the suffix for the storage endpoint. Supported values are core.windows.net or local.azurestack.external.", "default": "core.windows.net" } }, "required": ["use_external_resource", "resource_config"] }, "nodeTypeCloudifyAzureNodesComputeVirtualMachineInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "configure": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "azure.cloudify_azure.resources.compute.virtualmachine.configure" ] }, "inputs": { "type": "object", "properties": { "command_to_execute": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "file_uris": { "type": "array", "items": { "type": "string" } } } } } } } } } }, "nodeTypeCloudifyAzureNodesComputeWindowsVirtualMachineProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeCloudifyAzureNodesComputeWindowsVirtualMachineProperties" }, { "properties": { "os_family": { "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "windows" }, "agent_config": { "type": "object" } } } ] }, "nodeTypeCloudifyAzureNodesComputeWindowsVirtualMachineInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "configure": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "azure.cloudify_azure.resources.compute.virtualmachine.configure" ] }, "inputs": { "type": "object", "properties": { "command_to_execute": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "file_uris": { "type": "array", "items": { "type": "string" } } } } } } } } } }, "nodeTypeCloudifyAzureNodesComputeVirtualMachineExtensionProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Compute API Version", "default": "2016-03-30" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "virtual_machine_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Virtual Machine that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Virtual Machine node)" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["use_external_resource"] }, "nodeTypeCloudifyAzureNodesComputeVirtualMachineExtensionInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create:": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "azure.cloudify_azure.resources.compute.virtualmachineextension.create" ] }, "inputs": { "type": "object", "properties": { "resource_config": { "type": "object" } } } } }, "delete": { "type": "string", "enum": [ "azure.cloudify_azure.resources.compute.virtualmachineextension.delete" ] } } } } }, "nodeTypeCloudifyAzureNodesNetworkLoadBalancerProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Network API Version", "default": "2016-09-01" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureNetworkLoadBalancerConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["use_external_resource"] }, "nodeTypeCloudifyAzureNodesNetworkLoadBalancerInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.loadbalancer.create" ] }, "configure": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.loadbalancer.configure" ] }, "delete": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.loadbalancer.delete" ] } } } } }, "nodeTypeCloudifyAzureNodesNetworkLoadBalancerBackendAddressPoolProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Network API Version", "default": "2016-09-01" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "load_balancer_name": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["use_external_resource"] }, "nodeTypeCloudifyAzureNodesNetworkLoadBalancerBackendAddressPoolInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.loadbalancer.create_backend_pool" ] }, "delete": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.loadbalancer.delete_backend_pool" ] } } } } }, "nodeTypeCloudifyAzureNodesNetworkLoadBalancerProbeProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Network API Version", "default": "2016-09-01" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "load_balancer_name": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureNetworkLoadBalancerProbeConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["use_external_resource"] }, "nodeTypeCloudifyAzureNodesNetworkLoadBalancerProbeInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.loadbalancer.create_probe" ] }, "delete": { "type": "object", "enum": [ "azure.cloudify_azure.resources.network.loadbalancer.delete_probe" ] } } } } }, "nodeTypeCloudifyAzureNodesNetworkLoadBalancerIncomingNATRuleProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Network API Version", "default": "2016-09-01" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "load_balancer_name": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureNetworkLoadBalancerIncomingNATRuleConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["use_external_resource"] }, "nodeTypeCloudifyAzureNodesNetworkLoadBalancerIncomingNATRuleInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.loadbalancer.create_incoming_nat_rule" ] }, "delete": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.loadbalancer.delete_incoming_nat_rule" ] } } } } }, "nodeTypeCloudifyAzureNodesNetworkLoadBalancerRuleProperties": { "type": "object", "properties": { "api_version": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Network API Version", "default": "2016-09-01" }, "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name for the resource." }, "resource_group_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the Resource Group that the existing resource belongs to\n(this is only useful when not using a relationship between a resource\nnode and a Resource Group node)" }, "load_balancer_name": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specifies the supported Azure location for the resource" }, "tags": { "description": "Specifies a dictionary of one or more name and value pairs that describe a tag", "type": "object" }, "resource_config": { "description": "A dictionary of values to pass as properties when creating the resource", "$ref": "#/definitions/cloudifyDatatypesAzureNetworkLoadBalancerRuleConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_after": { "description": "Overrides the Azure-specified \"retry_after\" response. This property\nwill set the number of seconds for each task retry interval (in the\ncase of iteratively checking the status of an asynchronous operation)", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["use_external_resource"] }, "nodeTypeCloudifyAzureNodesNetworkLoadBalancerRuleInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.loadbalancer.create_rule" ] }, "delete": { "type": "string", "enum": [ "azure.cloudify_azure.resources.network.loadbalancer.delete_rule" ] } } } } }, "nodeTypeCloudifyAzureDeploymentProperties": { "type": "object", "properties": { "name": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "location": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "template_file": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Path or URL to template file. Ignored if `template` is specified." }, "template": { "description": "Deployment template. Can be either a string (which will be parsed as\nJSON) or a dict (which will be passed as-is to the Azure SDK).", "anyOf": [ { "$ref": "#/definitions/cloudifyStringOrGetInput" }, { "type": "object" } ] }, "params": { "description": "Deployment params", "type": "object" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false } }, "required": ["name", "location", "use_external_resource"] }, "nodeTypeCloudifyAzureDeploymentInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "string", "enum": ["azure.cloudify_azure.resources.deployment.create"] }, "delete": { "type": "string", "enum": ["azure.cloudify_azure.resources.deployment.delete"] } } } } }, "nodeTypeCloudifyAzureNodesComputeContainerServiceProperties": { "type": "object", "properties": { "name": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "resource_group": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "container_service_config": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Container service config details" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["name", "resource_group"] }, "nodeTypeCloudifyAzureNodesComputeContainerServiceInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "azure.cloudify_azure.resources.compute.container_service.create" ] }, "inputs": { "name": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "resource_group": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "container_service_config": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "azure_config": { "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } } } }, "delete": { "type": "string", "properties": { "implementation": { "type": "string", "enum": [ "azure.cloudify_azure.resources.compute.container_service.delete" ] } } } } } } }, "nodeTypeCloudifyAzureNodesPlanProperties": { "type": "object", "properties": { "name": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "resource_group": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "sku": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "SKU details, including location, name, capacity and tier" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource", "type": "boolean", "default": false } }, "required": ["name", "resource_group", "use_external_resource"] }, "nodeTypeCloudifyAzureNodesPlanInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "azure.cloudify_azure.resources.app_service.plan.create" ] }, "inputs": { "type": "object", "properties": { "name": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "resource_group": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "sku": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "azure_config": { "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } } } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "azure.cloudify_azure.resources.app_service.plan.delete" ] } } } } } } }, "nodeTypeCloudifyAzureNodesWebAppProperties": { "type": "object", "properties": { "name": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "resource_group": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "app_config": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "App config details, including location and plan" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["name", "resource_group"] }, "nodeTypeCloudifyAzureNodesWebAppInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "azure.cloudify_azure.resources.app_service.webapp.create" ] }, "inputs": { "name": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "resource_group": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "app_config": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "azure_config": { "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "azure.cloudify_azure.resources.app_service.webapp.delete" ] } } } } } } }, "nodeTypeCloudifyAzureNodesPublishingUserProperties": { "type": "object", "properties": { "user_details": { "description": "User details including location, name, kind, user_name,...", "type": "object" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": ["user_details"] }, "nodeTypeCloudifyAzureNodesPublishingUserInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "azure.cloudify_azure.resources.app_service.publishing_user.set_user" ] }, "inputs": { "type": "object", "properties": { "user_details": { "type": "object" }, "azure_config": { "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } } } } } } } } }, "nodeTypeCloudifyAzureNodesComputeManagedClusterProperties": { "type": "object", "properties": { "resource_group": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "cluster_name": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "resource_config": { "$ref": "#/definitions/cloudifyDatatypesAzureComputeManagedClusterConfig", "description": "Managed Cluster config details, including location, profiles" }, "store_kube_config_in_runtime": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": true, "description": "it will store the kubernetes configuration into a runtime property ['kubeconf'] to\nuse later to interact with the cluster" }, "azure_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" }, "client_config": { "description": "A dictionary of values to pass to authenticate with the Azure API", "$ref": "#/definitions/cloudifyDatatypesAzureConfig" } }, "required": [ "resource_group", "cluster_name", "resource_config", "store_kube_config_in_runtime" ] }, "nodeTypeCloudifyAzureNodesComputeManagedClusterInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "azure.cloudify_azure.resources.compute.managed_cluster.create" ] }, "inputs": { "type": "object", "properties": { "resource_group": { "type": "string", "default": { "get_property": ["SELF", "resource_group"] } }, "cluster_name": { "type": "string", "default": { "get_property": ["SELF", "cluster_name"] } }, "resource_config": { "$ref": "#/definitions/cloudifyDatatypesAzureComputeManagedClusterConfig", "default": { "get_property": ["SELF", "resource_config"] } }, "azure_config": { "$ref": "#/definitions/cloudifyDatatypesAzureConfig", "default": { "get_property": ["SELF", "azure_config"] } }, "client_config": { "$ref": "#/definitions/cloudifyDatatypesAzureConfig", "default": { "get_property": ["SELF", "client_config"] } } } } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "azure.cloudify_azure.resources.compute.managed_cluster.delete" ] } } } } } } }, "cloudifyDatatypesBlueprint": { "type": "object", "properties": { "external_resource": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "Use external resource.", "default": false }, "id": { "description": "This is the blueprint that the deployment node is a proxy to." }, "main_file_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The application blueprint filename. If the blueprint consists many\nimported files this is the main blueprint.", "default": "blueprint.yaml" }, "blueprint_archive": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The URL of a .zip to upload to the manager.(Can be skipped if external_resource == True)" } } }, "cloudifyDatatypesDeployment": { "type": "object", "properties": { "external_resource": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "Use external resource.", "default": false }, "id": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "This is the deployment that the node is a proxy to." }, "inputs": { "type": "object", "description": "The inputs to the deployment." }, "outputs": { "type": "object", "description": "A dictionary of \"{ key: value, key: value }\".\nGet \"key\" the deployment.\nSet \"value\" runtime property to the value of the output." }, "all_outputs": { "description": "Ignored if \"outputs\" is specified.\nOtherwise, if true (the default), then all outputs from the remote\ndeployment are exposed. If false, then no output is exposed.", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": true }, "logs": { "description": "Logs redirect settings, by default {redirect: true}", "type": "object" } } }, "cloudifyDatatypesDeploymentProxy": { "type": "object", "properties": { "blueprint": { "$ref": "#/definitions/cloudifyDatatypesBlueprint" }, "deployment": { "$ref": "#/definitions/cloudifyDatatypesDeployment" }, "executions_start_args": { "type": "object", "description": "Optional params for executions" }, "reexecute": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false, "description": "Reexecute workflows, on external deployment" } }, "required": ["blueprint", "deployment"] }, "cloudifyDatatypesNode": { "type": "object", "properties": { "id": { "$ref": "#/definitions/cloudifyStringOrGetInput" } } }, "cloudifyDatatypesNodeInstance": { "type": "object", "properties": { "node": { "$ref": "#/definitions/cloudifyDatatypesNode" }, "id": { "$ref": "#/definitions/cloudifyStringOrGetInput" } } }, "cloudifyDatatypesNodeInstanceProxy": { "type": "object", "properties": { "blueprint": { "$ref": "#/definitions/cloudifyDatatypesBlueprint" }, "deployment": { "$ref": "#/definitions/cloudifyDatatypesDeployment" }, "executions_start_args": { "type": "object", "description": "Optional params for executions" }, "reexecute": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false, "description": "Reexecute workflows, on external deployment" }, "node_instance": { "$ref": "#/definitions/cloudifyDatatypesNodeInstance" } }, "required": ["blueprint", "deployment"] }, "cloudifyDatatypesKey": { "type": "object", "properties": { "private_key_path": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "public_key_path": { "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "~/.ssh/id_rsa.pub" }, "key_name": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "algorithm": { "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "RSA" }, "bits": { "$ref": "#/definitions/cloudifyIntegerOrGetInput", "default": 2048 }, "comment": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "passphrase": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "openssh_format": { "$ref": "#/definitions/cloudifyBooleanOrGetInput" }, "unvalidated": { "description": "Unvalidated parameters." } } }, "cloudifyDatatypesTerminalAuth": { "type": "object", "properties": { "user": { "description": "The login credentials for ssh server.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "password": { "description": "optional, ssh password", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "ip": { "description": "optional, device ip", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "key_content": { "description": "optional, ssh user key", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "port": { "description": "optional, ssh port", "default": 22, "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "store_logs": { "description": "optional, save communication logs", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "promt_check": { "description": "optional, list of prompts accepted from device, default is \"#/$\"", "type": "array", "items": { "type": "string" } }, "warnings": { "description": "optional, list of possible warnings without new line", "type": "array", "items": { "type": "string" } }, "errors": { "description": "optional, list of possible errors without new line", "type": "array", "items": { "type": "string" } }, "criticals": { "description": "optional, list of possible criticals without new line", "type": "array", "items": { "type": "string" } }, "exit_command": { "description": "optional, command for close connection, default 'exit'", "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "exit" }, "smart_device": { "description": "optional, use shell extension", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false } } }, "cloudifyDatatypesFile": { "type": "object", "properties": { "resource_path": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The path relative to the blueprint where the file is stored.\nCurrently this must be packaged in the blueprint. An external URI is\nnot valid." }, "file_path": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The path on the machine where the file should be saved." }, "owner": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The owner string, such as \"centos:wheel\"" }, "mode": { "$ref": "#/definitions/cloudifyIntegerOrGetInput", "description": "The file permissions, such as 777. Must be provided as an integer.\n\"0777\" and 0777 are not valid. Only 777." }, "template_variables": { "description": "Variables to render Jinja templates.", "type": "object" }, "use_sudo": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "Whether or not to use sudo to move, rename, delete, chown, chmod,\nthe file.", "default": false }, "allow_failure": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "If the download fails, log the error and continue.", "default": false } }, "required": ["resource_path", "file_path", "owner", "mode"] }, "cloudifyDatatypesFtpAuth": { "type": "object", "properties": { "user": { "description": "The login credentials for ftp server.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "password": { "description": "optional, ftp password", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "ip": { "description": "optional, device ip", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "port": { "description": "optional, ftp port", "$ref": "#/definitions/cloudifyIntegerOrGetInput", "default": 21 }, "ignore_host": { "description": "optional, ignore host in ftp response", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "tls": { "description": "optional, use tls connection to ftp", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false } } }, "nodeTypeCloudifyNodesDeploymentProxyProperties": { "type": "object", "properties": { "resource_config": { "$ref": "#/definitions/cloudifyDatatypesDeploymentProxy" }, "client": { "description": "Client configuration, if empty will be reused manager client:\n host: Host of Cloudify's management machine.\n port: Port of REST API service on management machine.\n protocol: Protocol of REST API service on management machine,\n defaults to http.\n api_version: version of REST API service on management machine.\n headers: Headers to be added to request.\n query_params: Query parameters to be added to the request.\n cert: Path to a copy of the server's self-signed certificate.\n trust_all: if `False`, the server's certificate\n (self-signed or not) will be verified.\n username: Cloudify User username.\n password: Cloudify User password.\n token: Cloudify User token.\n tenant: Cloudify Tenant name.", "type": "object", "properties": { "host": { "type": "string", "default": "127.0.0.1" }, "username": { "type": "string", "default": "admin" }, "password": { "type": "string", "default": "admin" }, "tenant": { "type": "string", "default": "default_tenant" } } }, "plugins": { "description": "Optional, list of plugins for upload.\n wagon_path: Url for plugin wagon file.\n plugin_yaml_path: Url for plugin yaml file.", "type": "array", "items": { "type": "string" } }, "secrets": { "description": "Optional, dictionary of secrets for set before run deployments.", "type": "object" } } }, "nodeTypeCloudifyNodesDeploymentProxyInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "cfy_util.cloudify_deployment_proxy.tasks.upload_blueprint" ] } } }, "configure": { "type": "object", "properties": { "implementation": { "type": "object", "enum": [ "cfy_util.cloudify_deployment_proxy.tasks.create_deployment" ] } } }, "start": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "cfy_util.cloudify_deployment_proxy.tasks.execute_start" ] }, "inputs": { "type": "object", "properties": { "workflow_id": { "type": "string", "default": "install" }, "timeout": { "type": "integer", "description": "How long (in seconds) to wait for execution to finish before timing out", "default": 1800 }, "interval": { "type": "integer", "description": "Polling interval (seconds)", "default": 10 } } } } }, "stop": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "cfy_util.cloudify_deployment_proxy.tasks.execute_start" ] }, "inputs": { "type": "object", "properties": { "workflow_id": { "type": "string", "default": "uninstall" }, "resource_config": { "$ref": "#/definitions/cloudifyDatatypesDeploymentProxy" } } } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "cfy_util.cloudify_deployment_proxy.tasks.delete_deployment" ] } } } } } } }, "nodeTypeCloudifyNodesNodeInstanceProxyProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeCloudifyNodesDeploymentProxyProperties" }, { "properties": { "resource_config": { "$ref": "#/definitions/cloudifyDatatypesNodeInstanceProxy" } } } ] }, "nodeTypeCloudifyNodesCloudInitCloudConfigProperties": { "type": "object", "properties": { "header": { "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "#cloud-config" }, "encode_base64": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": "false" }, "resource_config": { "type": "object" } } }, "nodeTypeCloudifyNodesCloudInitCloudConfigInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["cloudinit.cloudify_cloudinit.tasks.update"] } } }, "configure": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["cloudinit.cloudify_cloudinit.tasks.update"] } } }, "start": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["cloudinit.cloudify_cloudinit.tasks.update"] } } }, "stop": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["cloudinit.cloudify_cloudinit.tasks.update"] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["cloudinit.cloudify_cloudinit.tasks.delete"] } } } } } } }, "nodeTypeCloudifyNodesRSAKeyProperties": { "type": "object", "properties": { "use_secret_store": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": true }, "use_secrets_if_exist": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "this flag is able to be true only if use_secret_store is true\nif this property is false the secret for the key value will be\ncreated, if true then the existing secrets of an existing node\nwith same key_name will be used as a key, if this property is true\nand the secrets does not exist they will be created.", "default": false }, "key_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Deprecated. Use resource_config.key_name." }, "resource_config": { "description": "A dictionary of values to pass to configure the key.", "$ref": "#/definitions/cloudifyDatatypesKey" } } }, "nodeTypeCloudifyNodesRSAKeyInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["keys.cloudify_ssh_key.operations.create"] }, "inputs": { "store_public_key_material": { "description": "Allow the public key material to be stored as a runtime\nproperty. Recommended.", "type": "boolean", "default": true }, "store_private_key_material": { "description": "Allow the private key material to be stored as a runtime\nproperty. Not recommended for manager deployments.", "type": "boolean", "default": false } } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["keys.cloudify_ssh_key.operations.delete"] } } } } } } }, "nodeTypeCloudifyTerminalRawProperties": { "type": "object", "properties": { "terminal_auth": { "description": "terminal credentials, like example:\n user: <user name>\n password: <user password>\n ip: <host name>", "$ref": "#/definitions/cloudifyDatatypesTerminalAuth" } } }, "nodeTypeCloudifyTerminalRawInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["terminal.cloudify_terminal.tasks.run"] }, "inputs": { "type": "object" } } }, "configure": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["terminal.cloudify_terminal.tasks.run"] }, "inputs": { "type": "object" } } }, "start": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["terminal.cloudify_terminal.tasks.run"] }, "inputs": { "type": "object" } } }, "stop": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["terminal.cloudify_terminal.tasks.run"] }, "inputs": { "type": "object" } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["terminal.cloudify_terminal.tasks.run"] }, "inputs": { "type": "object" } } } } } } }, "nodeTypeCloudifyNodesFileProperties": { "type": "object", "properties": { "resource_config": { "$ref": "#/definitions/cloudifyDatatypesFile" } }, "required": ["resource_config"] }, "nodeTypeCloudifyNodesFileInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["cfy_files.cloudify_files.tasks.create"] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["cfy_files.cloudify_files.tasks.delete"] } } } } } } }, "nodeTypeCloudifyNodesFTPProperties": { "type": "object", "properties": { "resource_config": { "$ref": "#/definitions/cloudifyDatatypesFtpAuth" }, "raw_files": { "type": "object", "description": "list files from blueprint to upload" }, "files": { "type": "object", "description": "list files with content from blueprint to upload" } }, "required": ["resource_config"] }, "nodeTypeCloudifyNodesFTPInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["cfy_ftp.cloudify_ftp.tasks.create"] }, "inputs": { "type": "object", "properties": { "resource_config": { "$ref": "#/definitions/cloudifyDatatypesFtpAuth" }, "raw_files": { "type": "object", "description": "list files from blueprint to upload" }, "files": { "type": "object", "description": "list files with content from blueprint to upload" } } } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["cfy_ftp.cloudify_ftp.tasks.delete"] }, "inputs": { "resource_config": { "$ref": "#/definitions/cloudifyDatatypesFtpAuth" } } } } } } } }, "nodeTypeCloudifyRestRequestsProperties": { "type": "object", "properties": { "hosts": { "description": "list of hosts name or IP addresses of Rest Servers", "type": "array", "items": { "type": "string" } }, "host": { "description": "host name or IP addresses of Rest Servers\nif list of hosts is not needed single host can be provided by this\nproperty. NOTE: the 'hosts' property overwrite the 'host' property", "type": "array", "items": { "type": "string" } }, "port": { "description": "port number. When -1 default ports are used\n(80 for ssl = false and 443 for ssl = true)", "$ref": "#/definitions/cloudifyIntegerOrGetInput", "default": -1 }, "ssl": { "description": "http or https", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "verify": { "description": "A boolean which controls whether we verify the server's TLS\ncertificate. Supported such values:\n* `True`: default value, check certificates,\n* `False`: ignore server certificates,\n* `<file path>`: path to certificate on local system,\n* `<certificate content>`: certificate content.", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": true }, "cert": { "description": "Supported such values:\n* `None`: default value, ignore client certificates,\n* `<file path>`: path to certificate on local system,\n* `<certificate content>`: certificate content.", "$ref": "#/definitions/cloudifyStringOrGetInput", "default": null }, "timeout": { "description": "Timeout value for requests.", "$ref": "#/definitions/cloudifyIntegerOrGetInput", "default": null }, "proxies": { "description": "List of proxies.", "type": "object" }, "params": { "description": "Template parameters. Default is empty dictionary.", "type": "object" } } }, "restTemplateInputs": { "type": "object", "properties": { "params": { "description": "Template parameters. Default is empty dictionary. Merged\nwith params from node properties and has 'ctx' key for\ncurrent action context.", "type": "object" }, "template_file": { "description": "Template path in blueprint directory", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "save_path": { "description": "Save result to runtime properties key. Default is directly\nsave to runtime properties.", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "prerender": { "description": "Prerender template before run calls jinja render=>yaml parse.\nDefault is yaml parse=>jinja render.", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "remove_calls": { "description": "Remove calls list from results. Default: save calls in\nruntime properties.", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "force_rerun": { "description": "Rerun operation if on next operation rerun", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "retry_count": { "description": "Rerun count on warning on caught warnings", "$ref": "#/definitions/cloudifyIntegerOrGetInput", "default": 1 }, "retry_sleep": { "description": "Sleep between rerun", "$ref": "#/definitions/cloudifyIntegerOrGetInput", "default": 15 } } }, "nodeTypeCloudifyRestRequestsInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["rest.cloudify_rest.tasks.execute"] }, "inputs": { "$ref": "#/definitions/restTemplateInputs" } } }, "configure": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["rest.cloudify_rest.tasks.execute"] }, "inputs": { "$ref": "#/definitions/restTemplateInputs" } } }, "start": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["rest.cloudify_rest.tasks.execute"] }, "inputs": { "$ref": "#/definitions/restTemplateInputs" } } }, "stop": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["rest.cloudify_rest.tasks.execute"] }, "inputs": { "$ref": "#/definitions/restTemplateInputs" } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["rest.cloudify_rest.tasks.execute"] }, "inputs": { "$ref": "#/definitions/restTemplateInputs" } } } } } } }, "nodeTypeCloudifyRestBunchRequestsProperties": { "type": "object", "properties": { "hosts": { "description": "list of hosts name or IP addresses of Rest Servers", "type": "array", "items": { "type": "string" } }, "host": { "description": "host name or IP addresses of Rest Servers\nif list of hosts is not needed single host can be provided by this\nproperty. NOTE: the 'hosts' property overwrite the 'host' property", "type": "array", "items": { "type": "string" } }, "port": { "description": "port number. When -1 default ports are used\n(80 for ssl = false and 443 for ssl = true)", "$ref": "#/definitions/cloudifyIntegerOrGetInput", "default": -1 }, "ssl": { "description": "http or https", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "verify": { "description": "A boolean which controls whether we verify the server's TLS\ncertificate. Supported such values:\n* `True`: default value, check certificates,\n* `False`: ignore server certificates,\n* `<file path>`: path to certificate on local system,\n* `<certificate content>`: certificate content.", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": true }, "cert": { "description": "Supported such values:\n* `None`: default value, ignore client certificates,\n* `<file path>`: path to certificate on local system,\n* `<certificate content>`: certificate content.", "$ref": "#/definitions/cloudifyStringOrGetInput", "default": null }, "timeout": { "description": "Timeout value for requests.", "$ref": "#/definitions/cloudifyIntegerOrGetInput", "default": null }, "proxies": { "description": "List of proxies.", "type": "object" }, "params": { "description": "Template parameters. Default is empty dictionary.", "type": "object" } } }, "nodeTypeCloudifyRestBunchRequestsInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["rest.cloudify_rest.tasks.bunch_execute"] }, "inputs": { "type": "object", "properties": { "auth": { "type": "object" }, "templates": { "type": "object" } } } } }, "configure": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["rest.cloudify_rest.tasks.bunch_execute"] }, "inputs": { "type": "object", "properties": { "auth": { "type": "object" }, "templates": { "type": "object" } } } } }, "start": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["rest.cloudify_rest.tasks.bunch_execute"] }, "inputs": { "type": "object", "properties": { "auth": { "type": "object" }, "templates": { "type": "object" } } } } }, "stop": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["rest.cloudify_rest.tasks.bunch_execute"] }, "inputs": { "type": "object", "properties": { "auth": { "type": "object" }, "templates": { "type": "object" } } } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["rest.cloudify_rest.tasks.bunch_execute"] }, "inputs": { "type": "object", "properties": { "auth": { "type": "object" }, "templates": { "type": "object" } } } } } } } } }, "nodeTypeCloudifyNodesSecretsWriterProperties": { "type": "object", "properties": { "entries": { "type": "object" }, "do_not_delete": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "variant": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "separator": { "$ref": "#/definitions/cloudifyStringOrGetInput" } } }, "nodeTypeCloudifyNodesSecretsWriterInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["secrets.cloudify_secrets.tasks.create"] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["secrets.cloudify_secrets.tasks.delete"] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "update": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["secrets.cloudify_secrets.tasks.update"] } } } } } } }, "nodeTypeCloudifyNodesSecretsReaderProperties": { "type": "object", "properties": { "keys": { "type": "array", "items": { "type": "string" } }, "variant": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "separator": { "$ref": "#/definitions/cloudifyStringOrGetInput" } } }, "nodeTypeCloudifyNodesSecretsReaderInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["secrets.cloudify_secrets.tasks.read"] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "update": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["secrets.cloudify_secrets.tasks.read"] } } } } } } }, "cloudifyDataTypesAgentConfig": { "type": "object", "description": "Cloudify agent configuration schema.", "properties": { "install_method": { "description": "Specifies how (and if) the cloudify agent should be installed.\nValid values are:\n* none - No agent will be installed on the host.\n* remote - An agent will be installed using SSH on linux hosts and WinRM on windows hosts.\n* init_script - An agent will be installed via a script that will run on the host when it gets created.\n This method is only supported for specific IaaS plugins.\n* plugin - An agent will be installed via a plugin which will run a script on the host.\n This method is only supported for specific IaaS plugins.\n* provided - An agent is assumed to already be installed on the host image.\n That agent will be configured and started via a script that will run on the host when it gets created.\n This method is only supported for specific IaaS plugins.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "service_name": { "description": "Used to set the the cloudify agent service name.\n\nIf not set, the default value for the service name is:\n- Linux: 'cloudify-worker-<id>'\n- Windows: '<id>'\n\nwhere 'id' is the instance id of the compute node in which the agent is running.\n\nNote: the value in this field, takes precedence over the deprecated\n'cloudify.nodes.Compute.cloudify_agent.name'.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "network": { "description": "The name of the manager network to which the agent should be\nconnected. By default, the value will be `default` (which is the\nmanager's private IP, by default)", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "user": { "description": "For host agents, the agent will be installed for this user.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "key": { "description": "For host agents that are installed via SSH, this is the path to the private\nkey that will be used to connect to the host.\nIn most cases, this value will be derived automatically during bootstrap.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "password": { "description": "For host agents that are installed via SSH (on linux) and WinRM (on windows)\nthis property can be used to connect to the host.\nFor linux hosts, this property is optional in case the key property is properly configured\n(either explicitly or implicitly during bootstrap).\nFor windows hosts that are installed via WinRM, this property is also optional\nand depends on whether the password runtime property has been set by the relevant IaaS plugin,\nprior to the agent installation.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "port": { "description": "For host agents that are installed via SSH (on linux) and WinRM (on windows),\nthis is the port used to connect to the host.\nThe default values are 22 for linux hosts and 5985 for windows hosts.", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "process_management": { "description": "Process management specific configuration. (type: dictionary)", "type": "object" }, "min_workers": { "description": "Minimum number of agent workers. By default, the value will be 0.\nNote: For windows based agents, this property is ignored and min_workers is set to the value of max_workers.", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "max_workers": { "description": "Maximum number of agent workers. By default, the value will be 5.", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "heartbeat": { "description": "The interval of the AMQP heartbeats in seconds\nNote: the AMQP heartbeat is only used on Linux.", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "disable_requiretty": { "description": "For linux based agents, disables the requiretty setting in the sudoers file. By default, this value will be true.", "$ref": "#/definitions/cloudifyBooleanOrGetInput" }, "env": { "description": "Optional environment variables that the agent will be started with. (type: dictionary)" }, "extra": { "description": "Optional additional low level configuration details. (type: dictionary)", "type": "object" } }, "required": ["install_method"] }, "openstackExternalResource": { "type": "object", "properties": { "use_external_resource": { "$ref": "#/definitions/cloudifyIntegerOrGetInput", "description": "Indicate whether the resource exists or if Cloudify should create the resource, true if you are bringing an existing resource, false if you want cloudify to create it.", "default": false } } }, "openstackCreateIfMissing": { "type": "object", "properties": { "create_if_missing": { "$ref": "#/definitions/cloudifyIntegerOrGetInput", "description": "If use_external_resource is ``true`` and the resource is missing,create it instead of failing.", "default": false } } }, "openstackTypeClientConfig": { "type": "object", "properties": { "auth_url": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Your OpenStack Client Authorization URL." }, "username": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Your OpenStack username." }, "password": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Your OpenStack password." }, "project_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The name of your OpenStack project." }, "tenant_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The name of your OpenStack tenant." }, "region_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The region where you want this particular resource to be created." }, "user_domain_id": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The user domain id" }, "project_domain_id": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The Project domain id" }, "user_domain_name": { "description": "Domain name to operate on.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "project_domain_name": { "description": "Project domain name to operate on.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "logging": { "description": "Logging configuration.", "$ref": "#/definitions/openstackTypesLogging" }, "insecure": { "description": "If true, SSL validation is skipped.", "$ref": "#/definitions/cloudifyIntegerOrGetInput", "default": false }, "ca_cert": { "description": "Path to CA certificate to validate OpenStack's endpoint with.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "kwargs": { "description": "A dictionary of keys and values that is not validated\nbut will override other values in the client config.", "type": "object" } } }, "openstackTypesLogging": { "description": "For logging groups' configuration. Each level can be one of the following values:\ncritical/error/warning/info/debug/notset", "properties": { "openstack": { "description": "Default logging level for openstack component.", "$ref": "#/definitions/cloudifyStringOrGetInput" } } }, "openstackClientConfig": { "type": "object", "properties": { "client_config": { "description": "Your OpenStack client configuration.", "$ref": "#/definitions/openstackTypeClientConfig" } } }, "openstackDataTypeKwargs": { "type": "object", "properties": { "kwargs:": { "type": "object", "description": "A dictionary of keys and values that is not validated but will override other values in the resource config." } } }, "openstackDataTypeName": { "type": "object", "properties": { "name": { "description": "Resource name.", "$ref": "#/definitions/cloudifyStringOrGetInput" } } }, "openstackDataTypeId": { "type": "object", "properties": { "id": { "description": "Resource id", "$ref": "#/definitions/cloudifyStringOrGetInput" } } }, "openstackDataTypeDescription": { "type": "object", "properties": { "description": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Resource description." } } }, "openstackTypesNetwork": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "properties": { "admin_state_up": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "The administrative state of the network, which is up (true) or down (false).", "default": true } } } ] }, "openstackTypesSubnet": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "properties": { "enable_dhcp": { "description": "Indicates whether dhcp is enabled or disabled for the subnet. Default is true.", "$ref": "#/definitions/cloudifyBooleanOrGetInput" }, "network_id": { "description": "The ID of the network to which the subnet belongs.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "dns_nameservers": { "description": "List of dns name servers associated with the subnet. Default is an empty list.", "type": "array", "items": { "type": "string" } }, "allocation_pools": { "description": "Allocation pools with start and end IP addresses for this subnet. If allocation_pools are not specified, OpenStack Networking automatically allocates pools for covering all IP addresses in the CIDR, excluding the address reserved for the subnet gateway by default.", "type": "array", "items": { "type": "string" } }, "host_routes": { "description": "Additional routes for the subnet. A list of dictionaries with destination and nexthop parameters. Default value is an empty list.", "type": "array", "items": { "type": "string" } }, "ip_version": { "description": "The IP protocol version. Value is 4 or 6.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "gateway_ip": { "description": "Gateway IP of this subnet. If the value is null that implies no gateway is associated with the subnet. If the gateway_ip is not specified, OpenStack Networking allocates an address from the CIDR for the gateway for the subnet by default.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "cidr": { "description": "The CIDR of the subnet.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "prefixlen": { "description": "The prefix length to use for subnet allocation from a subnet pool. If not specified, the default_prefixlen value of the subnet pool will be used.", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "ipv6_address_mode": { "description": "The IPv6 address modes specifies mechanisms for assigning IP addresses. Value is slaac, dhcpv6-stateful, dhcpv6-stateless.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "ipv6_ra_mode": { "description": "The IPv6 router advertisement specifies whether the networking service should transmit ICMPv6 packets, for a subnet. Value is slaac, dhcpv6-stateful, dhcpv6-stateless.", "$ref": "#/definitions/cloudifyStringOrGetInput" } } } ] }, "openstackTypesPort": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "properties": { "allowed_address_pairs": { "description": "A set of zero or more allowed address pair objects each where address pair object contains an ip_address and mac_address. While the ip_address is required, the mac_address will be taken from the port if not specified. The value of ip_address can be an IP Address or a CIDR (if supported by the underlying extension plugin). A server connected to the port can send a packet with source address which matches one of the specified allowed address pairs.", "type": "array", "items": { "type": "string" } }, "device_id": { "description": "The ID of the device that uses this port. For example, a server instance or a logical router.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "device_owner": { "description": "The entity type that uses this port. For example, compute:nova (server instance), network:dhcp (DHCP agent) or network:router_interface (router interface).", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "fixed_ips": { "description": "list.\nThe IP addresses for the port. If you would like to assign multiple IP addresses for the port, specify multiple entries in this field. Each entry consists of IP address (ip_address) and the subnet ID from which the IP address is assigned (subnet_id).\n- If you specify both a subnet ID and an IP address, OpenStack Networking tries to allocate the IP address on that subnet to the port.\n- If you specify only a subnet ID, OpenStack Networking allocates an available IP from that subnet to the port.\n- If you specify only an IP address, OpenStack Networking tries to allocate the IP address if the address is a valid IP for any of the subnets on the specified network.", "type": "array", "items": { "type": "string" } }, "network_id": { "description": "The ID of the network to which the subnet belongs.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "security_groups": { "description": "list. The IDs of security groups applied to the port.", "type": "array", "items": { "type": "string" } } } } ] }, "openstackTypesRouter": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" } ] }, "openstackTypesFloatingIP": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "properties": { "floating_network_id": { "description": "The ID of the network associated with the floating IP.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "floating_network_name": { "description": "The Name of the network associated with the floating IP.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "fixed_ip_address": { "description": "The fixed IP address that is associated with the floating IP. If an internal port has multiple associated IP addresses, the service chooses the first IP address unless you explicitly define a fixed IP address in the fixed_ip_address parameter.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "floating_ip_address": { "description": "The floating IP address.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "port_id": { "description": "The ID of a port associated with the floating IP. To associate the floating IP with a fixed IP at creation time, you must specify the identifier of the internal port.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "subnet_id": { "description": "The subnet ID on which you want to create the floating IP.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "dns_domain": { "description": "A valid DNS domain.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "dns_name": { "description": "A valid DNS name.", "$ref": "#/definitions/cloudifyStringOrGetInput" } } } ] }, "openstackTypesSecurityGroup": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "$ref": "#/definitions/openstackDataTypeDescription" } ] }, "openstackTypesSecurityGroupRule": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "properties": { "remote_group_id": { "description": "The remote group UUID to associate with this security group rule. You can specify either the remote_group_id or remote_ip_prefix attribute in the request body.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "protocol": { "description": "The IP protocol of the security group rule.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "direction": { "description": "Ingress or egress, which is the direction in which the security group rule is applied.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "port_range_min": { "description": " The minimum port number in the range that is matched by the security group rule. If the protocol is TCP, UDP, DCCP, SCTP or UDP-Lite this value must be less than or equal to the port_range_max attribute value. If the protocol is ICMP, this value must be an ICMP type.", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "port_range_max": { "description": "The maximum port number in the range that is matched by the security group rule. If the protocol is TCP, UDP, DCCP, SCTP or UDP-Lite this value must be greater than or equal to the port_range_min attribute value. If the protocol is ICMP, this value must be an ICMP type.", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "security_group_id": { "description": "The security group ID to associate with this security group rule.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "remote_ip_prefix": { "description": "The remote IP prefix that is matched by this security group rule.", "$ref": "#/definitions/cloudifyStringOrGetInput" } } } ] }, "openstackTypesKeyPair": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "properties": { "public_key": { "description": "The public ssh key to import. If you omit this value,\na keypair is generated for you", "$ref": "#/definitions/cloudifyStringOrGetInput" } } } ] }, "openstackTypesHostAggregate": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "properties": { "availability_zone": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The name of the host aggregate." } } } ] }, "openstackTypesImage": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "properties": { "container_format": { "description": "Format of the image container.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "disk_format": { "description": "The format of the disk.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "tags": { "description": "List of tags for this image. Each tag is a string of at most 255 chars.\nThe maximum number of tags allowed on an image is set by the operator.", "type": "array", "items": { "type": "string" } } } } ] }, "openstackTypesFlavor": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "properties": { "ram": { "description": "The amount of RAM a flavor has, in MiB", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "disk": { "description": "The size of the root disk that will be created in GiB.\nIf 0 the root disk will be set to exactly the size of the image used\nto deploy the instance. However, in this case filter scheduler cannot\nselect the compute host based on the virtual image size.\nTherefore, 0 should only be used for volume booted instances or for testing purposes.", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "vcpus": { "description": "The number of virtual CPUs that will be allocated to the server.", "$ref": "#/definitions/cloudifyIntegerOrGetInput" } } } ] }, "openstackTypesUser": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "properties": { "default_project_id": { "description": "The ID of the default project for the user.\nA user's default project must not be a domain.\nSetting this attribute does not grant any actual authorization\non the project, and is merely provided for convenience.\nTherefore, the referenced project does not need to exist within the user domain. Since v3.1.\nIf the user does not have authorization to their default project,\nthe default project is ignored at token creation. Since v3.1.\nAdditionally, if your default project is not valid, a token is issued without an explicit scope of authorization", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "domain_id": { "description": "The ID of the domain of the user. If the domain ID is not provided\nin the request, the Identity service will attempt to pull the\ndomain ID from the token used in the request.Note that this requires the use of a domain-scoped token.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "enabled": { "description": "If the user is enabled, this value is true. If the user is disabled, this value is false", "$ref": "#/definitions/cloudifyBooleanOrGetInput" }, "password": { "description": "The password for the user.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "email": { "description": "The email for the user.", "$ref": "#/definitions/cloudifyStringOrGetInput" } } } ] }, "openstackTypesGroup": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "$ref": "#/definitions/openstackDataTypeDescription" }, { "properties": { "domain_id": { "description": "The ID of the domain of the group. If the domain ID is not provided\nin the request, the Identity service will attempt to pull the\ndomain ID from the token used in the request.Note that this requires the use of a domain-scoped token.", "$ref": "#/definitions/cloudifyStringOrGetInput" } } } ] }, "openstackTypesRole": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "$ref": "#/definitions/openstackDataTypeDescription" }, { "properties": { "domain_id": { "description": "The ID of the domain of the role. If the domain ID is not provided\nin the request, the Identity service will attempt to pull the\ndomain ID from the token used in the request.Note that this requires the use of a domain-scoped token.", "$ref": "#/definitions/cloudifyStringOrGetInput" } } } ] }, "openstackTypesProject": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "$ref": "#/definitions/openstackDataTypeDescription" }, { "properties": { "is_domain": { "description": "Indicates whether the project also acts as a domain.\nIf set to true, this project acts as both a project and domain.", "$ref": "#/definitions/cloudifyBooleanOrGetInput" }, "domain_id": { "description": "The ID of the domain for the project.\nFor projects acting as a domain, the domain_id must not be specified, it will be generated by the Identity service implementation.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "parent_id": { "description": "The ID of the parent of the project..", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "tags": { "description": "A list of simple strings assigned to a project. Tags can be used to classify projects into groups.", "type": "object", "items": { "type": "string" } } } } ] }, "openstackTypesVolume": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "$ref": "#/definitions/openstackDataTypeDescription" }, { "properties": { "project_id": { "description": "The UUID of the project in a multi-tenancy cloud.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "size": { "description": "The size of the volume, in gibibytes (GiB).", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "availability_zone": { "description": "The name of the availability zone.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "imageRef": { "description": "The UUID of the image from which you want to create the volume.\nRequired to create a bootable volume.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "snapshot_id": { "description": "To create a volume from an existing snapshot,\nspecify the UUID of the volume snapshot.\nThe volume is created in same availability zone and with same size as the snapshot.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "volume_type": { "description": "The volume type (either name or ID).\nTo create an environment with multiple-storage back ends, you\nmust specify a volume type. Block Storage volume back ends are\nspawned as children to cinder- volume, and they are keyed from a\nunique queue. They are named cinder- volume.HOST.BACKEND. For\nexample, cinder- volume.ubuntu.lvmdriver. When a volume is\ncreated, the scheduler chooses an appropriate back end to handle\nthe request based on the volume type. Default is None. For\ninformation about how to use volume types to create multiple-\nstorage back ends,", "$ref": "#/definitions/cloudifyStringOrGetInput" } } } ] }, "openstackTypesVolumeType": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "$ref": "#/definitions/openstackDataTypeDescription" }, { "properties": { "project_id": { "description": "The UUID of the project in a multi-tenancy cloud..", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "extra_specs": { "description": "A key and value pair that contains additional specifications\nthat are associated with the volume type.\nExamples include capabilities, capacity, compression,\nand so on, depending on the storage driver in use.", "type": "object" } } } ] }, "openstackTypesZoneType": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeDescription" }, { "properties": { "ttl": { "description": "TTL (Time to Live) for the zone.", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "email": { "description": "e-mail for the zone. Used in SOA records for the zone", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "type": { "description": "Type of zone. PRIMARY is controlled by Designate,\nSECONDARY zones are slaved from another DNS Server.\nDefaults to PRIMARY", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "masters": { "description": "Mandatory for secondary zones.\nThe servers to slave from to get DNS information", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "attributes": { "description": "Key:Value pairs of information about this zone,nand the pool the user would like to place the zone in.\nThis information can be used by the scheduler to placenzones on the correct pool.", "type": "object" } } } ] }, "openstackRecordSetType": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeDescription" }, { "properties": { "ttl": { "description": "TTL (Time to Live) for the recordset.", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "zone_id": { "description": "ID for the zone", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "type": { "description": "They RRTYPE of the recordset.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "records": { "description": "A list of data for this recordset.\nEach item will be a separate record in Designate\nThese items should conform to the DNS spec for\nthe record type - e.g. A records must be IPv4 addresses,\nCNAME records must be a hostname.", "type": "array", "items": { "type": "string" } } }, "required": ["zone_id", "records"] } ] }, "nodeTypeOpenstackNetworkBaseProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackExternalResource" }, { "$ref": "#/definitions/openstackCreateIfMissing" }, { "$ref": "#/definitions/openstackClientConfig" } ] }, "nodeTypeOpenstackNetworkProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeOpenstackNetworkBaseProperties" }, { "properties": { "resource_config": { "$ref": "#/definitions/openstackTypesNetwork", "description": "A dictionary that may contain these keys https://developer.openstack.org/api-ref/network/v2/#create-network." } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackNetworkInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.network.create" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.network.delete" ] } } } } }, "cloudify.interfaces.validation": { "type": "object", "properties": { "creation": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.network.creation_validation" ] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "update": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.network.update" ] }, "inputs": { "type": "object", "properties": { "args": { "type": "object" } } } } }, "list": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.network.list_networks" ] }, "inputs": { "type": "object", "properties": { "query": { "type": "object" } } } } } } } } }, "nodeTypeOpenstackSubnetProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeOpenstackNetworkBaseProperties" }, { "properties": { "resource_config": { "$ref": "#/definitions/openstackTypesSubnet", "description": "A dictionary that may contain these keys https://developer.openstack.org/api-ref/network/v2/#create-subnet. This is not a list of cloudify." } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackSubnetInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.subnet.create" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.subnet.delete" ] } } } } }, "cloudify.interfaces.validation": { "type": "object", "properties": { "creation": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.subnet.creation_validation" ] }, "inputs": { "type": "object", "properties": { "args": { "type": "object" } } } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "update": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.subnet.update" ] }, "inputs": { "type": "object", "properties": { "args": { "type": "object" } } } } }, "list": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.subnet.list_subnets" ] }, "inputs": { "type": "object", "properties": { "query": { "type": "object" } } } } } } } } }, "nodeTypeOpenstackPortProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackExternalResource" }, { "$ref": "#/definitions/openstackCreateIfMissing" }, { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "fixed_ip": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "may be used to request a specific fixed IP for the port.\nIf the IP is unavailable\n(either already taken or does not belong to a subnet the port is on)\nan error will be raised." }, "resource_config": { "$ref": "#/definitions/openstackTypesPort", "description": "A dictionary that may contain these keys https://developer.openstack.org/api-ref/network/v2/#create-port." } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackPortInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.port.create" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.port.delete" ] } } } } }, "cloudify.interfaces.validation": { "type": "object", "properties": { "creation": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.port.creation_validation" ] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "update": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.port.update" ] }, "inputs": { "type": "object", "properties": { "args": { "type": "object" } } } } }, "list": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.port.list_ports" ] }, "inputs": { "type": "object", "properties": { "query": { "type": "object" } } } } } } } } }, "nodeTypeOpenstackRouterProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackExternalResource" }, { "$ref": "#/definitions/openstackCreateIfMissing" }, { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "resource_config": { "$ref": "#/definitions/openstackTypesRouter", "description": "A dictionary that may contain these keys https://developer.openstack.org/api-ref/network/v2/#create-router." }, "external_network": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "An external network name or ID.\nIf given, the router will use this external network as a gateway." } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackRouterInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.router.create" ] } } }, "start": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.router.start" ] }, "inputs": { "type": "object", "properties": { "routes": { "type": "object" } } } } }, "stop": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.router.stop" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.router.delete" ] } } } } }, "cloudify.interfaces.validation": { "type": "object", "properties": { "creation": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.router.creation_validation" ] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "update": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.router.update" ] }, "inputs": { "type": "object", "properties": { "args": { "type": "object" } } } } }, "list": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.router.list_routers" ] }, "inputs": { "type": "object", "properties": { "query": { "type": "object" } } } } } } } } }, "nodeTypeOpenstackFloatingIPProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackExternalResource" }, { "$ref": "#/definitions/openstackCreateIfMissing" }, { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "allow_reallocation": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false, "description": "(Applicable only when use_external_resource is true)\nIf true, then allow using this floating IP even if it has already been allocated to\nanother instance. If false, and the floating IP is already allocated (that is, it is\nin 'ACTIVE' state), a recoverable error is raised." }, "resource_config": { "$ref": "#/definitions/openstackTypesFloatingIP", "description": "A dictionary that may contain these keys https://developer.openstack.org/api-ref/network/v2/#create-floating-ip." } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackFloatingIPInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.floating_ip.create" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.floating_ip.delete" ] } } } } }, "cloudify.interfaces.validation": { "type": "object", "properties": { "creation": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.floating_ip.creation_validation" ] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "update": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.floating_ip.update" ] }, "inputs": { "type": "object", "properties": { "args": { "type": "object" } } } } }, "list": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.floating_ip.list_floating_ips" ] }, "inputs": { "type": "object", "properties": { "query": { "type": "object" } } } } } } } } }, "nodeTypeOpenstackSecurityGroupProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackExternalResource" }, { "$ref": "#/definitions/openstackCreateIfMissing" }, { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "disable_default_egress_rules": { "description": "a flag for removing the default rules. If not set to `true`,\nthese rules will remain, and exist alongside any additional rules passed using the `rules` property.", "$ref": "#/definitions/cloudifyBooleanOrGetInput" }, "security_group_rules": { "description": "List of security groups rule.", "type": "array", "items": { "type": "string" } }, "resource_config": { "$ref": "#/definitions/openstackTypesSecurityGroup", "description": "A dictionary that may contain these keys https://developer.openstack.org/api-ref/network/v2/#create-security-group." } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackSecurityGroupInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.security_group.create" ] } } }, "configure": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.security_group.configure" ] }, "inputs": { "type": "object", "properties": { "security_group_rules": { "type": ["array", "object"], "default": { "get_property": ["SELF", "security_group_rules"] } } } } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.security_group.delete" ] } } } } }, "cloudify.interfaces.validation": { "type": "object", "properties": { "creation": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.security_group.creation_validation" ] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "update": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.security_group.update" ] }, "inputs": { "type": "object", "properties": { "args": { "type": "object" } } } } }, "list": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.security_group.list_security_groups" ] }, "inputs": { "type": "object", "properties": { "query": { "type": "object" } } } } } } } } }, "nodeTypeOpenstackSecurityGroupRuleProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeOpenstackSecurityGroupProperties" }, { "$ref": "#/definitions/openstackExternalResource" }, { "$ref": "#/definitions/openstackCreateIfMissing" }, { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "resource_config": { "$ref": "#/definitions/openstackTypesSecurityGroupRule", "description": "A dictionary that may contain these keys https://developer.openstack.org/api-ref/network/v2/#create-security-group-rule" } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackSecurityGroupRuleInterfaces": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeOpenstackSecurityGroupInterfaces" }, { "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.security_group_rule.create" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.security_group_rule.delete" ] } } } } }, "cloudify.interfaces.validation": { "type": "object", "properties": { "creation": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.security_group_rule.creation_validation" ] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "list": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.network.security_group_rule.list_security_group_rules" ] }, "inputs": { "type": "object", "properties": { "query": { "type": "object" } } } } } } } } } ] }, "nodeTypeOpenstackRBACPolicyProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeId" }, { "properties": { "target_tenant": { "description": "The ID of the tenant to which the RBAC policy will be enforced.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "object_type": { "description": "The type of the object that the RBAC policy affects.\nTypes include qos-policy or network.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "object_id": { "description": "The ID of the object_type resource. An object_type of\nnetwork returns a network ID and an object_type of qos-policy returns a QoS ID.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "action": { "description": "Action for the RBAC policy which is access_as_external or access_as_shared.", "$ref": "#/definitions/cloudifyStringOrGetInput" } } } ] }, "nodeTypeOpenstackServerProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackDataTypeKwargs" }, { "$ref": "#/definitions/openstackDataTypeName" }, { "$ref": "#/definitions/openstackDataTypeId" }, { "$ref": "#/definitions/openstackDataTypeDescription" }, { "properties": { "image_id": { "description": "The UUID of the image to use for your server instance.\nThis is not required in case of boot from volume.\nIn all other cases it is required\nand must be a valid UUID otherwise API will return 400", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "flavor_id": { "description": "The flavor reference, as an ID (including a UUID) or\nfull URL, for the flavor for your server instance.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "availability_zone": { "description": "The availability zone from which to launch the server.\nWhen you provision resources, you specify from which availability\nzone you want your instance to be built. Typically,\nan admin user will use availability zones to arrange\nOpenStack compute hosts into logical groups.\nAn availability zone provides a form of physical isolation\nand redundancy from other availability zones.\nFor instance, if some racks in your data center are\non a separate power source, you can put servers in those racks\nin their own availability zone. Availability zones can\nalso help separate different classes of hardware.\nBy segregating resources into availability zones,\nyou can ensure that your application resources are spread across\ndisparate machines to achieve high availability\nin the event of hardware or other failure.\nYou can list the available availability zones\nby calling the os-availability-zone API,\nbut you should avoid using the default availability zone when\nbooting the instance. In general,\nthe default availability zone is named nova.\nThis AZ is only shown when listing the availability zones as an admin", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "user_data": { "description": "Configuration information or scripts to use upon launch.\nMust be Base64 encoded. Restricted to 65535 bytes.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "metadata": { "description": "Metadata key and value pairs.\nThe maximum size of the metadata key and value is 255 bytes each.", "type": "object" }, "security_groups": { "description": "One or more security groups.\nSpecify the name of the security group in the name attribute.\nIf you omit this attribute, the API creates the server\nin the default security group. Requested security groups are not\napplied to pre-existing ports", "type": "array", "items": { "type": "string" } }, "networks": { "description": "A list of network object.\nRequired parameter when there are multiple networks\ndefined for the tenant. When you do not specify the networks parameter,\nthe server attaches to the only network created for the current tenant.", "type": "array", "items": { "type": "string" } }, "key_name": { "description": "Key pair name.", "$ref": "#/definitions/cloudifyStringOrGetInput" } } } ] }, "nodeTypeOpenstackWindowsServerProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeOpenstackServerProperties" }, { "properties": { "os_family": { "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "windows", "description": "updates the os_family default as a convenience" }, "agent_config": { "$ref": "#/definitions/cloudifyDataTypesAgentConfig", "default": { "port": 5985 }, "description": "updates the defaults for the agent_config for Windows)" } } } ] }, "nodeTypeOpenstackKeyPairProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackExternalResource" }, { "$ref": "#/definitions/openstackCreateIfMissing" }, { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "resource_config": { "$ref": "#/definitions/openstackTypesKeyPair", "description": "https://developer.openstack.org/api-ref/compute/?expanded=create-or-import-keypair-detail" } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackKeyPairInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.keypair.create" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.keypair.delete" ] } } } } }, "cloudify.interfaces.validation": { "type": "object", "properties": { "creation": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.keypair.creation_validation" ] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "list": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.keypair.list_keypairs" ] } } } } } } }, "nodeTypeOpenstackHostAggregateProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackExternalResource" }, { "$ref": "#/definitions/openstackCreateIfMissing" }, { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "metadata": { "type": "object", "description": "Metadata key and value pairs. The maximum size for each metadata key and value pair is 255 bytes\nAll keys values should be provided as string\nExample\nmetadata:\n ssd: 'True'\n max_number: '1233'" }, "hosts": { "type": "array", "items": { "type": "string" }, "description": "list of hosts IDs, which will be a members of host aggregate" }, "resource_config": { "$ref": "#/definitions/openstackTypesHostAggregate", "description": "https://developer.openstack.org/api-ref/compute/?expanded=create-aggregate-detail" } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackHostAggregateInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.host_aggregate.create" ] } } }, "configure": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.host_aggregate.configure" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.host_aggregate.delete" ] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "update": { "type": "object", "properties": { "implementation": { "type": "object", "enum": [ "openstack.openstack_plugin.resources.compute.host_aggregate.update" ] }, "inputs": { "type": "object", "properties": { "args": { "type": "object" } } } } }, "list": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.host_aggregate.list_aggregates" ] } } }, "add_hosts": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.host_aggregate.add_hosts" ] }, "inputs": { "type": "object", "properties": { "hosts": { "type": "array", "items": { "type": "string" } } } } } }, "remove_hosts": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.host_aggregate.remove_hosts" ] }, "inputs": { "type": "object", "properties": { "hosts": { "type": "array", "items": { "type": "string" } } } } } } } } } }, "nodeTypeOpenstackImageProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackExternalResource" }, { "$ref": "#/definitions/openstackCreateIfMissing" }, { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "image_url": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The openstack resource URL for the image." }, "resource_config": { "$ref": "#/definitions/openstackTypesImage", "description": "https://developer.openstack.org/api-ref/image/v2/index.html?expanded=show-image-detail,create-image-detail#create-image" } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackImageInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.image.create" ] } } }, "start": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.image.start" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.image.delete" ] } } } } }, "cloudify.interfaces.validation": { "type": "object", "properties": { "creation": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.image.creation_validation" ] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "update": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.image.update" ] }, "inputs": { "type": "object", "properties": { "args": { "type": "object" } } } } }, "list": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.image.list_images" ] }, "inputs": { "type": "object", "properties": { "query": { "type": "object" } } } } } } } } }, "nodeTypeOpenstackFlavorProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackExternalResource" }, { "$ref": "#/definitions/openstackCreateIfMissing" }, { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "resource_config": { "$ref": "#/definitions/openstackTypesFlavor", "description": "https://developer.openstack.org/api-ref/compute/?expanded=create-flavor-detail" }, "extra_specs": { "type": "object", "description": "key-value user configuration, according to:\nhttps://developer.openstack.org/api-ref/compute/#create-extra-specs-for-a-flavor" }, "tenants": { "type": "array", "items": { "type": "string" }, "description": "List of tenants to add to flavor access" } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackFlavorInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.flavor.create" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.flavor.delete" ] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "update": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.flavor.update" ] }, "inputs": { "type": "object", "properties": { "args": { "type": "object" } } } } }, "list": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.compute.flavor.list_flavors" ] }, "inputs": { "type": "object", "properties": { "query": { "type": "object" }, "details": { "type": "boolean", "default": true } } } } } } } } }, "nodeTypeOpenstackUserProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackExternalResource" }, { "$ref": "#/definitions/openstackCreateIfMissing" }, { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "resource_config": { "$ref": "#/definitions/openstackTypesUser", "description": "https://developer.openstack.org/api-ref/identity/v3/?expanded=update-user.yaml-detail,create-user.yaml-detail,update-project-detail#users" } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackUserInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.user.create" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.user.delete" ] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "update": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.user.update" ] }, "inputs": { "type": "object", "properties": { "args": { "type": "object" } } } } }, "list": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.user.list_users" ] }, "inputs": { "type": "object", "properties": { "query": { "type": "object" } } } } } } } } }, "nodeTypeOpenstackGroupProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackExternalResource" }, { "$ref": "#/definitions/openstackCreateIfMissing" }, { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "resource_config": { "$ref": "#/definitions/openstackTypesGroup", "description": "https://docs.openstack.org/api-ref/identity/v3/?expanded=update-user.yaml-detail,create-user.yaml-detail,update-project-detail#groups" } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackGroupInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.group.create" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.group.delete" ] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "update": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.group.update" ] }, "inputs": { "type": "object", "properties": { "args": { "type": "object" } } } } }, "list": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.group.list_groups" ] }, "inputs": { "type": "object", "properties": { "query": { "type": "object" } } } } } } } } }, "nodeTypeOpenstackRoleProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackExternalResource" }, { "$ref": "#/definitions/openstackCreateIfMissing" }, { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "resource_config": { "$ref": "#/definitions/openstackTypesRole", "description": "https://docs.openstack.org/api-ref/identity/v3/?expanded=update-project-detail,create-group-detail#roles" } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackRoleInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.role.create" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.role.delete" ] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "update": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.role.update" ] }, "inputs": { "type": "object", "properties": { "args": { "type": "object" } } } } }, "list": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.role.list_roles" ] }, "inputs": { "type": "object", "properties": { "query": { "type": "object" } } } } } } } } }, "nodeTypeOpenstackProjectProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackExternalResource" }, { "$ref": "#/definitions/openstackCreateIfMissing" }, { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "groups": { "type": "array", "items": { "type": "string" }, "description": "List of groups assigned to this project in the following format:\n { name: string, roles: [string] }" }, "users": { "type": "array", "items": { "type": "string" }, "description": "List of users assigned to this project in the following format:\n { name: string, roles: [string] }" }, "quota": { "type": "object", "description": "A dictionary mapping service names to quota definitions for a project\ne.g:\n quota:\n compute: <quota>\n network: <quota>\n volume: <quota>" }, "resource_config": { "$ref": "#/definitions/openstackTypesProject", "description": "https://developer.openstack.org/api-ref/identity/v3/?expanded=update-user.yaml-detail,create-user.yaml-detail,update-project-detail#projects" } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackProjectInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.project.create" ] } } }, "start": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.project.start" ] }, "inputs": { "type": "object", "properties": { "quota_dict": { "type": "object" } } } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.project.delete" ] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "update_project": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.project.update" ] }, "inputs": { "type": "object", "properties": { "args": { "type": "object" } } } } }, "get_quota": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.project.get_project_quota" ] } } }, "update_quota": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.project.update_project_quota" ] }, "inputs": { "type": "object", "properties": { "quota": { "type": "object" } } } } }, "list": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.project.list_projects" ] }, "inputs": { "type": "object", "properties": { "query": { "type": "object" } } } } } } }, "cloudify.interfaces.validation": { "type": "object", "properties": { "creation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.identity.project.creation_validation" ] } } } } }, "nodeTypeOpenstackVolumeProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackExternalResource" }, { "$ref": "#/definitions/openstackCreateIfMissing" }, { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "device_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "auto", "description": "The device name this volume will be attached to.\nDefault value is *auto*,\nwhich means openstack will auto-assign a device.\nNote that if you do explicitly set a value,\nthis value may not be the actual device name assigned.\nSometimes the device requested will not be available and openstack will assign it to a different device,n\this is why we recommend using *auto*." }, "resource_config": { "$ref": "#/definitions/openstackTypesVolume", "description": "https://developer.openstack.org/api-ref/block-storage/v2/index.html?expanded=create-volume-detail#volumes-volumes" } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackVolumeInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.volume.volume.create" ] }, "inputs": { "type": "object", "properties": { "args": { "type": "object" } } } } }, "start": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.volume.volume.start" ] }, "inputs": { "type": "object" } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.volume.volume.delete" ] } } } } }, "cloudify.interfaces.snapshot": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.volume.volume.snapshot_create" ] }, "inputs": { "type": "object" } } }, "apply": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.volume.volume.snapshot_apply" ] }, "inputs": { "type": "object" } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.volume.volume.snapshot_delete" ] }, "inputs": { "type": "object" } } } } }, "cloudify.interfaces.validation": { "type": "object", "properties": { "creation": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.volume.volume.creation_validation" ] } } } } }, "cloudify.interfaces.operations": { "type": "object", "properties": { "list": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.volume.volume.list_volumes" ] }, "inputs": { "type": "object", "properties": { "query": { "type": "object" } } } } } } } } }, "nodeTypeOpenstackVolumeTypeProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackExternalResource" }, { "$ref": "#/definitions/openstackCreateIfMissing" }, { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "resource_config": { "$ref": "#/definitions/openstackTypesVolumeType", "description": "https://developer.openstack.org/api-ref/block-storage/v3/index.html?expanded=create-a-volume-type-detail#volume-types-types" } }, "required": ["resource_config"] } ] }, "nodeTypeOpenstackVolumeTypeInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.volume.volume_type.create" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.volume.volume_type.delete" ] } } } } } } }, "nodeTypeOpenstackZoneProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "resource_config": { "$ref": "#/definitions/openstackTypesZoneType", "description": "https://docs.openstack.org/api-ref/dns/?expanded=create-zone-detail" } } } ] }, "nodeTypeOpenstackZoneInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.dns_service.zone.create" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.dns_service.zone.delete" ] } } } } } } }, "nodeTypeOpenstackRecordSetProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/openstackClientConfig" }, { "properties": { "resource_config": { "$ref": "#/definitions/openstackRecordSetType", "description": "https://docs.openstack.org/api-ref/dns/?expanded=create-zone-detail" } } } ] }, "nodeTypeOpenstackRecordSetInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.dns_service.record_set.create" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "openstack.openstack_plugin.resources.dns_service.record_set.delete" ] } } } } } } }, "ansiblePlaybookConfig": { "type": "object", "properties": { "ansible_playbook_executable_path": { "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "ansible-playbook", "description": "A full path to your ansible_playbook executable if user don't want to\nuse the included version of executable in the plugin" }, "playbook_source_path": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "A full path/URL that contain playbook specified in playbook_path\nor site_yaml_path." }, "playbook_path": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "A path to your `site.yaml` or `main.yaml` in your\nAnsible Playbook relative to blueprint or playbook_source_path\nif playbook_source_path is URL to archive File relative inside the archive." }, "site_yaml_path": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "DEPRECATED.\nA path to your `site.yaml` or `main.yaml` in your\nAnsible Playbook relative to blueprint or playbook_source_path\nif playbook_source_path is URL to archive File relative inside the archive." }, "additional_playbook_files": { "type": "array", "items": { "type": "string" }, "description": "A list of string paths blueprint resources that you\nwould like to download to the playbook directory.\nIf you use this variable, you must list all of the paths\nthat you expect to download." }, "sources": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Your Inventory sources. Either YAML or a path to a file.\nIf not provided the inventory will be take from the `sources`\nruntime property." }, "run_data": { "type": "object", "description": "Variable values." }, "sensitive_keys": { "description": "keys that you want us to obscure", "type": "array", "items": { "type": "string" }, "default": "ansible_password" }, "options_config": { "type": "object", "description": "Command-line options, such as `tags` or `skip_tags`." }, "ansible_env_vars": { "type": "object", "description": "A dictionary of environment variables to set.", "properties": { "ANSIBLE_HOST_KEY_CHECKING": { "type": "boolean", "default": false }, "ANSIBLE_INVALID_TASK_ATTRIBUTE_FAILED": { "type": "boolean", "default": false } } }, "debug_level": { "$ref": "#/definitions/cloudifyIntegerOrGetInput", "default": 2, "description": "Debug level" }, "additional_args": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Additional args that you want to use, for example, '-c local'." }, "start_at_task": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Start the playbook at the task matching this name" }, "scp_extra_args": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specify extra arguments to pass to scp only (e.g. -l)" }, "sftp_extra_args": { "description": "Specify extra arguments to pass to sftp only (e.g. -f, -l)", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "ssh_common_args": { "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "Specify common arguments to pass to sftp/scp/ssh (e.g. ProxyCommand)" }, "ssh_extra_args": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Specify extra arguments to pass to ssh only (e.g. -R)" }, "timeout": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Override the connection timeout in seconds (default=10)", "default": 10 }, "save_playbook": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "Save playbook after action", "default": false }, "remerge_sources": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "update sources on target node", "default": "false" }, "ansible_become": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "A boolean value, `true` or `false` whether\nto assume the user privileges.", "default": false } } }, "ansiblePlaybookInputs": { "type": "object", "properties": { "ansible_playbook_executable_path": { "type": ["string", "object"], "default": { "get_property": ["SELF", "ansible_playbook_executable_path"] } }, "playbook_source_path": { "type": ["string", "object"], "default": { "get_property": ["SELF", "playbook_source_path"] } }, "playbook_path": { "type": "string", "default": { "get_property": ["SELF", "playbook_path"] } }, "site_yaml_path": { "type": "string", "default": { "get_property": ["SELF", "site_yaml_path"] } }, "save_playbook": { "type": "string", "default": { "get_property": ["SELF", "save_playbook"] } }, "remerge_sources": { "type": "string", "default": { "get_property": ["SELF", "remerge_sources"] } }, "sources": { "type": "string", "default": { "get_property": ["SELF", "sources"] } }, "run_data": { "type": "string", "default": { "get_property": ["SELF", "run_data"] } }, "sensitive_keys": { "type": "string", "default": { "get_property": ["SELF", "sensitive_keys"] } }, "options_config": { "type": "string", "default": { "get_property": ["SELF", "options_config"] } }, "ansible_env_vars": { "type": "string", "default": { "get_property": ["SELF", "ansible_env_vars"] } }, "debug_level": { "type": "string", "default": { "get_property": ["SELF", "debug_level"] } }, "additional_args": { "type": "string", "default": { "get_property": ["SELF", "additional_args"] } }, "start_at_task": { "type": "string", "default": { "get_property": ["SELF", "start_at_task"] } }, "scp_extra_args": { "type": "string", "default": { "get_attribute": ["SELF", "scp_extra_args"] } }, "sftp_extra_args": { "type": "string", "default": { "get_attribute": ["SELF", "sftp_extra_args"] } }, "ssh_common_args": { "type": "string", "default": { "get_attribute": ["SELF", "ssh_common_args"] } }, "ssh_extra_args": { "type": "string", "default": { "get_attribute": ["SELF", "ssh_extra_args"] } }, "timeout": { "type": "string", "default": { "get_attribute": ["SELF", "timeout"] } } } }, "nodeTypeAnsibleExecutorProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/ansiblePlaybookConfig" } ] }, "nodeTypeAnsibleExecutorInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "start": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["ansible.cloudify_ansible.tasks.run"] }, "inputs": { "$ref": "#/definitions/ansiblePlaybookInputs" } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["ansible.cloudify_ansible.tasks.cleanup"] } } } } } } }, "nodeTypeTerraformDirectoryConfig": { "type": "object", "properties": { "executable_path": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The path to the terraform binary executable.", "default": "/usr/bin/terraform" }, "storage_path": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Directory to store downloaded Terraform templates. The directory must\neither already exist and be writable by 'cfyuser', or alternatively\nbe create-able by 'cfyuser'.\nThe default is an empty string, which prompts the plugin to use the OS\ntemporary directory." }, "plugins_dir": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Location where Terraform plugins are located. If a value is provided, then\nthe Terraform plugin uses '--plugin-dir' with that value, ensuring that\nno plugins are downloaded on-the-fly, for increased stability.\nIf a value is not provided, plugins will be downloaded on-the-fly. This is\nnot recommended in production environments." } } }, "terraformConfig": { "$ref": "#/definitions/nodeTypeTerraformDirectoryConfig", "description": "Terraform directories for executions." }, "terraformTypesBackend": { "type": "object", "properties": { "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Some name." }, "options": { "type": "object", "description": "Should be a dictionary of key/values." } } }, "terraformTypesRootModule": { "type": "object", "properties": { "source": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Path or URL to the ZIP file containing the Terraform project.\nIf this is a path, then it must be relative to the blueprint's root." }, "backend": { "$ref": "#/definitions/terraformTypesBackend", "description": "If a backend is not defined in source,\nand you want to use a specific backend, define that here." }, "variables": { "type": "object", "description": "A dictionary of variables." }, "environment_variables": { "type": "object", "description": "A dictionary of environment variables." } }, "required": ["source"] }, "nodeTypeTerraformInstallConfig": { "type": "object", "properties": { "use_existing_resource": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "If true, use an existing Terraform installation rather than installing it", "default": true }, "installation_source": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Location to download the Terraform installation from. Ignored if 'use_existing' is true." }, "plugins": { "description": "List of plugins to download and install.", "type": "array", "items": { "type": "string" } } }, "required": ["use_existing_resource"] }, "nodeTypeTerraformProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/terraformConfig" }, { "properties": { "resource_config": { "$ref": "#/definitions/nodeTypeTerraformInstallConfig" } }, "required": ["resource_config"] } ] }, "nodeTypeTerraformInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["tf.cloudify_tf.tasks.install"] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["tf.cloudify_tf.tasks.uninstall"] } } } } } } }, "nodeTypeTerraformModuleProperties": { "type": "object", "properties": { "resource_config": { "$ref": "#/definitions/terraformTypesRootModule" } }, "required": ["resource_config"] }, "nodeTypeTerraformModuleInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "start": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["tf.cloudify_tf.tasks.apply"] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["tf.cloudify_tf.tasks.destroy"] } } } } }, "terraform": { "type": "object", "properties": { "reload": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["tf.cloudify_tf.tasks.reload_template"] }, "inputs": { "type": "object", "properties": { "source": { "description": "URL or path to a ZIP/tar.gz file or a Git repository to obtain\nnew module source from. If omitted, then the module is reloaded\nfrom its last location.", "type": "string" }, "destroy_previous": { "type": "boolean", "description": "If true, then the plugin destroys the existing Terraform\ntopology before applying the new one.", "default": false } } } } }, "refresh": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["tf.cloudify_tf.tasks.state_pull"] } } } } } } }, "kubernetesTypesConfigurationVariant": { "type": "object", "description": "Type representing all Kubernetes API configuration variants.\nEach property represents separate supported variant of configuration.\nYou should choose one variant and fill in only on property.", "properties": { "blueprint_file_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of Kubernetes configuration file attached to blueprint" }, "manager_file_path": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Path to Kubernetes configuration file placed on Cloudify Manager VM" }, "file_content": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Content (YAML) of Kubernetes configuration file" }, "api_options": { "type": "object", "description": "Set of basic properties describing Kubernetes API access", "properties": { "host": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "HTTP/HTTPS URL to Kubernetes API" }, "ssl_ca_cert": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "cert_file": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "key_file": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "verify_ssl": { "$ref": "#/definitions/cloudifyBooleanOrGetInput" }, "api_key": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "debug": { "$ref": "#/definitions/cloudifyBooleanOrGetInput" } } } } }, "kubernetesTypesAuthenticationVariant": { "type": "object", "description": "Type representing all authentication variants\nfor different Kubernetes cloud providers.\nEach property represents separate supported variant of authentication.\nYou should choose one variant and fill in only on property.", "properties": { "gcp_service_account": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "(JSON) Content of Google Cloud Platform Service Account file" } } }, "kubernetesTypesClientConfig": { "type": "object", "description": "Configuration properties of kubernetes API and\nauthentication properties of Kubernetes Cloud providers.", "properties": { "configuration": { "description": "Configuration properties of Kubernetes API. One of four configuration options can be used\n1. Kubernetes config file contained by blueprint archive\n2. Kubernetes config file previously uploaded into Cloudify Manager VM\n3. Content of Kubernetes config file (YAML)\n4. Kubernetes API set o properties", "$ref": "#/definitions/kubernetesTypesConfigurationVariant" }, "authentication": { "description": "Authentication properties of Kubernetes Cloud providers. Optional.\nCurrently supported providers: Google Cloud Platform.", "$ref": "#/definitions/kubernetesTypesAuthenticationVariant" } } }, "kubernetesTypesAbstractResource": { "type": "object", "description": "Type defining common base structure for any Kubernetes resource\nIt is some kind of wrapper for native Kubernetes YAML definition", "properties": { "apiVersion": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Kubernetes API version as a string", "default": "v1" }, "kind": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "metadata": { "type": "object" } }, "required": ["kind"] }, "kubernetesTypesRoleBindingDefinitio": { "description": "Type defining single Kubernetes resource e.g. Pod, Service, ...\nIt is some kind of wrapper for native Kubernetes YAML definition", "type": "object", "allOf": [ { "$ref": "#/definitions/kubernetesTypesAbstractResource" }, { "properties": { "roleRef": { "description": "RoleRef can only reference a ClusterRole in the global namespace.\nIf the RoleRef cannot be resolved, the Authorizer must return an error.", "type": "object" }, "subjects": { "description": "Subjects holds references to the objects the role applies to.", "type": "array", "items": { "$ref": "#/definitions/cloudifyStringOrGetInput" } } } } ] }, "kubernetesTypesRoleDefinitio": { "type": "object", "description": "Type defining single Kubernetes resource e.g. Role, ...\nIt is some kind of wrapper for native Kubernetes YAML definition", "allOf": [ { "$ref": "#/definitions/kubernetesTypesAbstractResource" }, { "properties": { "rules": { "type": "array", "description": "Rules holds all the PolicyRules for this Role.", "items": { "$ref": "#/definitions/cloudifyStringOrGetInput" } } } } ] }, "kubernetesTypesClusterRoleDefinitio": { "type": "object", "description": "Type defining single Kubernetes resource e.g. ClusterRole, ...\nIt is some kind of wrapper for native Kubernetes YAML definition", "allOf": [ { "$ref": "#/definitions/kubernetesTypesAbstractResource" } ] }, "kubernetesTypesSecretDefinition": { "type": "object", "description": "Secret holds secret data of a certain type.\nThe total bytes of the values in the Data field must be less than MaxSecretSize bytes", "allOf": [ { "$ref": "#/definitions/kubernetesTypesAbstractResource" }, { "properties": { "type": { "description": "Used to facilitate programmatic handling of secret data.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "data": { "description": "Data contains the secret data.", "type": "object" }, "stringData": { "description": "stringData allows specifying non-binary secret data in string form.\nIt is provided as a write-only convenience method.\nAll keys and values are merged into the data field on write,\noverwriting any existing values. It is never output when reading from the API..", "type": "object" } } } ] }, "kubernetesTypesServiceAccountDefinition": { "type": "object", "description": "ServiceAccount binds together: a name, understood by users,\nand perhaps by peripheral systems, for an identity a principal\nthat can be authenticated and authorized * a set of secrets", "allOf": [ { "$ref": "#/definitions/kubernetesTypesAbstractResource" }, { "properties": { "automountServiceAccountToken": { "description": "AutomountServiceAccountToken indicates whether pods running\nas this service account should have an API token automatically mounted.\nCan be overridden at the pod level..", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "imagePullSecrets": { "description": "ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images\nin pods that reference this ServiceAccount. ImagePullSecrets are distinct\nfrom Secrets because Secrets can be mounted in the pod,\nbut ImagePullSecrets are only accessed by the kubelet", "type": "array", "items": { "$ref": "#/definitions/cloudifyStringOrGetInput" } }, "secrets": { "description": "Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount.", "type": "array", "items": { "$ref": "#/definitions/cloudifyStringOrGetInput" } } } } ] }, "kubernetesTypesResourceDefinition": { "description": "Type defining single Kubernetes resource e.g. Pod, Service, ...\nIt is some kind of wrapper for native Kubernetes YAML definition", "type": "object", "allOf": [ { "$ref": "#/definitions/kubernetesTypesAbstractResource" }, { "properties": { "spec": { "description": "Kubernetes resource object specification", "type": "object" } } } ] }, "kubernetesTypesConfigClassResourceDefinition": { "description": "Type defining Kubernetes resource for storing data.\nIt is some kind of wrapper for native Kubernetes YAML definition", "type": "object", "allOf": [ { "$ref": "#/definitions/kubernetesTypesResourceDefinition" }, { "properties": { "data": { "description": "Contains data to store in ConfigMap, Secret..", "type": "object" } } } ] }, "kubernetesTypesStorageClassResourceDefinition": { "description": "Type defining single Kubernetes resource e.g. StorageClass\nIt is some kind of wrapper for native Kubernetes YAML definition", "type": "object", "allOf": [ { "$ref": "#/definitions/kubernetesTypesAbstractResource" }, { "properties": { "parameters": { "description": "Additional parameters for object creation", "type": "object" }, "provisioner": { "description": "Class provisioner for object creation", "type": "object" } } } ] }, "kubernetesTypesApiMappingEntry": { "description": "Type defining python Kubernetes API objects and methods definitions for particular operation", "type": "object", "properties": { "api": { "description": "Name of python Kubernetes API object which will be used to as request for particular operation type", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "method": { "description": "Method name of python Kubernetes API object which will be used as request for particular operation type", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "payload": { "description": "Name of python Kubernetes API object which will be used as request data for particular operation type", "$ref": "#/definitions/cloudifyStringOrGetInput" } }, "required": ["api", "method"] }, "kubernetesTypesApiMapping": { "description": "Type containing python Kubernetes API objects and methods definitions for all supported operations", "type": "object", "properties": { "create": { "description": "Python Kubernetes API objects and methods definitions for create operation", "$ref": "#/definitions/kubernetesTypesApiMappingEntry" }, "read": { "description": "Python Kubernetes API objects and methods definitions for read operation", "$ref": "#/definitions/kubernetesTypesApiMappingEntry" }, "update": { "description": "Python Kubernetes API objects and methods definitions for update operation", "$ref": "#/definitions/kubernetesTypesApiMappingEntry" }, "delete": { "description": "Python Kubernetes API objects and methods definitions for delete operation", "$ref": "#/definitions/kubernetesTypesApiMappingEntry" } } }, "kubernetesTypesFileResource": { "type": "object", "properties": { "resource_path": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "File relative to blueprint path." }, "target_path": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Do not use." }, "template_variables": { "type": "object" } } }, "nodeTypeKubernetesNodesMasterProperties": { "type": "object", "properties": { "configuration": { "$ref": "#/definitions/kubernetesTypesConfigurationVariant", "description": "Configuration properties of Kubernetes API. One of four configuration options can be used\n1. Kubernetes config file contained by blueprint archive\n2. Kubernetes config file previously uploaded into Cloudify Manager VM\n3. Content of Kubernetes config file (YAML)\n4. Kubernetes API set o properties" }, "authentication": { "$ref": "#/definitions/kubernetesTypesAuthenticationVariant", "description": "Authentication properties of Kubernetes Cloud providers. Optional.\nCurrently supported providers: Google Cloud Platform." } } }, "nodeTypeKubernetesResourcesResourceBase": { "type": "object", "description": "", "properties": { "client_config": { "$ref": "#/definitions/kubernetesTypesClientConfig", "description": "Configuration properties of kubernetes API and\nauthentication properties of Kubernetes Cloud providers." }, "allow_node_redefinition": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "Permit changing the name and kind and number of resources defined in file.", "default": false } } }, "nodeTypeKubernetesResourcesResourceWithValidateStatus": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesResourceBase" }, { "type": "object", "properties": { "validate_resource_status": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "Set this to \"true\" if you want Cloudify to wait for a predetermined state." } } } ] }, "nodeTypeKubernetesResourcesBlueprintDefinedResource": { "type": "object", "description": "", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesResourceWithValidateStatus" }, { "type": "object", "properties": { "use_external_resource": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "Indicates that you want to use an existing resource in Kubernetes." }, "definition": { "$ref": "#/definitions/kubernetesTypesResourceDefinition", "description": "Definition of resource object using native Kubernetes YAML spec" }, "options": { "type": "object", "description": "API options depending on API operations execution" } } } ] }, "nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces": { "type": "object", "description": "", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "$ref": "#/definitions/cloudifyStringOrGetInput", "enum": [ "kubernetes.cloudify_kubernetes.tasks.resource_create" ] } } }, "poststart": { "type": "object", "properties": { "implementation": { "$ref": "#/definitions/cloudifyStringOrGetInput", "enum": ["kubernetes.cloudify_kubernetes.tasks.resource_read"] } } }, "update": { "type": "object", "properties": { "implementation": { "$ref": "#/definitions/cloudifyStringOrGetInput", "enum": [ "kubernetes.cloudify_kubernetes.tasks.resource_update" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "$ref": "#/definitions/cloudifyStringOrGetInput", "enum": [ "kubernetes.cloudify_kubernetes.tasks.resource_delete" ] } } } } } } }, "nodeTypeKubernetesResourcesClusterRoleBindingProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "definition": { "description": "Definition of role binding using native Kubernetes YAML spec", "$ref": "#/definitions/kubernetesTypesRoleBindingDefinitio" } } } ] }, "nodeTypeKubernetesResourcesRoleBinding": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "definition": { "description": "Definition of role binding using native Kubernetes YAML spec", "$ref": "#/definitions/kubernetesTypesRoleBindingDefinitio" } } } ] }, "nodeTypeKubernetesResourcesRoleProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "definition": { "description": "Definition of role using native Kubernetes YAML spec", "$ref": "#/definitions/kubernetesTypesRoleDefinitio" } } } ] }, "nodeTypeKubernetesResourcesClusterRoleProperties": { "type": "object", "description": "Definition of cluster role using native Kubernetes YAML spec", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesRoleProperties" }, { "properties": { "definition": { "description": "Definition of role binding using native Kubernetes YAML spec", "$ref": "#/definitions/kubernetesTypesClusterRoleDefinitio" } } } ] }, "nodeTypeKubernetesResourcesSecretProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "definitions": { "description": "Definition of secret using native Kubernetes YAML spec", "$ref": "#/definitions/kubernetesTypesSecretDefinition" } } } ] }, "nodeTypeKubernetesResourcesServiceAccountProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "definitions": { "description": "Definition of service account using native Kubernetes YAML spec", "$ref": "#/definitions/kubernetesTypesServiceAccountDefinition" } } } ] }, "nodeTypeKubernetesResourcesDeploymentProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "validate_resource_status": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": true } } } ] }, "nodeTypeKubernetesResourcesNodeProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "use_external_resource": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": true } } } ] }, "nodeTypeKubernetesResourcesNamespaceProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "use_external_resource": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": true } } } ] }, "nodeTypeKubernetesResourcesPodProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "use_external_resource": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": true } } } ] }, "nodeTypeKubernetesResourcesReplicaSetProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "use_external_resource": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": true } } } ] }, "nodeTypeKubernetesResourcesReplicationControllerProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "use_external_resource": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": true } } } ] }, "nodeTypeKubernetesResourcesDaemonSetProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" } ] }, "nodeTypeKubernetesResourcesCustomResourceDefinitionProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" } ] }, "nodeTypeKubernetesResourcesServiceProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "validate_resource_status": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": true } } } ] }, "nodeTypeKubernetesResourcesPersistentVolumeProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "validate_resource_status": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": true } } } ] }, "nodeTypeKubernetesResourcesConfigMapProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "definition": { "$ref": "#/definitions/kubernetesTypesConfigClassResourceDefinition" } } } ] }, "nodeTypeKubernetesResourcesStorageClassProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "definition": { "description": "Definition of resource object using native Kubernetes YAML spec", "$ref": "#/definitions/kubernetesTypesStorageClassResourceDefinition" } } } ] }, "nodeTypeKubernetesResourcesStatefulSetProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "definition": { "description": "Definition of resource object using native Kubernetes YAML spec", "type": "object" } } } ] }, "nodeTypeKubernetesResourcesPodSecurityPolicyProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "definition": { "description": "Definition of resource object using native Kubernetes YAML spec", "type": "object" } } } ] }, "nodeTypeKubernetesResourcesNetworkPolicyProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "definition": { "description": "Definition of resource object using native Kubernetes YAML spec", "type": "object" } } } ] }, "nodeTypeKubernetesResourcesIngressProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "definition": { "description": "Definition of resource object using native Kubernetes YAML spec", "type": "object" } } } ] }, "nodeTypeKubernetesResourcesPersistentVolumeClaimProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "definition": { "description": "Definition of resource object using native Kubernetes YAML spec", "type": "object" } } } ] }, "nodeTypeKubernetesResourcesCustomBlueprintDefinedResourceProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResource" }, { "properties": { "api_mapping": { "description": "Python Kubernetes API objects and methods definitions used for given resource type", "$ref": "#/definitions/kubernetesTypesApiMapping" } } } ] }, "nodeTypeKubernetesResourcesCustomBlueprintDefinedResourceInterfaces": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesBlueprintDefinedResourceInterfaces" }, { "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "$ref": "#/definitions/cloudifyStringOrGetInput", "enum": [ "kubernetes.cloudify_kubernetes.tasks.custom_resource_create" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "$ref": "#/definitions/cloudifyStringOrGetInput", "enum": [ "kubernetes.cloudify_kubernetes.tasks.custom_resource_delete" ] } } } } } } } ] }, "nodeTypeKubernetesResourcesFileDefinedResourceProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesResourceWithValidateStatus" }, { "properties": { "file": { "description": "A path to YAML file containing the resource definition.", "$ref": "#/definitions/kubernetesTypesFileResource" }, "allow_node_redefinition": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "Permit changing the name and kind and number of resources defined in file.", "default": false } } } ] }, "nodeTypeKubernetesResourcesFileDefinedResourceInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "$ref": "#/definitions/cloudifyStringOrGetInput", "enum": [ "kubernetes.cloudify_kubernetes.tasks.file_resource_create" ] } } }, "poststart": { "type": "object", "properties": { "implementation": { "$ref": "#/definitions/cloudifyStringOrGetInput", "enum": [ "kubernetes.cloudify_kubernetes.tasks.file_resource_read" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "$ref": "#/definitions/cloudifyStringOrGetInput", "enum": [ "kubernetes.cloudify_kubernetes.tasks.file_resource_delete" ] } } } } } } }, "nodeTypeKubernetesResourcesMultipleFileDefinedResourcesProperties": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeKubernetesResourcesResourceWithValidateStatus" }, { "properties": { "files": { "description": "A list of paths to YAML files containing the resources definition.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "allow_node_redefinition": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "Permit changing the name and kind and number of resources defined in file.", "default": false } } } ] }, "nodeTypeKubernetesResourcesMultipleFileDefinedResourcesInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "kubernetes.cloudify_kubernetes.tasks.multiple_file_resource_create" ] } } }, "poststart": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "kubernetes.cloudify_kubernetes.tasks.multiple_file_resource_delete" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "kubernetes.cloudify_kubernetes.tasks.custom_resource_delete" ] } } } } } } }, "dockerClientConfig": { "type": "object", "properties": { "docker_host": { "description": "Docker Machine IP to connect to.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "docker_rest_port": { "description": "Docker Machine rest port.", "$ref": "#/definitions/cloudifyIntegerOrGetInput" } } }, "dockerMachine": { "type": "object", "description": "Docker Machine IP,User,Private_key", "properties": { "docker_ip": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Docker Machine IP" }, "docker_user": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Docker Machine User" }, "docker_key": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Docker Machine Private Key" }, "container_volume": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Docker Container volume_mapping" } } }, "dockerInstallationConfig": { "type": "object", "description": "Docker Installation type", "properties": { "install_url": { "description": "Docker Installation Link", "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "https://get.docker.com" }, "install_script": { "description": "Docker Installation script", "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "https://raw.githubusercontent.com/cloudify-cosmo/cloudify-docker-plugin/master/cloudify_docker/resources/post-install.sh" } } }, "nodeTypeDockerImagesProperties": { "type": "object", "properties": { "client_config": { "$ref": "#/definitions/dockerClientConfig" } } }, "nodeTypeDockerImagesInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["docker.cloudify_docker.tasks.list_images"] } } } } } } }, "nodeTypeDockerContainersProperties": { "type": "object", "properties": { "client_config": { "$ref": "#/definitions/dockerClientConfig" } } }, "nodeTypeDockerContainersInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["docker.cloudify_docker.tasks.list_containers"] } } } } } } }, "nodeTypeDockerHostProperties": { "type": "object", "properties": { "docker_machine": { "$ref": "#/definitions/dockerMachine" }, "resource_config": { "$ref": "#/definitions/dockerInstallationConfig" } }, "required": ["resource_config"] }, "nodeTypeDockerHostInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["docker.cloudify_docker.tasks.install_docker"] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["docker.cloudify_docker.tasks.uninstall_docker"] } } } } } } }, "nodeTypeDockerHostDetailsProperties": { "type": "object", "properties": { "client_config": { "$ref": "#/definitions/dockerClientConfig" } } }, "nodeTypeDockerHostDetailsInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["docker.cloudify_docker.tasks.list_host_details"] } } } } } } }, "nodeTypeDockerImageProperties": { "type": "object", "properties": { "client_config": { "$ref": "#/definitions/dockerClientConfig" }, "resource_config": { "description": "Docker Image type", "type": "object", "properties": { "image_content": { "description": "Docker image to build", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "tag": { "description": "Docker image tag", "$ref": "#/definitions/cloudifyStringOrGetInput" } } } }, "required": ["resource_config"] }, "nodeTypeDockerImageInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["docker.cloudify_docker.tasks.build_image"] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["docker.cloudify_docker.tasks.remove_image"] } } } } } } }, "nodeTypeDockerContainerProperties": { "type": "object", "properties": { "client_config": { "$ref": "#/definitions/dockerClientConfig" }, "resource_config": { "description": "Docker Container type", "type": "object", "properties": { "image_tag": { "description": "Docker image tag to build container", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "container_args": { "description": "dict of arguments to pass to container when run\ncheck this URL for details: https://tinyurl.com/v8url54", "type": "object" } } } }, "required": ["resource_config"] }, "nodeTypeDockerContainerInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["docker.cloudify_docker.tasks.create_container"] } } }, "stop": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["docker.cloudify_docker.tasks.remove_container"] }, "inputs": { "type": "object", "properties": { "stop_command": { "type": ["string", "object"] } } } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["docker.cloudify_docker.tasks.remove_container"] } } } } } } }, "nodeTypeDockerContainerFilesProperties": { "type": "object", "properties": { "resource_config": { "description": "Docker Container Files type", "properties": { "docker_machine": { "description": "Docker Machine IP,User,Private_key", "type": "object", "properties": { "docker_machine": { "description": "Docker Machine IP,User,Private_keys", "$ref": "#/definitions/dockerMachine" }, "source": { "description": "Files location that will be mapped to container", "type": "string" }, "destination": { "description": "Location to extract the files into,\nthat will be mapped to container volume later", "type": "string" }, "extra_files": { "description": "More files to add to source before it goes to destination", "type": "string" }, "ansible_sources": { "description": "special case for ansible sources", "type": "object" }, "terraform_sources": { "description": "special case for terraform sources", "type": "object" } } }, "source": { "description": "Files location that will be mapped to container", "type": "string" }, "destination": { "description": "Location to extract the files into,\nthat will be mapped to container volume later", "type": "string" }, "extra_files": { "description": "More files to add to source before it goes to destination", "type": "array", "items": { "type": "string" } }, "ansible_sources": { "description": "special case for ansible sources", "type": "object" }, "terraform_sources": { "description": "special case for terraform sources", "type": "object" } } } }, "required": ["resource_config"] }, "nodeTypeDockerContainerFilesInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "docker.cloudify_docker.tasks.prepare_container_files" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "docker.cloudify_docker.tasks.remove_container_files" ] } } } } } } }, "nodeTypeDockerAnsiblePlaybookProperties": { "type": "object", "properties": { "ansible_playbook_executable_path": { "description": "A full path to your ansible_playbook executable if user don't want to\nuse the included version of executable in the plugin", "type": "string", "default": "ansible-playbook" }, "playbook_source_path": { "description": "A full path/URL that contain playbook specified in playbook_path\nor site_yaml_path.", "type": "string" }, "playbook_path": { "description": "A path to your `site.yaml` or `main.yaml` in your\nAnsible Playbook relative to blueprint or playbook_source_path\nif playbook_source_path is URL to archive File relative inside the archive.", "type": "string" }, "site_yaml_path": { "description": "DEPRECATED.\nA path to your `site.yaml` or `main.yaml` in your\nAnsible Playbook relative to blueprint or playbook_source_path\nif playbook_source_path is URL to archive File relative inside the archive.", "type": "string" }, "additional_playbook_files": { "description": "A list of string paths blueprint resources that you\nwould like to download to the playbook directory.\nIf you use this variable, you must list all of the paths\nthat you expect to download.", "type": "array", "items": { "type": "string" } }, "sources": { "description": "Your Inventory sources. Either YAML or a path to a file.\nIf not provided the inventory will be take from the `sources`\nruntime property.", "type": "object" }, "run_data": { "description": "Variable values.", "type": "object" }, "sensitive_keys": { "description": "keys that you want us to obscure", "type": "array", "items": { "type": "string" } }, "options_config": { "description": "Command-line options, such as `tags` or `skip_tags`.", "type": "object" }, "ansible_env_vars": { "description": "A dictionary of environment variables to set.", "type": "object", "properties": { "ANSIBLE_HOST_KEY_CHECKING": { "type": "string", "enum": ["True", "False"], "default": "False" }, "ANSIBLE_INVALID_TASK_ATTRIBUTE_FAILED": { "type": "string", "enum": ["True", "False"], "default": "False" } } }, "debug_level": { "description": "Debug level", "type": "integer", "default": 2 }, "additional_args": { "description": "Additional args that you want to use, for example, '-c local'.", "type": "string" }, "save_playbook": { "description": "Save playbook after action", "type": "boolean", "default": false }, "remerge_sources": { "description": "update sources on target node", "type": "boolean", "default": false }, "ansible_become": { "description": "A boolean value, `true` or `false` whether\nto assume the user privileges.", "type": "boolean", "default": false }, "docker_machine": { "description": "Docker Machine IP,User,Private_key", "$ref": "#/definitions/dockerMachine" } } }, "nodeTypeDockerAnsiblePlaybookInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "precreate": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["docker.cloudify_docker.ansible.set_playbook_config"] }, "inputs": { "type": "object", "properties": { "ansible_playbook_executable_path": { "type": "string" }, "playbook_source_path": { "type": "string" }, "playbook_path": { "type": "string" }, "site_yaml_path": { "type": "string" }, "save_playbook": { "type": "boolean" }, "remerge_sources": { "type": "boolean" }, "sources": { "type": "object" }, "run_data": { "type": "object" }, "sensitive_keys": { "type": "array", "items": { "type": "string" } }, "options_config": { "type": "object" }, "ansible_env_vars": { "type": "object" }, "debug_level": { "type": "integer" }, "additional_args": { "type": "string" } } } } }, "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "docker.cloudify_docker.ansible.create_ansible_playbook" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "docker.cloudify_docker.ansible.remove_ansible_playbook" ] } } } } } } }, "nodeTypeDockerTerraformModuleProperties": { "type": "object", "properties": { "docker_machine": { "$ref": "#/definitions/dockerMachine" }, "terraform_plugins": { "description": "Terraform Plugins to install", "type": "array", "items": { "type": "string" } }, "resource_config": { "type": "object", "properties": { "source": { "description": "Path or URL to the ZIP file containing the Terraform project.\nIf this is a path, then it must be relative to the blueprint's root.", "type": "string" }, "backend": { "type": "object", "description": "If a backend is not defined in source,\nand you want to use a specific backend, define that here.", "properties": { "name": { "type": "string", "description": "Some name." }, "options": { "type": "object", "description": "Should be a dictionary of key/values." } } }, "variables": { "description": "A dictionary of variables.", "type": "object" }, "environment_variables": { "description": "A dictionary of environment variables.", "type": "object" } }, "required": ["source"] } }, "required": ["terraform_plugins", "resource_config"] }, "nodeTypeDockerTerraformModuleInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "create": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "docker.cloudify_docker.terraform.prepare_terraform_files" ] } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": [ "docker.cloudify_docker.terraform.remove_terraform_files" ] } } } } } } }, "cloudifyGetStringOrAwsRegion": { "description": "The server region name, such as us-east-1.\n(Not us-east-1b, which is an availability zone, or\nUS East, which is a Region.)\nUS East (N. Virginia) - us-east-1\nUS East (Ohio) - us-east-2\nUS West (N. California) - us-west-1\nUS West (Oregon) - us-west-2\nAfrica (Cape Town) - af-south-1\nAsia Pacific (Hong Kong) - ap-east-1\nAsia Pacific (Mumbai) - ap-south-1\nAsia Pacific (Seoul) - ap-northeast-2\nAsia Pacific (Osaka-Local) - ap-northeast-3\nAsia Pacific (Singapore) - ap-southeast-1\nAsia Pacific (Sydney) - ap-southeast-2\nAsia Pacific (Tokyo) - ap-northeast-1\nCanada (Central) - ca-central-1\nChina (Beijing) - cn-north-1\nChina (Ningxia) - cn-northwest-1\nEurope (Frankfurt) - eu-central-1\nEurope (Ireland) - eu-west-1\nEurope (London) - eu-west-2\nEurope (Milan) - eu-south-1\nEurope (Paris) - eu-west-3\nEurope (Stockholm) - eu-north-1\nMiddle East (Bahrain) - me-south-1\nSouth America (São Paulo) - sa-east-1\nAWS GovCloud (US-East) - us-gov-east-1\nAWS GovCloud (US) - us-gov-west-1", "anyOf": [ { "$ref": "#/definitions/awsRegion" }, { "$ref": "#/definitions/cloudifyGetInput" } ] }, "awsRegion": { "type": "string", "enum": [ "us-east-1", "us-east-2", "us-west-1", "us-west-2", "af-south-1", "ap-east-1", "ap-south-1", "ap-southeast-1", "ap-northeast-2", "ap-northeast-3", "ap-northeast-1", "ap-southeast-2", "ca-central-1", "cn-north-1", "cn-northwest-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-south-1", "eu-west-3", "eu-north-1", "me-south-1", "sa-east-1", "us-gov-east-1", "us-gov-west-1" ] }, "awsConnectionConfig": { "type": "object", "description": "A dictionary of values to pass to authenticate with the AWS API.", "properties": { "aws_access_key_id": { "description": "The ID of your AWS ACCESS KEY ID.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "aws_secret_access_key": { "description": "The ID of your AWS SECRET ACCESS KEY.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "region_name": { "$ref": "#/definitions/cloudifyGetStringOrAwsRegion" } } }, "awsResourceId": { "description": "The AWS resource ID of the external resource, if\nuse_external_resource is true. Otherwise it is an empty string.", "type": "string", "default": "" }, "nodeTypeAWSEC2Base": { "type": "object", "properties": { "use_external_resource": { "type": "boolean", "description": "Indicate whether the resource exists or if Cloudify should create the resource,\ntrue if you are bringing an existing resource, false if you want cloudify to create it.", "default": false }, "client_config": { "$ref": "#/definitions/awsConnectionConfig" }, "resource_id": { "$ref": "#/definitions/awsResourceId" }, "Tags": { "$ref": "#/definitions/tags" } } }, "nodeTypeAWSEC2EBSAttachment": { "type": "object", "properties": { "use_external_resource": { "type": "boolean", "description": "Indicate whether the resource exists or if Cloudify should create the resource,\ntrue if you are bringing an existing resource, false if you want cloudify to create it.", "default": false }, "client_config": { "$ref": "#/definitions/awsConnectionConfig" }, "resource_id": { "$ref": "#/definitions/awsResourceId" }, "resource_config": { "type": "object", "description": "Configuration key-value data to be passed as-is to the corresponding\nBoto3 method. Key names must match the case that Boto3 requires.", "properties": { "kwargs": { "type": "object", "properties": { "Device": { "description": "The device name (for example, /dev/sdh or xvdh )", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "InstanceId": { "description": "The ID of the instance.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "VolumeId": { "description": "The ID of the EBS volume. The volume and instance must be within the same Availability Zone", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "DryRun": { "description": "Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation . Otherwise, it is UnauthorizedOperation .", "$ref": "#/definitions/cloudifyBooleanOrGetInput" } }, "required": ["Device", "InstanceId", "VolumeId"] } } } } }, "nodeTypeAWSEC2EBSVolume": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeAWSEC2Base" }, { "properties": { "resource_config": { "type": "object", "description": "Configuration key-value data to be passed as-is to the corresponding\nBoto3 method. Key names must match the case that Boto3 requires.", "properties": { "AvailabilityZone": { "description": "The Availability Zone in which to create the volume.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "Size": { "description": "The size of the volume, in GiBs.", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "kwargs": { "type": "object", "properties": { "Encrypted": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "Specifies whether the volume should be encrypted. The effect of setting the encryption state to true depends on the volume origin (new or from a snapshot), starting encryption state, ownership, and whether encryption by default is enabled. For more information, see Encryption by Default in the Amazon Elastic Compute Cloud User Guide.\nEncrypted Amazon EBS volumes must be attached to instances that support Amazon EBS encryption. For more information, see Supported Instance Types ." }, "Iops": { "$ref": "#/definitions/cloudifyIntegerOrGetInput", "description": "The number of I/O operations per second (IOPS) to provision for the volume, with a maximum ratio of 50 IOPS/GiB. Range is 100 to 64,000 IOPS for volumes in most Regions. Maximum IOPS of 64,000 is guaranteed only on Nitro-based instances . Other instance families guarantee performance up to 32,000 IOPS. For more information, see Amazon EBS Volume Types in the Amazon Elastic Compute Cloud User Guide.\nThis parameter is valid only for Provisioned IOPS SSD (io1) volumes." }, "KmsKeyId": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The identifier of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use for Amazon EBS encryption. If this parameter is not specified, your AWS managed CMK for EBS is used. If KmsKeyId is specified, the encrypted state must be true.\n\nYou can specify the CMK using any of the following:\n\nKey ID. For example, key/1234abcd-12ab-34cd-56ef-1234567890ab.\nKey alias. For example, alias/ExampleAlias.\nKey ARN. For example, arn:aws:kms:us-east-1 :012345678910 :key/abcd1234-a123-456a-a12b-a123b4cd56ef .\nAlias ARN. For example, arn:aws:kms:us-east-1 :012345678910 :alias/ExampleAlias .\nAWS authenticates the CMK asynchronously. Therefore, if you specify an ID, alias, or ARN that is not valid, the action can appear to complete, but eventually fails." }, "OutpostArn": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The Amazon Resource Name (ARN) of the Outpost." }, "Size": { "$ref": "#/definitions/cloudifyIntegerOrGetInput", "description": "The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size.\n\nConstraints: 1-16,384 for gp2 , 4-16,384 for io1 , 500-16,384 for st1 , 500-16,384 for sc1 , and 1-1,024 for standard . If you specify a snapshot, the volume size must be equal to or larger than the snapshot size.\n\nDefault: If you're creating the volume from a snapshot and don't specify a volume size, the default is the snapshot size." }, "SnapshotId": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The snapshot from which to create the volume. You must specify either a snapshot ID or a volume size." }, "VolumeType": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "The volume type. This can be gp2 for General Purpose SSD, io1 for Provisioned IOPS SSD, st1 for Throughput Optimized HDD, sc1 for Cold HDD, or standard for Magnetic volumes.\n\nDefault: gp2", "default": "gp2" }, "DryRun": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation . Otherwise, it is UnauthorizedOperation." }, "TagSpecifications": { "type": "array", "items": { "type": "object", "properties": { "ResourceType": { "description": "The type of resource to tag. Currently, the resource types that support tagging on creation are: capacity-reservation | client-vpn-endpoint | customer-gateway | dedicated-host | dhcp-options | export-image-task | export-instance-task | fleet | fpga-image | host-reservation | import-image-task | import-snapshot-task | instance | internet-gateway | ipv4pool-ec2 | ipv6pool-ec2 | key-pair | launch-template | placement-group | prefix-list | natgateway | network-acl | route-table | security-group | spot-fleet-request | spot-instances-request | snapshot | subnet | traffic-mirror-filter | traffic-mirror-session | traffic-mirror-target | transit-gateway | transit-gateway-attachment | transit-gateway-route-table | volume |vpc | vpc-peering-connection | vpc-endpoint (for interface and gateway endpoints) | vpc-endpoint-service (for AWS PrivateLink) | vpc-flow-log | vpn-connection | vpn-gateway.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "Tags": { "type": "array", "items": { "type": "object", "properties": { "Key": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "Value": { "$ref": "#/definitions/cloudifyStringOrGetInput" } } } } } } } } } }, "required": ["AvailabilityZone"] }, "use_available_zones": { "description": "A boolean to choose another available zone if the one provided is not available.", "type": "boolean" } } } ] }, "nodeTypeAWSEC2Instances": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeAWSEC2Base" }, { "properties": { "resource_config": { "type": "object", "description": "Configuration key-value data to be passed as-is to the corresponding\nBoto3 method. Key names must match the case that Boto3 requires.", "properties": { "MinCount": { "$ref": "#/definitions/cloudifyIntegerOrGetInput", "default": "1" }, "MaxCount": { "$ref": "#/definitions/cloudifyIntegerOrGetInput", "default": "1" }, "ImageId": { "description": "The ID of the AMI. An AMI ID is required to launch an instance and must be specified here or in a launch template", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "InstanceType": { "description": "The instance type. For more information, see Instance types in the Amazon Elastic Compute Cloud User Guide.\nhttps://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html\nDefault: m1.small", "$ref": "#/definitions/cloudifyStringOrGetInput", "default": "m1.small" }, "LaunchTemplate": { "type": "object", "properties": { "LaunchTemplateId": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "LaunchTemplateName": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "Version": { "$ref": "#/definitions/cloudifyStringOrGetInput" } } }, "kwargs": { "type": "object", "description": "http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.run_instances", "properties": { "BlockDeviceMappings": { "type": "object", "description": "The block device mapping entries." }, "Ipv6AddressCount": { "description": "[EC2-VPC] The number of IPv6 addresses to associate with the primary network interface. Amazon EC2 chooses the IPv6 addresses from the range of your subnet. You cannot specify this option and the option to assign specific IPv6 addresses in the same request. You can specify this option if you've specified a minimum number of instances to launch.\n\nYou cannot specify this option and the network interfaces option in the same request.", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "KernelId": { "description": "The ID of the kernel.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "KeyName": { "description": "The name of the key pair. You can create a key pair using CreateKeyPair or ImportKeyPair ", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "SecondaryPrivateIpAddressCount": { "description": "The number of secondary private IPv4 addresses to assign to a network interface.", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "SubnetId": { "description": "The ID of the subnet for the network interface.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "SecurityGroupIds": { "description": "The IDs of the security groups. You can create a security group using CreateSecurityGroup.\n\nIf you specify a network interface, you must specify any security groups as part of the network interface.", "type": "array", "items": { "$ref": "#/definitions/cloudifyStringOrGetInput" } } } } }, "required": ["MaxCount", "MinCount"] }, "agent_config": { "type": "object", "properties": { "install_method": { "type": "string" } } }, "use_ipv6_ip": { "type": "boolean" } } } ] }, "nodeTypeAWSEC2Image": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeAWSEC2Base" }, { "properties": { "resource_config": { "description": "Configuration key-value data to be passed as-is to the corresponding\nBoto3 method. Key names must match the case that Boto3 requires.", "type": "object", "properties": { "kwargs": { "description": "https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2.html#EC2.Client.describe_images", "type": "object", "properties": { "Filters": { "type": "array", "items": { "type": "object", "properties": { "Name": { "type": "string" }, "Values": { "type": "array", "items": { "type": "string" } } } } } } } } } } } ] }, "nodeTypeAWSEC2Interface": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeAWSEC2Base" }, { "properties": { "resource_config": { "description": "Configuration key-value data to be passed as-is to the corresponding\nBoto3 method. Key names must match the case that Boto3 requires.", "type": "object", "properties": { "kwargs": { "description": "http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_network_interface", "type": "object", "properties": { "Description": { "description": "A description for the network interface.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "Groups": { "description": "The IDs of one or more security groups.", "type": "array", "items": { "$ref": "#/definitions/cloudifyStringOrGetInput" } }, "Ipv6AddressCount": { "description": "The number of IPv6 addresses to assign to a network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range. You can't use this option if specifying specific IPv6 addresses. If your subnet has the AssignIpv6AddressOnCreation attribute set to true , you can specify 0 to override this setting.", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "PrivateIpAddress": { "description": "The primary private IPv4 address of the network interface. If you don't specify an IPv4 address, Amazon EC2 selects one for you from the subnet's IPv4 CIDR range. If you specify an IP address, you cannot indicate any IP addresses specified in privateIpAddresses as primary (only one IP address can be designated as primary).", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "SecondaryPrivateIpAddressCount": { "description": "The number of secondary private IPv4 addresses to assign to a network interface. When you specify a number of secondary IPv4 addresses, Amazon EC2 selects these IP addresses within the subnet's IPv4 CIDR range. You can't specify this option and specify more than one private IP address using privateIpAddresses .\n\nThe number of IP addresses you can assign to a network interface varies by instance type. For more information, see IP Addresses Per ENI Per Instance Type in the Amazon Virtual Private Cloud User Guide .", "$ref": "#/definitions/cloudifyIntegerOrGetInput" }, "InterfaceType": { "description": "Indicates the type of network interface. To create an Elastic Fabric Adapter (EFA), specify efa . For more information, see Elastic Fabric Adapter in the Amazon Elastic Compute Cloud User Guide.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "SubnetId": { "description": "The ID of the subnet to associate with the network interface.", "$ref": "#/definitions/cloudifyStringOrGetInput" } }, "required": ["SubnetId"] } } } } } ] }, "nodeTypeAWSEC2SecurityGroupRuleIngress": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeAWSEC2Base" }, { "properties": { "resource_config": { "description": "Configuration key-value data to be passed as-is to the corresponding\nBoto3 method. Key names must match the case that Boto3 requires.", "type": "object", "properties": { "IpPermissions": { "type": "array", "items": { "type": "object", "properties": { "IpProtocol": { "type": "string" }, "FromPort": { "type": "integer" }, "ToPort": { "type": "integer" }, "IpRanges": { "type": "array", "properties": { "CidrIp": { "type": "string" } } } } } }, "kwargs": { "description": "http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.authorize_security_group_ingress\nhttp://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.authorize_security_group_egress", "type": "object" } } } } } ] }, "nodeTypeAWSEC2SecurityGroup": { "type": "object", "allOf": [ { "$ref": "#/definitions/nodeTypeAWSEC2Base" }, { "properties": { "resource_config": { "description": "Configuration key-value data to be passed as-is to the corresponding\nBoto3 method. Key names must match the case that Boto3 requires.", "type": "object", "properties": { "GroupName": { "description": "The name of the security group.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "Description": { "description": "The description for the security group.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "VpcId": { "description": "The ID of the VPC. Required for EC2-VPC.", "$ref": "#/definitions/cloudifyStringOrGetInput" }, "kwargs": { "description": "http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_security_group", "type": "object" } }, "required": ["Description", "GroupName"] } } } ] }, "nodeTypeAWSEC2NATGateway": { "type": "object", "properties": { "client_config": { "$ref": "#/definitions/awsClientConfig" }, "Tags": { "$ref": "#/definitions/tags" } } }, "nodeTypeAWSEC2ElasticIP": { "type": "object", "properties": { "client_config": { "$ref": "#/definitions/awsClientConfig" } } }, "nodeTypeAWSEC2Route": { "type": "object", "properties": { "resource_config": { "type": "object", "properties": { "kwargs": { "type": "object", "properties": { "DestinationCidrBlock": { "$ref": "#/definitions/cloudifyStringOrGetInput" } } } } }, "client_config": { "$ref": "#/definitions/awsClientConfig" } } }, "nodeTypeAWSEC2RouteTable": { "type": "object", "properties": { "client_config": { "$ref": "#/definitions/awsClientConfig" }, "Tags": { "$ref": "#/definitions/tags" } } }, "nodeTypeAWSEC2Subnet": { "type": "object", "properties": { "resource_config": { "type": "object", "properties": { "CidrBlock": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "AvailabilityZone": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "kwargs": { "type": "object", "properties": { "Ipv6CidrBlock": { "$ref": "#/definitions/cloudifyStringOrGetInput" } } } } }, "client_config": { "$ref": "#/definitions/awsClientConfig" }, "Tags": { "$ref": "#/definitions/tags" } } }, "nodeTypeAWSEC2VPC": { "type": "object", "properties": { "resource_config": { "type": "object", "properties": { "CidrBlock": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "kwargs": { "type": "object", "properties": { "AmazonProvidedIpv6CidrBlock": { "$ref": "#/definitions/cloudifyBooleanOrGetInput" } } } } }, "client_config": { "$ref": "#/definitions/awsClientConfig" }, "Tags": { "$ref": "#/definitions/tags" } } }, "cloudifyDatatypesHelmConfig": { "type": "object", "properties": { "executable_path": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Helm binary path.", "default": "" } } }, "cloudifyDatatypesHelmConfigurationVariant": { "type": "object", "description": "Type representing all Kubernetes API configuration variants. Each property represents separate supported variant of configuration. For now, until Helm support \"--insecure\" one of \"blueprint_file_name\",\n \"manager_file_path\" and \"file_content\" must be used.\n \"api_key\" inputs will override kubeconfig data.", "properties": { "blueprint_file_name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of Kubernetes configuration file attached to blueprint(path)." }, "manager_file_path": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Path to Kubernetes configuration file placed on Cloudify Manager VM." }, "file_content": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Content (YAML) of Kubernetes configuration file. kubeconfig string or dict are supported. " }, "api_options": { "$ref": "#/definitions/cloudifyDatatypesHelmApiOptions", "description": "Set of basic properties describing Kubernetes API access." } } }, "cloudifyDatatypesHelmApiOptions": { "type": "object", "properties": { "host": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "HTTP/HTTPS URL to Kubernetes API." }, "api_key": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Bearer token used for authentication." } } }, "cloudifyDatatypesHelmAuthenticationVariant": { "type": "object", "description": "Type representing all authentication variants.\n for different Kubernetes cloud providers.\n Each property represents separate supported variant of authentication.\n You should choose one variant and fill in only on property.", "properties": { "gcp_service_account": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": " (JSON) Content of Google Cloud Platform Service Account file." } } }, "cloudifyDatatypesHelmClientConfig": { "type": "object", "description": "Configuration properties for Helm to interact with kubernetes cluster.\n If kube_config file not provided then kube_token and kube_api_server should provided.", "properties": { "configuration": { "$ref": "#/definitions/cloudifyDatatypesHelmConfigurationVariant" }, "authentication": { "$ref": "#/definitions/cloudifyDatatypesHelmAuthenticationVariant" } } }, "cloudifyDatatypesHelmReleaseConfig": { "type": "object", "description": "configuration properties for release node type.", "properties": { "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the created release." }, "chart": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the chart to install.For example: stable/mysql." }, "values_file": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Path to values files." }, "set_values": { "$ref": "#/definitions/cloudifyDatatypesHelmSetFlagsList", "description": " List of variables names and values to set. For example:\n - name: x\n value: y\n - name: a\n value: b\n It equals to --set x=y --set a=b in helm command.", "default": [] }, "flags": { "$ref": "#/definitions/cloudifyDatatypesHelmSetFlagsList", "description": "List of flags add to both \"helm install\" and \"helm uninstall\" commands.\n For example:\n - name: namespace\n value: my_namespace\n If the flag not requires value, omit \"value\" and specify only the name as element in the list.", "default": [] } }, "required": ["name", "chart"] }, "cloudifyDatatypesHelmRepoConfig": { "type": "object", "description": "configuration properties for repo node type.", "properties": { "name": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Name of the repo that added/removed." }, "repo_url": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "URL of the repo to add." }, "flags": { "$ref": "#/definitions/cloudifyDatatypesHelmSetFlagsList", "description": "List of flags add to both \"helm repo add\" and \"helm repo remove\" commands.", "default": [] } }, "required": ["name", "repo_url"] }, "cloudifyDatatypesHelmSetFlagsList": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "value": {} } }, "additionalProperties": false, "default": [] }, "nodeTypeHelmBinaryProperties": { "type": "object", "properties": { "helm_config": { "$ref": "#/definitions/cloudifyDatatypesHelmConfig" }, "use_existing_resource": { "$ref": "#/definitions/cloudifyBooleanOrGetInput", "description": "If true, use an existing helm installation rather than installing it.", "default": false }, "installation_source": { "$ref": "#/definitions/cloudifyStringOrGetInput", "description": "Location to download the Helm installation from. Ignored if 'use_existing_resource' is true.", "default": "https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz" } } }, "nodeTypeHelmReleaseProperties": { "type": "object", "properties": { "helm_config": { "$ref": "#/definitions/cloudifyDatatypesHelmConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource,\ntrue if you are bringing an existing resource, false if you want cloudify to create it.", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "client_config": { "$ref": "#/definitions/cloudifyDatatypesHelmClientConfig" }, "resource_config": { "$ref": "#/definitions/cloudifyDatatypesHelmReleaseConfig" } }, "required": ["client_config", "resource_config"] }, "nodeTypeHelmReleaseInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "start": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["helm.cloudify_helm.tasks.install_release"] }, "inputs": { "type": "object", "properties": { "flags": { "$ref": "#/definitions/cloudifyDatatypesHelmSetFlagsList", "description": " Flags to add only to `helm install` command.The format is the same as \"flags\"." } } } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["helm.cloudify_helm.tasks.uninstall_release"] }, "inputs": { "type": "object", "properties": { "flags": { "$ref": "#/definitions/cloudifyDatatypesHelmSetFlagsList", "description": " Flags to add only to `helm uninstall` command.The format is the same as \"flags\"." } } } } } } } } }, "nodeTypeHelmRepoProperties": { "type": "object", "properties": { "helm_config": { "$ref": "#/definitions/cloudifyDatatypesHelmConfig" }, "use_external_resource": { "description": "Indicate whether the resource exists or if Cloudify should create the resource,\ntrue if you are bringing an existing resource, false if you want cloudify to create it.", "$ref": "#/definitions/cloudifyBooleanOrGetInput", "default": false }, "resource_config": { "$ref": "#/definitions/cloudifyDatatypesHelmRepoConfig" } }, "required": ["resource_config"] }, "nodeTypeHelmRepoInterfaces": { "type": "object", "properties": { "cloudify.interfaces.lifecycle": { "type": "object", "properties": { "start": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["helm.cloudify_helm.tasks.add_repo"] }, "inputs": { "type": "object", "properties": { "flags": { "$ref": "#/definitions/cloudifyDatatypesHelmSetFlagsList", "description": " Flags to add only to `helm repo add` command.The format is the same as \"flags\"." } } } } }, "delete": { "type": "object", "properties": { "implementation": { "type": "string", "enum": ["helm.cloudify_helm.tasks.remove_repo"] }, "inputs": { "type": "object", "properties": { "flags": { "$ref": "#/definitions/cloudifyDatatypesHelmSetFlagsList", "description": " Flags to add only to `helm repo remove` command.The format is the same as \"flags\"." } } } } } } } } }, "cloudifyIntegerOrGetInput": { "anyOf": [ { "type": "integer" }, { "$ref": "#/definitions/cloudifyGetIntrinsicFunction" } ] }, "cloudifyBooleanOrGetInput": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/definitions/cloudifyGetIntrinsicFunction" } ] }, "cloudifyStringOrGetInput": { "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/cloudifyGetIntrinsicFunction" } ] }, "cloudifyGetIntrinsicFunction": { "anyOf": [ { "$ref": "#/definitions/cloudifyGetInput" }, { "$ref": "#/definitions/cloudifyGetSecret" }, { "$ref": "#/definitions/cloudifyGetAttribute" }, { "$ref": "#/definitions/cloudifyGetProperty" } ] }, "cloudifyGetAttribute": { "type": "object", "properties": { "get_attribute": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] } } }, "cloudifyGetProperty": { "type": "object", "properties": { "get_property": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] } } }, "cloudifyGetInput": { "type": "object", "properties": { "get_input": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] } } }, "cloudifyGetSecret": { "type": "object", "properties": { "get_secret": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] } } }, "nodeTypeAWSInternetGateway": { "type": "object", "properties": { "client_config": { "$ref": "#/definitions/awsClientConfig" } } }, "awsClientConfig": { "type": "object", "properties": { "aws_access_key_id": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "aws_secret_access_key": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "region_name": { "$ref": "#/definitions/cloudifyStringOrGetInput" } } }, "tags": { "description": "Tags to add to an EC2 resource", "type": "array", "items": { "type": "object", "properties": { "Key": { "$ref": "#/definitions/cloudifyStringOrGetInput" }, "Value": { "$ref": "#/definitions/cloudifyStringOrGetInput" } } } }, "nodeTemplateInterfaces": { "type": "object", "description": "Interfaces enable you to map logical tasks to executable operations.", "patternProperties": { "": { "$ref": "#/definitions/nodeTemplateInterface" } } }, "nodeTemplateInterface": { "type": "object", "properties": { "configure": { "$ref": "#/definitions/nodeTemplateInterfaceAction" }, "delete": { "$ref": "#/definitions/nodeTemplateInterfaceAction" } }, "patternProperties": { "": { "$ref": "#/definitions/nodeTemplateInterfaceAction" } } }, "nodeTemplateInterfaceAction": { "anyOf": [ { "type": "string" }, { "type": "object", "properties": { "implementation": { "type": "string", "description": "The script or plugin task name to execute." }, "inputs": { "type": "object", "description": "Schema of inputs to be passed to the implementation as kwargs." }, "executor": { "type": "string", "description": "Valid values: central_deployment_agent, host_agent. See the Plugins Specification for more info.", "enum": ["central_deployment_agent", "host_agent"] }, "max_retries": { "type": "number", "description": "Maximum number of retries for a task. -1 means infinite retries (Default: task_retries in the Cloudify Manager config.yaml file for remote workflows, and task_retries workflow configuration for local workflows)." }, "retry_interval": { "type": "number", "description": "Minimum wait time (in seconds) between task retries (Default: task_retry_interval in the Cloudify Manager config.yaml file for remote workflows and task_retry_interval workflow configuration for local workflows)." }, "timeone": { "type": "number", "description": "Number of seconds to wait before the operation is terminated by the orchestrator. A value of 0 (or no value at all, which is the default) means no timeout.", "default": 0 }, "timeout_recoverable": { "type": "boolean", "description": "If true (the default), and a timeout occurred, then, the operation will raise a RecoverableError, resulting in the operation being retried. Otherwise, a NonRecoverableError is raised, ending the execution with a failure.", "default": true } }, "additionalProperties": false } ] }, "nodeTemplateRelationships": { "type": "array", "description": "relationships enable you to define how nodes relate to one another. For example, a web_server node can be contained_in a vm node or an application node can be connected_to a database node.", "items": { "$ref": "#/definitions/nodeTemplateRelationship" } }, "nodeTemplateRelationship": { "type": "object", "properties": { "type": { "type": "string", "description": "Either a newly-declared relationship type or one of the relationship types provided by default when importing the types.yaml file." }, "target": { "type": "string", "description": "The name of the node to which the current node is related." }, "connection_type": { "type": "string", "description": "Valid values: all_to_all and all_to_one (See explanation below.)", "enum": ["all_to_all", "all_to_one"] }, "source_interfaces": { "type": "object", "description": "A dictionary of interfaces." }, "target_interfaces": { "type": "object", "description": "A dictionary of interfaces." } }, "required": ["type"], "additionalProperties": false }, "nodeTypes": { "type": "object", "patternProperties": { "": { "$ref": "#/definitions/nodeType" } } }, "nodeType": { "type": "object", "properties": { "derived_from": { "type": "string", "description": "A string referencing a parent type." }, "interfaces": { "type": "object", "description": "A dictionary of node interfaces." }, "properties": { "type": "object", "description": "A dictionary of node properties." } } } }, "properties": { "tosca_definitions_version": { "description": "tosca_definitions_version is a top level property of the blueprint which is used to specify the DSL version used. For Cloudify, the versions that are currently defined are cloudify_dsl_1_0, cloudify_dsl_1_1, cloudify_dsl_1_2 and cloudify_dsl_1_3.", "type": "string", "enum": [ "cloudify_dsl_1_0", "cloudify_dsl_1_1", "cloudify_dsl_1_2", "cloudify_dsl_1_3" ], "default": "cloudify_dsl_1_3" }, "imports": { "description": "imports enable the author of a blueprint to reuse blueprint files, or parts of them, and to use predefined types (e.g. from the types.yaml file).", "type": "array", "items": { "anyOf": [ { "type": "string" }, { "type": "string", "enum": [ "http://www.getcloudify.org/spec/cloudify/4.5/types.yaml", "plugin:cloudify-ansible-plugin", "plugin:cloudify-aws-plugin", "plugin:cloudify-azure-plugin", "plugin:cloudify-cloudstack-plugin", "plugin:cloudify-diamond-plugin", "plugin:cloudify-fabric-plugin", "plugin:cloudify-gcp-plugin", "plugin:cloudify-host-pool-plugin", "plugin:cloudify-kubernetes-plugin", "plugin:cloudify-openstack-plugin", "plugin:cloudify-utilities-plugin", "plugin:cloudify-vsphere-plugin", "plugin:cloudify-terraform-plugin", "plugin:cloudify-helm-plugin" ] } ], "default": "http://www.getcloudify.org/spec/cloudify/4.5/types.yaml" } }, "data_types": { "$ref": "#/definitions/dataTypes" }, "inputs": { "description": "inputs are parameters that are injected into a blueprint when a deployment is created. These parameters can be referenced by using the get_input intrinsic function.", "type": "object", "properties": { "aws_access_key_id": { "$ref": "#/definitions/inputProperty" }, "aws_secret_access_key": { "$ref": "#/definitions/inputProperty" }, "aws_region_name": { "$ref": "#/definitions/inputProperty" }, "aws_account_id": { "$ref": "#/definitions/inputProperty" }, "aws_region_zone1": { "$ref": "#/definitions/inputProperty" }, "aws_region_zone2": { "$ref": "#/definitions/inputProperty" }, "aws_cloudwatch_log_arn": { "$ref": "#/definitions/inputProperty" } }, "patternProperties": { "": { "$ref": "#/definitions/inputProperty" } } }, "dsl_definitions": { "type": "object" }, "node_types": { "$ref": "#/definitions/nodeTypes" }, "node_templates": { "$ref": "#/definitions/nodeTemplates" } }, "title": "Blueprint", "type": "object" }
cloudify
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "dcosReleaseVersion": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)(?:\\.(?:0|[1-9][0-9]*))*$", "description": "A string representation of a DC/OS Release Version" }, "url": { "type": "string", "allOf": [ { "format": "uri" }, { "pattern": "^https?://" } ] }, "packageInformation": { "type": "object", "properties": { "packageDefinition": { "$ref": "#/definitions/packageDetails" }, "resourceDefinition": { "$ref": "#/definitions/resource" } }, "required": [ "packageDefinition" ], "additionalProperties": false }, "packageDetails": { "type": "object", "properties": { "packagingVersion": { "type": "string" }, "name": { "type": "string" }, "version": { "type": "string" }, "maintainer": { "type": "string" }, "description": { "type": "string" }, "tags": { "type": "array", "items": { "type": "string", "pattern": "^[^\\s]+$" } }, "selected": { "type": "boolean" }, "scm": { "type": "string" }, "website": { "type": "string" }, "framework": { "type": "boolean" }, "preInstallNotes": { "type": "string" }, "postInstallNotes": { "type": "string" }, "postUninstallNotes": { "type": "string" }, "licenses": { "type": "array", "items": { "$ref": "#/definitions/license" } } }, "required": [ "packagingVersion", "name", "version", "maintainer", "description", "tags" ], "additionalProperties": false }, "license": { "type": "object", "properties": { "name": { "type": "string" }, "url": { "$ref": "#/definitions/url" } }, "required": [ "name", "url" ], "additionalProperties": false }, "resource": { "additionalProperties": false, "type": "object", "properties": { "assets": { "type": "object", "properties": { "uris": { "type": "object", "additionalProperties": { "type": "string" } }, "container": { "type": "object", "properties": { "docker": { "type": "object", "additionalProperties": { "type": "string" } } }, "additionalProperties": false } }, "additionalProperties": false }, "images": { "type": "object", "properties": { "icon-small": { "type": "string", "description": "PNG icon URL, preferably 48 by 48 pixels." }, "icon-medium": { "type": "string", "description": "PNG icon URL, preferably 128 by 128 pixels." }, "icon-large": { "type": "string", "description": "PNG icon URL, preferably 256 by 256 pixels." }, "screenshots": { "type": "array", "items": { "type": "string", "description": "PNG screen URL, preferably 1024 by 1024 pixels." } } }, "additionalProperties": false } } }, "installation": { "type": "object", "properties": { "appId": { "type": "string" }, "packageInformation": { "$ref": "#/definitions/packageInformation" } }, "required": [ "appId", "packageInformation" ], "additionalProperties": false } }, "type": "object", "properties": { "packages": { "type": "array", "description": "The list of installed packages", "items": { "$ref": "#/definitions/installation" } } }, "required": [ "packages" ], "additionalProperties": false }
o79440
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "items": { "type": "array", "items": { "title": "Experience Version", "description": "Schema for a single Experience Version", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "experienceVersionId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "createdById": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "createdByType": { "type": "string", "enum": [ "flow", "user", "apiToken" ] }, "lastUpdated": { "type": "string", "format": "date-time" }, "endpointDefaultCors": { "type": "boolean" }, "version": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "attachedDomains": { "type": "array", "items": { "type": "object", "properties": { "domainName": { "type": "string", "maxLength": 1024, "minLength": 3 }, "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } } } }, "attachedSlugs": { "type": "array", "items": { "type": "object", "properties": { "slug": { "type": "string" }, "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } } } } } } }, "count": { "type": "integer" }, "totalCount": { "type": "integer" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } } }
o9894
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": true, "id": "https://json.schemastore.org/component.json", "properties": { "private": { "description": "A boolean specifying whether the component is private, defaulting to false.", "type": "boolean", "default": false }, "name": { "description": "A public component MUST have a 'name'. This is what will be passed to require().", "type": "string", "pattern": "^[0-9a-z-_]+$" }, "repo": { "description": "The public component MUST have a 'repository' property, this is registry end-point consisting of <username>/<project> , for example 'visionmedia/page.js' or 'component/dialog'.", "type": "string" }, "description": { "description": "The component SHOULD have a 'description' property. This helps people find and understand your component.", "type": "string" }, "version": { "description": "The public component MUST include a version, allowing other scripts to depend on specific releases of the component.", "type": "string" }, "keywords": { "description": "Keywords are used when searching for a component. A public component SHOULD list a few keywords.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "main": { "description": "It is recommended that you use 'index.js' for the main component file, however if you use another filename, you MUST define a 'main' field for that.", "type": "string" }, "scripts": { "description": "The scripts field explicitly specifies the scripts for this component. For public components, these must be regular JavaScript files. For private components, these should be regular Javascript files.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "styles": { "description": "The styles field explicitly specifies the stylesheets for this component. For public components, these must be regular CSS files. For private components, these should be regular CSS files.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "json": { "description": "The json field explicitly specifies the JSON files for this component. Each file must be valid JSON .", "type": "array", "minItems": 1, "items": { "type": "string" } }, "images": { "description": "The images field MUST be supported and fetched upon installation, this allows component build tools to rewrite stylesheet url() s in order to accomodate various file serving techniques.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "fonts": { "description": "The fonts field MUST be supported and fetched upon installation, this allows component build tools to rewrite stylesheet url() s in order to accomodate various file serving techniques.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "files": { "description": "In the future we will classify more file types, however for those which are not treated uniquely such as fonts may be placed in a files array to aid build and installation tools.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "dependencies": { "description": "Runtime dependencies.", "type": "object", "additionalProperties": { "type": "string" } }, "locals": { "description": "Local dependencies are already located on disk, these are not installed, but are however included in the builds, thus no versions need to be defined. Local components should be located in a directory specified within .paths.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "remotes": { "description": "The public component must not contain any remotes.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "paths": { "description": "The public component must not contain any paths.", "type": "array", "minItems": 1, "items": { "type": "string" } }, "templates": { "description": "The templates array MUST provide the contents of each file as a require-able module. For example the following must provide the HTML string via require('user.html').", "type": "array", "minItems": 1, "items": { "type": "string" } }, "demo": { "type": "string" }, "development": { "$ref": "#" }, "license": { "description": "The license string such as 'MIT' may be used for search output and other reporting, developers SHOULD specify this field", "type": "string" } }, "title": "JSON schema for component.json files", "type": "object" }
component
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "type": "object" }, "shape_type": { "description": "The type of shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape_type", "dimensions" ], "type": "object" }
calculate_area_4fc79198
{ "additionalProperties": false, "description": "Schema for a Google Analytics general entity", "properties": { "anonymizeIp": { "type": [ "boolean", "null" ] }, "cacheBuster": { "type": [ "string", "null" ] }, "dataSource": { "type": [ "string", "null" ] }, "protocolVersion": { "type": "string" }, "queueTime": { "type": [ "integer", "null" ] }, "trackingId": { "type": "string" } }, "required": [ "protocolVersion", "trackingId" ], "self": { "format": "jsonschema", "name": "general", "vendor": "com.google.analytics.measurement-protocol", "version": "1-0-0" }, "type": "object" }
sp_45_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "integer" }, "parentId": { "type": "integer" }, "name": { "type": "string" }, "sessionName": { "type": "string" }, "author": { "type": "string" }, "url": { "type": "string" }, "type": { "type": "string" }, "data": { "type": "object", "properties": { "colour0": { "type": "string" }, "colour1": { "type": "string" }, "colour2": { "type": "string" }, "colour3": { "type": "string" }, "colour4": { "type": "string" }, "colour5": { "type": "string" }, "colour6": { "type": "string" }, "colour7": { "type": "string" }, "colour8": { "type": "string" }, "colour9": { "type": "string" }, "colour10": { "type": "string" }, "colour11": { "type": "string" }, "colour12": { "type": "string" }, "colour13": { "type": "string" }, "colour14": { "type": "string" }, "colour15": { "type": "string" }, "colour16": { "type": "string" }, "colour17": { "type": "string" }, "colour18": { "type": "string" }, "colour19": { "type": "string" }, "colour20": { "type": "string" }, "colour21": { "type": "string" } }, "required": [ "colour0", "colour1", "colour2", "colour3", "colour4", "colour5", "colour6", "colour7", "colour8", "colour9", "colour10", "colour11", "colour12", "colour13", "colour14", "colour15", "colour16", "colour17", "colour18", "colour19", "colour20", "colour21" ] } }, "required": [ "name", "sessionName", "author", "url", "type", "data" ] }
o45752
{ "id": "http://www.xsd2jsonschema.org/schema/functionalTestSchema.json", "$schema": "http://json-schema.org/draft-04/schema#", "title": "Xsd2JsonSchema Function Test", "description": "Defines the format of Xsd2JsonSchema functional tests", "type": "object", "properties": { "xsdPath": { "type": "string" }, "xsdFilename": { "type": "string" }, "testInstances": { "type": "array", "items": { "$ref": "#/definitions/TestInstanceType" } } }, "definitions": { "TestInstanceType": { "type": "object", "properties": { "expectedToPass": { "type": "boolean" }, "testData": { "description": "A JSON test inances. Any properly formatted JSON is acceptable." } } } } }
o21865
{ "properties": { "Cores": { "type": "string" }, "DVID datastore": { "type": "string" }, "Maximum Cores": { "type": "string" }, "Server uptime": { "type": "string" }, "Storage backend": { "type": "string" }, "Storage driver": { "type": "string" }, "version": { "type": "string" } }, "type": "object", "version": "0.01" }
o48516
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Athlete", "description": "Details about a single athlete.", "type": "object", "properties": { "name": { "description": "Athlete's name", "type": "string", "minLength": 1 }, "club": { "description": "Athlete's club for a given event/competition", "type": "string", "minLength": 1 }, "first_claim": { "description": "Athlete's first claim club", "type": "string", "minLength": 1 }, "vest_number": { "description": "Athlete's vest number for a given event/competition", "type": [ "number", "string" ], "minimum": 0, "minLength": 1 } }, "required": [ "name" ] }
o65374
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "IDType": { "pattern": "^\\d{10}$", "type": "string" }, "ISO8601-Date": { "pattern": "^\\d{4}-\\d{2}-\\d{2}$", "type": "string" }, "ISO8601-Timestamp": { "pattern": "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}(:\\d{2})?(([+-]\\d{2}(:\\d{2})?)|Z)", "type": "string" }, "LISAManagerReferenceNumberType": { "pattern": "^Z\\d{6}$", "type": "string" }, "financialPeriodType": { "properties": { "endDate": { "$ref": "#/definitions/ISO8601-Date" }, "startDate": { "$ref": "#/definitions/ISO8601-Date" } }, "type": "object" } }, "properties": { "LISAManagerReferenceNumber": { "$ref": "#/definitions/LISAManagerReferenceNumberType" }, "_links": { "type": "object" }, "accountID": { "type": "string" }, "closeDate": { "$ref": "#/definitions/ISO8601-Date" }, "deathNotification": { "additionalProperties": false, "properties": { "DoD": { "$ref": "#/definitions/ISO8601-Date" }, "notifiedDate": { "$ref": "#/definitions/ISO8601-Timestamp" } }, "required": [ "notifiedDate", "DoD" ], "type": "object" }, "financialPeriods": { "items": { "properties": { "_links": { "type": "object" }, "financialPeriod": { "$ref": "#/definitions/financialPeriodType" }, "firstSubscribed": { "$ref": "#/definitions/ISO8601-Timestamp" } }, "required": [ "financialPeriod", "_links" ], "type": "object" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "healthStatus": { "enum": [ "default", "dead", "terminally-ill" ], "type": "string" }, "investorID": { "$ref": "#/definitions/IDType" }, "openDate": { "$ref": "#/definitions/ISO8601-Date" }, "status": { "enum": [ "open", "closed", "transferred-out" ], "type": "string" }, "terminalIllnessNotification": { "properties": { "notifiedDate": { "$ref": "#/definitions/ISO8601-Timestamp" } }, "required": [ "notifiedDate" ], "type": "object" } }, "required": [ "accountID", "LISAManagerReferenceNumber", "investorID", "status", "openDate" ], "type": "object" }
o70372
{ "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_Affinity": { "description": "Affinity is a group of affinity scheduling rules.", "properties": { "nodeAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity", "description": "Describes node affinity scheduling rules for the pod." }, "podAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity", "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." }, "podAntiAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity", "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." } }, "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_AzureFileVolumeSource": { "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" }, "shareName": { "description": "Share Name", "type": "string" } }, "required": [ "secretName", "shareName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource": { "description": "Represents a source location of a volume to mount, managed by an external CSI driver", "properties": { "driver": { "description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.", "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "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 secret references are passed." }, "readOnly": { "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, "description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.", "type": "object" } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities": { "description": "Adds and removes POSIX capabilities from running containers.", "properties": { "add": { "description": "Added capabilities", "items": { "type": "string" }, "type": "array" }, "drop": { "description": "Removed capabilities", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource": { "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_LocalObjectReference", "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_CinderVolumeSource": { "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_LocalObjectReference", "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_ConfigMapEnvSource": { "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", "properties": { "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 must be defined", "type": "boolean" } }, "type": "object" }, "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_ConfigMapProjection": { "description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "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 keys must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource": { "description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "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 keys must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container": { "description": "A single application container that you want to run within a pod.", "properties": { "args": { "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "env": { "description": "List of environment variables to set in the container. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "envFrom": { "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "image": { "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.", "type": "string" }, "imagePullPolicy": { "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", "type": "string" }, "lifecycle": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle", "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated." }, "livenessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "name": { "description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", "type": "string" }, "ports": { "description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort" }, "type": "array", "x-kubernetes-list-map-keys": [ "containerPort", "protocol" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "containerPort", "x-kubernetes-patch-strategy": "merge" }, "readinessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "resources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements", "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/" }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext", "description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" }, "startupProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" }, "stdinOnce": { "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", "type": "boolean" }, "terminationMessagePath": { "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "type": "string" }, "terminationMessagePolicy": { "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", "type": "string" }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": "boolean" }, "volumeDevices": { "description": "volumeDevices is the list of block devices to be used by the container.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice" }, "type": "array", "x-kubernetes-patch-merge-key": "devicePath", "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount" }, "type": "array", "x-kubernetes-patch-merge-key": "mountPath", "x-kubernetes-patch-strategy": "merge" }, "workingDir": { "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort": { "description": "ContainerPort represents a network port in a single container.", "properties": { "containerPort": { "_format": "int32", "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", "type": "integer" }, "hostIP": { "description": "What host IP to bind the external port to.", "type": "string" }, "hostPort": { "_format": "int32", "description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.", "type": "integer" }, "name": { "description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", "type": "string" }, "protocol": { "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".", "type": "string" } }, "required": [ "containerPort" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection": { "description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.", "properties": { "items": { "description": "Items is a list of DownwardAPIVolume file", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile": { "description": "DownwardAPIVolumeFile represents information to create the file containing the pod field", "properties": { "fieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector", "description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported." }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'", "type": "string" }, "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, requests.cpu and requests.memory) are currently supported." } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource": { "description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "Items is a list of downward API volume file", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource": { "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.", "properties": { "medium": { "description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", "type": "string" }, "sizeLimit": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource": { "description": "EnvFromSource represents the source of a set of ConfigMaps", "properties": { "configMapRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource", "description": "The ConfigMap to select from" }, "prefix": { "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource", "description": "The Secret to select from" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar": { "description": "EnvVar represents an environment variable present in a Container.", "properties": { "name": { "description": "Name of the environment variable. Must be a C_IDENTIFIER.", "type": "string" }, "value": { "description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".", "type": "string" }, "valueFrom": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource", "description": "Source for the environment variable's value. Cannot be used if value is not empty." } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource": { "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" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer": { "description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.", "properties": { "args": { "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "env": { "description": "List of environment variables to set in the container. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "envFrom": { "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "image": { "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images", "type": "string" }, "imagePullPolicy": { "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", "type": "string" }, "lifecycle": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle", "description": "Lifecycle is not allowed for ephemeral containers." }, "livenessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "name": { "description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.", "type": "string" }, "ports": { "description": "Ports are not allowed for ephemeral containers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort" }, "type": "array" }, "readinessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "resources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements", "description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod." }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext", "description": "SecurityContext is not allowed for ephemeral containers." }, "startupProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" }, "stdinOnce": { "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", "type": "boolean" }, "targetContainerName": { "description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.", "type": "string" }, "terminationMessagePath": { "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "type": "string" }, "terminationMessagePolicy": { "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", "type": "string" }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": "boolean" }, "volumeDevices": { "description": "volumeDevices is the list of block devices to be used by the container.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice" }, "type": "array", "x-kubernetes-patch-merge-key": "devicePath", "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount" }, "type": "array", "x-kubernetes-patch-merge-key": "mountPath", "x-kubernetes-patch-strategy": "merge" }, "workingDir": { "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction": { "description": "ExecAction describes a \"run in container\" action.", "properties": { "command": { "description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", "items": { "type": "string" }, "type": "array" } }, "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_FlexVolumeSource": { "description": "FlexVolume represents a generic 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_LocalObjectReference", "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_GitRepoVolumeSource": { "description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.", "properties": { "directory": { "description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.", "type": "string" }, "repository": { "description": "Repository URL", "type": "string" }, "revision": { "description": "Commit hash for the specified revision.", "type": "string" } }, "required": [ "repository" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource": { "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" }, "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_HTTPGetAction": { "description": "HTTPGetAction describes an action based on HTTP Get requests.", "properties": { "host": { "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.", "type": "string" }, "httpHeaders": { "description": "Custom headers to set in the request. HTTP allows repeated headers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader" }, "type": "array" }, "path": { "description": "Path to access on the HTTP server.", "type": "string" }, "port": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." }, "scheme": { "description": "Scheme to use for connecting to the host. Defaults to HTTP.", "type": "string" } }, "required": [ "port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader": { "description": "HTTPHeader describes a custom header to be used in HTTP probes", "properties": { "name": { "description": "The header field name", "type": "string" }, "value": { "description": "The header field value", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler": { "description": "Handler defines a specific action that should be taken", "properties": { "exec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction", "description": "One and only one of the following should be specified. Exec specifies the action to take." }, "httpGet": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction", "description": "HTTPGet specifies the http request to perform." }, "tcpSocket": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias": { "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.", "properties": { "hostnames": { "description": "Hostnames for the above IP address.", "items": { "type": "string" }, "type": "array" }, "ip": { "description": "IP address of the host file entry.", "type": "string" } }, "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_ISCSIVolumeSource": { "description": "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_LocalObjectReference", "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_KeyToPath": { "description": "Maps a string key to a path within a volume.", "properties": { "key": { "description": "The key to project.", "type": "string" }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.", "type": "string" } }, "required": [ "key", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle": { "description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", "properties": { "postStart": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler", "description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" }, "preStop": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler", "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": { "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" } }, "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_NodeAffinity": { "description": "Node affinity is a group of node affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector", "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node." } }, "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_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_PersistentVolumeClaimVolumeSource": { "description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).", "properties": { "claimName": { "description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "type": "string" }, "readOnly": { "description": "Will force the ReadOnly setting in VolumeMounts. Default false.", "type": "boolean" } }, "required": [ "claimName" ], "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_PodAffinity": { "description": "Pod affinity is a group of inter pod affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": { "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over a set of resources, in this case pods." }, "namespaces": { "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"", "items": { "type": "string" }, "type": "array" }, "topologyKey": { "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.", "type": "string" } }, "required": [ "topologyKey" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity": { "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig": { "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", "properties": { "nameservers": { "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.", "items": { "type": "string" }, "type": "array" }, "options": { "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption" }, "type": "array" }, "searches": { "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption": { "description": "PodDNSConfigOption defines DNS resolver options of a pod.", "properties": { "name": { "description": "Required.", "type": "string" }, "value": { "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate": { "description": "PodReadinessGate contains the reference to a pod condition", "properties": { "conditionType": { "description": "ConditionType refers to a condition in the pod's condition list with matching type.", "type": "string" } }, "required": [ "conditionType" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext": { "description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.", "properties": { "fsGroup": { "_format": "int64", "description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.", "type": "integer" }, "fsGroupChangePolicy": { "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".", "type": "string" }, "runAsGroup": { "_format": "int64", "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", "type": "integer" }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "boolean" }, "runAsUser": { "_format": "int64", "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container." }, "supplementalGroups": { "description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.", "items": { "_format": "int64", "type": "integer" }, "type": "array" }, "sysctls": { "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl" }, "type": "array" }, "windowsOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec": { "description": "PodSpec is a description of a pod.", "properties": { "activeDeadlineSeconds": { "_format": "int64", "description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.", "type": "integer" }, "affinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity", "description": "If specified, the pod's scheduling constraints" }, "automountServiceAccountToken": { "description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.", "type": "boolean" }, "containers": { "description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "dnsConfig": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig", "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." }, "dnsPolicy": { "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.", "type": "string" }, "enableServiceLinks": { "description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.", "type": "boolean" }, "ephemeralContainers": { "description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "hostAliases": { "description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias" }, "type": "array", "x-kubernetes-patch-merge-key": "ip", "x-kubernetes-patch-strategy": "merge" }, "hostIPC": { "description": "Use the host's ipc namespace. Optional: Default to false.", "type": "boolean" }, "hostNetwork": { "description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.", "type": "boolean" }, "hostPID": { "description": "Use the host's pid namespace. Optional: Default to false.", "type": "boolean" }, "hostname": { "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.", "type": "string" }, "imagePullSecrets": { "description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "initContainers": { "description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "nodeName": { "description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.", "type": "string" }, "nodeSelector": { "additionalProperties": { "type": "string" }, "description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/", "type": "object" }, "overhead": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.", "type": "object" }, "preemptionPolicy": { "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.", "type": "string" }, "priority": { "_format": "int32", "description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.", "type": "integer" }, "priorityClassName": { "description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.", "type": "string" }, "readinessGates": { "description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate" }, "type": "array" }, "restartPolicy": { "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy", "type": "string" }, "runtimeClassName": { "description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.", "type": "string" }, "schedulerName": { "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", "type": "string" }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext", "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field." }, "serviceAccount": { "description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.", "type": "string" }, "serviceAccountName": { "description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/", "type": "string" }, "shareProcessNamespace": { "description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.", "type": "boolean" }, "subdomain": { "description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.", "type": "string" }, "terminationGracePeriodSeconds": { "_format": "int64", "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", "type": "integer" }, "tolerations": { "description": "If specified, the pod's tolerations.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration" }, "type": "array" }, "topologySpreadConstraints": { "description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is only honored by clusters that enable the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint" }, "type": "array", "x-kubernetes-list-map-keys": [ "topologyKey", "whenUnsatisfiable" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "topologyKey", "x-kubernetes-patch-strategy": "merge" }, "volumes": { "description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge,retainKeys" } }, "required": [ "containers" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec": { "description": "PodTemplateSpec describes the data a pod should have when created from a template", "properties": { "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_PodSpec", "description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "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_PreferredSchedulingTerm": { "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", "properties": { "preference": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm", "description": "A node selector term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "preference" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe": { "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", "properties": { "exec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction", "description": "One and only one of the following should be specified. Exec specifies the action to take." }, "failureThreshold": { "_format": "int32", "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", "type": "integer" }, "httpGet": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction", "description": "HTTPGet specifies the http request to perform." }, "initialDelaySeconds": { "_format": "int32", "description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer" }, "periodSeconds": { "_format": "int32", "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", "type": "integer" }, "successThreshold": { "_format": "int32", "description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" }, "timeoutSeconds": { "_format": "int32", "description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource": { "description": "Represents a projected volume source", "properties": { "defaultMode": { "_format": "int32", "description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "sources": { "description": "list of volume projections", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection" }, "type": "array" } }, "required": [ "sources" ], "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_RBDVolumeSource": { "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_LocalObjectReference", "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_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_ResourceRequirements": { "description": "ResourceRequirements describes the compute resource requirements.", "properties": { "limits": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object" }, "requests": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions": { "description": "SELinuxOptions are the labels to be applied to the container", "properties": { "level": { "description": "Level is SELinux level label that applies to the container.", "type": "string" }, "role": { "description": "Role is a SELinux role label that applies to the container.", "type": "string" }, "type": { "description": "Type is a SELinux type label that applies to the container.", "type": "string" }, "user": { "description": "User is a SELinux user label that applies to the container.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource": { "description": "ScaleIOVolumeSource 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_LocalObjectReference", "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_SecretEnvSource": { "description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.", "properties": { "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 must be defined", "type": "boolean" } }, "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_api_core_v1_SecretProjection": { "description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "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" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource": { "description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "optional": { "description": "Specify whether the Secret or its keys must be defined", "type": "boolean" }, "secretName": { "description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext": { "description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.", "properties": { "allowPrivilegeEscalation": { "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN", "type": "boolean" }, "capabilities": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities", "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime." }, "privileged": { "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.", "type": "boolean" }, "procMount": { "description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.", "type": "string" }, "readOnlyRootFilesystem": { "description": "Whether this container has a read-only root filesystem. Default is false.", "type": "boolean" }, "runAsGroup": { "_format": "int64", "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "integer" }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "boolean" }, "runAsUser": { "_format": "int64", "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." }, "windowsOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection": { "description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).", "properties": { "audience": { "description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.", "type": "string" }, "expirationSeconds": { "_format": "int64", "description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.", "type": "integer" }, "path": { "description": "Path is the path relative to the mount point of the file to project the token into.", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource": { "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_LocalObjectReference", "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_Sysctl": { "description": "Sysctl defines a kernel parameter to be set", "properties": { "name": { "description": "Name of a property to set", "type": "string" }, "value": { "description": "Value of a property to set", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction": { "description": "TCPSocketAction describes an action based on opening a socket", "properties": { "host": { "description": "Optional: Host name to connect to, defaults to the pod IP.", "type": "string" }, "port": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." } }, "required": [ "port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": { "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.", "properties": { "effect": { "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.", "type": "string" }, "key": { "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", "type": "string" }, "operator": { "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.", "type": "string" }, "tolerationSeconds": { "_format": "int64", "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", "type": "integer" }, "value": { "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint": { "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain." }, "maxSkew": { "_format": "int32", "description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.", "type": "integer" }, "topologyKey": { "description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.", "type": "string" }, "whenUnsatisfiable": { "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.", "type": "string" } }, "required": [ "maxSkew", "topologyKey", "whenUnsatisfiable" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume": { "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.", "properties": { "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_AzureFileVolumeSource", "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "cephfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource", "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_CinderVolumeSource", "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource", "description": "ConfigMap represents a configMap that should populate this volume" }, "csi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource", "description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)." }, "downwardAPI": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource", "description": "DownwardAPI represents downward API about the pod that should populate this volume" }, "emptyDir": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource", "description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir" }, "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_FlexVolumeSource", "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. 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. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "gitRepo": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource", "description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container." }, "glusterfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource", "description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. 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 pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. 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_ISCSIVolumeSource", "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md" }, "name": { "description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "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 that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "persistentVolumeClaim": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource", "description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" }, "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" }, "projected": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource", "description": "Items for all in one resources secrets, configmaps, and downward API" }, "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_RBDVolumeSource", "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_ScaleIOVolumeSource", "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "secret": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource", "description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret" }, "storageos": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource", "description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes." }, "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" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice": { "description": "volumeDevice describes a mapping of a raw block device within a container.", "properties": { "devicePath": { "description": "devicePath is the path inside of the container that the device will be mapped to.", "type": "string" }, "name": { "description": "name must match the name of a persistentVolumeClaim in the pod", "type": "string" } }, "required": [ "name", "devicePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount": { "description": "VolumeMount describes a mounting of a Volume within a container.", "properties": { "mountPath": { "description": "Path within the container at which the volume should be mounted. Must not contain ':'.", "type": "string" }, "mountPropagation": { "description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.", "type": "string" }, "name": { "description": "This must match the Name of a Volume.", "type": "string" }, "readOnly": { "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", "type": "boolean" }, "subPath": { "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", "type": "string" }, "subPathExpr": { "description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.", "type": "string" } }, "required": [ "name", "mountPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection": { "description": "Projection that may be projected along with other supported volume types", "properties": { "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection", "description": "information about the configMap data to project" }, "downwardAPI": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection", "description": "information about the downwardAPI data to project" }, "secret": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection", "description": "information about the secret data to project" }, "serviceAccountToken": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection", "description": "information about the serviceAccountToken data to project" } }, "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_core_v1_WeightedPodAffinityTerm": { "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", "properties": { "podAffinityTerm": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm", "description": "Required. A pod affinity term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "podAffinityTerm" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions": { "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.", "properties": { "gmsaCredentialSpec": { "description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.", "type": "string" }, "gmsaCredentialSpecName": { "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.", "type": "string" }, "runAsUserName": { "description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "string" } }, "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_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is 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. 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_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "description": "JobSpec describes how the job execution will look like.", "properties": { "activeDeadlineSeconds": { "description": "Specifies the duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer", "format": "int64", "type": [ "integer", "null" ] }, "backoffLimit": { "description": "Specifies the number of retries before marking this job failed. Defaults to 6", "format": "int32", "type": [ "integer", "null" ] }, "completions": { "description": "Specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", "format": "int32", "type": [ "integer", "null" ] }, "manualSelector": { "description": "manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector", "type": [ "boolean", "null" ] }, "parallelism": { "description": "Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", "format": "int32", "type": [ "integer", "null" ] }, "selector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over pods that should match the pod count. Normally, the system sets this field for you. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" }, "template": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec", "description": "Describes the pod that will be created when executing a job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/" }, "ttlSecondsAfterFinished": { "description": "ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed). If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted. When the Job is being deleted, its lifecycle guarantees (e.g. finalizers) will be honored. If this field is unset, the Job won't be automatically deleted. If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes. This field is alpha-level and is only honored by servers that enable the TTLAfterFinished feature.", "format": "int32", "type": [ "integer", "null" ] } }, "required": [ "template" ], "type": "object" }
kb_485_Normalized
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base length of the shape (for triangle)", "type": "number" }, "height": { "description": "The height of the shape (for triangle)", "type": "number" }, "radius": { "description": "The radius of the shape (for circle)", "type": "number" }, "side": { "description": "The side length of the shape (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_214862f8
{ "$schema": "http://json-schema.org/draft-04/schema", "title": "Package", "type": "object", "properties": { "name": { "type": "string", "description": "Package name, including 'vendor-name/' prefix.", "pattern": "^[a-z0-9]([_.-]?[a-z0-9]+)*/[a-z0-9](([_.]|-{1,2})?[a-z0-9]+)*$" }, "description": { "type": "string", "description": "Short package description." }, "license": { "type": [ "string", "array" ], "description": "License name. Or an array of license names." }, "type": { "description": "Package type, either 'library' for common packages, 'composer-plugin' for plugins, 'metapackage' for empty packages, or a custom type ([a-z0-9-]+) defined by whatever project this package applies to.", "type": "string", "pattern": "^[a-z0-9-]+$" }, "abandoned": { "type": [ "boolean", "string" ], "description": "Indicates whether this package has been abandoned, it can be boolean or a package name/URL pointing to a recommended alternative. Defaults to false." }, "version": { "type": "string", "description": "Package version, see https://getcomposer.org/doc/04-schema.md#version for more info on valid schemes.", "pattern": "^v?\\d+(\\.\\d+){0,3}|^dev-" }, "default-branch": { "type": [ "boolean" ], "description": "Internal use only, do not specify this in composer.json. Indicates whether this version is the default branch of the linked VCS repository. Defaults to false." }, "non-feature-branches": { "type": [ "array" ], "description": "A set of string or regex patterns for non-numeric branch names that will not be handled as feature branches.", "items": { "type": "string" } }, "keywords": { "type": "array", "items": { "type": "string", "description": "A tag/keyword that this package relates to." } }, "readme": { "type": "string", "description": "Relative path to the readme document." }, "time": { "type": "string", "description": "Package release date, in 'YYYY-MM-DD', 'YYYY-MM-DD HH:MM:SS' or 'YYYY-MM-DDTHH:MM:SSZ' format." }, "authors": { "$ref": "#/definitions/authors" }, "homepage": { "type": "string", "description": "Homepage URL for the project.", "format": "uri" }, "support": { "type": "object", "properties": { "email": { "type": "string", "description": "Email address for support.", "format": "email" }, "issues": { "type": "string", "description": "URL to the issue tracker.", "format": "uri" }, "forum": { "type": "string", "description": "URL to the forum.", "format": "uri" }, "wiki": { "type": "string", "description": "URL to the wiki.", "format": "uri" }, "irc": { "type": "string", "description": "IRC channel for support, as irc://server/channel.", "format": "uri" }, "chat": { "type": "string", "description": "URL to the support chat.", "format": "uri" }, "source": { "type": "string", "description": "URL to browse or download the sources.", "format": "uri" }, "docs": { "type": "string", "description": "URL to the documentation.", "format": "uri" }, "rss": { "type": "string", "description": "URL to the RSS feed.", "format": "uri" }, "security": { "type": "string", "description": "URL to the vulnerability disclosure policy (VDP).", "format": "uri" } } }, "funding": { "type": "array", "description": "A list of options to fund the development and maintenance of the package.", "items": { "type": "object", "properties": { "type": { "type": "string", "description": "Type of funding or platform through which funding is possible." }, "url": { "type": "string", "description": "URL to a website with details on funding and a way to fund the package.", "format": "uri" } } } }, "source": { "$ref": "#/definitions/source" }, "dist": { "$ref": "#/definitions/dist" }, "_comment": { "type": [ "array", "string" ], "description": "A key to store comments in" }, "require": { "type": "object", "description": "This is an object of package name (keys) and version constraints (values) that are required to run this package.", "additionalProperties": { "type": "string" } }, "require-dev": { "type": "object", "description": "This is an object of package name (keys) and version constraints (values) that this package requires for developing it (testing tools and such).", "additionalProperties": { "type": "string" } }, "replace": { "type": "object", "description": "This is an object of package name (keys) and version constraints (values) that can be replaced by this package.", "additionalProperties": { "type": "string" } }, "conflict": { "type": "object", "description": "This is an object of package name (keys) and version constraints (values) that conflict with this package.", "additionalProperties": { "type": "string" } }, "provide": { "type": "object", "description": "This is an object of package name (keys) and version constraints (values) that this package provides in addition to this package's name.", "additionalProperties": { "type": "string" } }, "suggest": { "type": "object", "description": "This is an object of package name (keys) and descriptions (values) that this package suggests work well with it (this will be suggested to the user during installation).", "additionalProperties": { "type": "string" } }, "repositories": { "type": [ "object", "array" ], "description": "A set of additional repositories where packages can be found.", "additionalProperties": { "anyOf": [ { "$ref": "#/definitions/repository" }, { "type": "boolean", "enum": [ false ] } ] }, "items": { "anyOf": [ { "$ref": "#/definitions/repository" }, { "type": "object", "additionalProperties": { "type": "boolean", "enum": [ false ] }, "minProperties": 1, "maxProperties": 1 } ] } }, "minimum-stability": { "type": [ "string" ], "description": "The minimum stability the packages must have to be install-able. Possible values are: dev, alpha, beta, RC, stable.", "enum": [ "dev", "alpha", "beta", "rc", "RC", "stable" ] }, "prefer-stable": { "type": [ "boolean" ], "description": "If set to true, stable packages will be preferred to dev packages when possible, even if the minimum-stability allows unstable packages." }, "autoload": { "$ref": "#/definitions/autoload" }, "autoload-dev": { "type": "object", "description": "Description of additional autoload rules for development purpose (eg. a test suite).", "properties": { "psr-0": { "type": "object", "description": "This is an object of namespaces (keys) and the directories they can be found into (values, can be arrays of paths) by the autoloader.", "additionalProperties": { "type": [ "string", "array" ], "items": { "type": "string" } } }, "psr-4": { "type": "object", "description": "This is an object of namespaces (keys) and the PSR-4 directories they can map to (values, can be arrays of paths) by the autoloader.", "additionalProperties": { "type": [ "string", "array" ], "items": { "type": "string" } } }, "classmap": { "type": "array", "description": "This is an array of paths that contain classes to be included in the class-map generation process." }, "files": { "type": "array", "description": "This is an array of files that are always required on every request." } } }, "target-dir": { "description": "DEPRECATED: Forces the package to be installed into the given subdirectory path. This is used for autoloading PSR-0 packages that do not contain their full path. Use forward slashes for cross-platform compatibility.", "type": "string" }, "include-path": { "type": [ "array" ], "description": "DEPRECATED: A list of directories which should get added to PHP's include path. This is only present to support legacy projects, and all new code should preferably use autoloading.", "items": { "type": "string" } }, "bin": { "type": [ "string", "array" ], "description": "A set of files, or a single file, that should be treated as binaries and symlinked into bin-dir (from config).", "items": { "type": "string" } }, "archive": { "type": [ "object" ], "description": "Options for creating package archives for distribution.", "properties": { "name": { "type": "string", "description": "A base name for archive." }, "exclude": { "type": "array", "description": "A list of patterns for paths to exclude or include if prefixed with an exclamation mark." } } }, "config": { "type": "object", "description": "Composer options.", "properties": { "platform": { "type": "object", "description": "This is an object of package name (keys) and version (values) that will be used to mock the platform packages on this machine, the version can be set to false to make it appear like the package is not present.", "additionalProperties": { "type": [ "string", "boolean" ] } }, "allow-plugins": { "type": [ "object", "boolean" ], "description": "This is an object of {\"pattern\": true|false} with packages which are allowed to be loaded as plugins, or true to allow all, false to allow none. Defaults to {} which prompts when an unknown plugin is added.", "additionalProperties": { "type": [ "boolean" ] } }, "process-timeout": { "type": "integer", "description": "The timeout in seconds for process executions, defaults to 300 (5mins)." }, "use-include-path": { "type": "boolean", "description": "If true, the Composer autoloader will also look for classes in the PHP include path." }, "use-parent-dir": { "type": [ "string", "boolean" ], "description": "When running Composer in a directory where there is no composer.json, if there is one present in a directory above Composer will by default ask you whether you want to use that directory's composer.json instead. One of: true (always use parent if needed), false (never ask or use it) or \"prompt\" (ask every time), defaults to prompt." }, "preferred-install": { "type": [ "string", "object" ], "description": "The install method Composer will prefer to use, defaults to auto and can be any of source, dist, auto, or an object of {\"pattern\": \"preference\"}.", "additionalProperties": { "type": [ "string" ] } }, "audit": { "type": "object", "description": "Security audit configuration options", "properties": { "ignored": { "type": "array", "description": "A set of advisory ids, remote ids or CVE ids that should be ignored and not reported as part of an audit.", "items": { "type": "string" } } } }, "notify-on-install": { "type": "boolean", "description": "Composer allows repositories to define a notification URL, so that they get notified whenever a package from that repository is installed. This option allows you to disable that behaviour, defaults to true." }, "github-protocols": { "type": "array", "description": "A list of protocols to use for github.com clones, in priority order, defaults to [\"https\", \"ssh\", \"git\"].", "items": { "type": "string" } }, "github-oauth": { "type": "object", "description": "An object of domain name => github API oauth tokens, typically {\"github.com\":\"<token>\"}.", "additionalProperties": { "type": "string" } }, "gitlab-oauth": { "type": "object", "description": "An object of domain name => gitlab API oauth tokens, typically {\"gitlab.com\":{\"expires-at\":\"<expiration date>\", \"refresh-token\":\"<refresh token>\", \"token\":\"<token>\"}}.", "additionalProperties": { "type": [ "string", "object" ], "required": [ "token" ], "properties": { "expires-at": { "type": "integer", "description": "The expiration date for this GitLab token" }, "refresh-token": { "type": "string", "description": "The refresh token used for GitLab authentication" }, "token": { "type": "string", "description": "The token used for GitLab authentication" } } } }, "gitlab-token": { "type": "object", "description": "An object of domain name => gitlab private tokens, typically {\"gitlab.com\":\"<token>\"}, or an object with username and token keys.", "additionalProperties": { "type": [ "string", "object" ], "required": [ "username", "token" ], "properties": { "username": { "type": "string", "description": "The username used for GitLab authentication" }, "token": { "type": "string", "description": "The token used for GitLab authentication" } } } }, "gitlab-protocol": { "enum": [ "git", "http", "https" ], "description": "A protocol to force use of when creating a repository URL for the `source` value of the package metadata. One of `git` or `http`. By default, Composer will generate a git URL for private repositories and http one for public repos." }, "bearer": { "type": "object", "description": "An object of domain name => bearer authentication token, for example {\"example.com\":\"<token>\"}.", "additionalProperties": { "type": "string" } }, "disable-tls": { "type": "boolean", "description": "Defaults to `false`. If set to true all HTTPS URLs will be tried with HTTP instead and no network level encryption is performed. Enabling this is a security risk and is NOT recommended. The better way is to enable the php_openssl extension in php.ini." }, "secure-http": { "type": "boolean", "description": "Defaults to `true`. If set to true only HTTPS URLs are allowed to be downloaded via Composer. If you really absolutely need HTTP access to something then you can disable it, but using \"Let's Encrypt\" to get a free SSL certificate is generally a better alternative." }, "secure-svn-domains": { "type": "array", "description": "A list of domains which should be trusted/marked as using a secure Subversion/SVN transport. By default svn:// protocol is seen as insecure and will throw. This is a better/safer alternative to disabling `secure-http` altogether.", "items": { "type": "string" } }, "cafile": { "type": "string", "description": "A way to set the path to the openssl CA file. In PHP 5.6+ you should rather set this via openssl.cafile in php.ini, although PHP 5.6+ should be able to detect your system CA file automatically." }, "capath": { "type": "string", "description": "If cafile is not specified or if the certificate is not found there, the directory pointed to by capath is searched for a suitable certificate. capath must be a correctly hashed certificate directory." }, "http-basic": { "type": "object", "description": "An object of domain name => {\"username\": \"...\", \"password\": \"...\"}.", "additionalProperties": { "type": "object", "required": [ "username", "password" ], "properties": { "username": { "type": "string", "description": "The username used for HTTP Basic authentication" }, "password": { "type": "string", "description": "The password used for HTTP Basic authentication" } } } }, "store-auths": { "type": [ "string", "boolean" ], "description": "What to do after prompting for authentication, one of: true (store), false (do not store) or \"prompt\" (ask every time), defaults to prompt." }, "vendor-dir": { "type": "string", "description": "The location where all packages are installed, defaults to \"vendor\"." }, "bin-dir": { "type": "string", "description": "The location where all binaries are linked, defaults to \"vendor/bin\"." }, "data-dir": { "type": "string", "description": "The location where old phar files are stored, defaults to \"$home\" except on XDG Base Directory compliant unixes." }, "cache-dir": { "type": "string", "description": "The location where all caches are located, defaults to \"~/.composer/cache\" on *nix and \"%LOCALAPPDATA%\\Composer\" on windows." }, "cache-files-dir": { "type": "string", "description": "The location where files (zip downloads) are cached, defaults to \"{$cache-dir}/files\"." }, "cache-repo-dir": { "type": "string", "description": "The location where repo (git/hg repo clones) are cached, defaults to \"{$cache-dir}/repo\"." }, "cache-vcs-dir": { "type": "string", "description": "The location where vcs infos (git clones, github api calls, etc. when reading vcs repos) are cached, defaults to \"{$cache-dir}/vcs\"." }, "cache-ttl": { "type": "integer", "description": "The default cache time-to-live, defaults to 15552000 (6 months)." }, "cache-files-ttl": { "type": "integer", "description": "The cache time-to-live for files, defaults to the value of cache-ttl." }, "cache-files-maxsize": { "type": [ "string", "integer" ], "description": "The cache max size for the files cache, defaults to \"300MiB\"." }, "cache-read-only": { "type": [ "boolean" ], "description": "Whether to use the Composer cache in read-only mode." }, "bin-compat": { "enum": [ "auto", "full", "proxy", "symlink" ], "description": "The compatibility of the binaries, defaults to \"auto\" (automatically guessed), can be \"full\" (compatible with both Windows and Unix-based systems) and \"proxy\" (only bash-style proxy)." }, "discard-changes": { "type": [ "string", "boolean" ], "description": "The default style of handling dirty updates, defaults to false and can be any of true, false or \"stash\"." }, "autoloader-suffix": { "type": "string", "description": "Optional string to be used as a suffix for the generated Composer autoloader. When null a random one will be generated." }, "optimize-autoloader": { "type": "boolean", "description": "Always optimize when dumping the autoloader." }, "prepend-autoloader": { "type": "boolean", "description": "If false, the composer autoloader will not be prepended to existing autoloaders, defaults to true." }, "classmap-authoritative": { "type": "boolean", "description": "If true, the composer autoloader will not scan the filesystem for classes that are not found in the class map, defaults to false." }, "apcu-autoloader": { "type": "boolean", "description": "If true, the Composer autoloader will check for APCu and use it to cache found/not-found classes when the extension is enabled, defaults to false." }, "github-domains": { "type": "array", "description": "A list of domains to use in github mode. This is used for GitHub Enterprise setups, defaults to [\"github.com\"].", "items": { "type": "string" } }, "github-expose-hostname": { "type": "boolean", "description": "Defaults to true. If set to false, the OAuth tokens created to access the github API will have a date instead of the machine hostname." }, "gitlab-domains": { "type": "array", "description": "A list of domains to use in gitlab mode. This is used for custom GitLab setups, defaults to [\"gitlab.com\"].", "items": { "type": "string" } }, "bitbucket-oauth": { "type": "object", "description": "An object of domain name => {\"consumer-key\": \"...\", \"consumer-secret\": \"...\"}.", "additionalProperties": { "type": "object", "required": [ "consumer-key", "consumer-secret" ], "properties": { "consumer-key": { "type": "string", "description": "The consumer-key used for OAuth authentication" }, "consumer-secret": { "type": "string", "description": "The consumer-secret used for OAuth authentication" }, "access-token": { "type": "string", "description": "The OAuth token retrieved from Bitbucket's API, this is written by Composer and you should not set it nor modify it." }, "access-token-expiration": { "type": "integer", "description": "The generated token's expiration timestamp, this is written by Composer and you should not set it nor modify it." } } } }, "use-github-api": { "type": "boolean", "description": "Defaults to true. If set to false, globally disables the use of the GitHub API for all GitHub repositories and clones the repository as it would for any other repository." }, "archive-format": { "type": "string", "description": "The default archiving format when not provided on cli, defaults to \"tar\"." }, "archive-dir": { "type": "string", "description": "The default archive path when not provided on cli, defaults to \".\"." }, "htaccess-protect": { "type": "boolean", "description": "Defaults to true. If set to false, Composer will not create .htaccess files in the composer home, cache, and data directories." }, "sort-packages": { "type": "boolean", "description": "Defaults to false. If set to true, Composer will sort packages when adding/updating a new dependency." }, "lock": { "type": "boolean", "description": "Defaults to true. If set to false, Composer will not create a composer.lock file." }, "platform-check": { "type": [ "boolean", "string" ], "description": "Defaults to \"php-only\" which checks only the PHP version. Setting to true will also check the presence of required PHP extensions. If set to false, Composer will not create and require a platform_check.php file as part of the autoloader bootstrap." } } }, "extra": { "type": [ "object", "array" ], "description": "Arbitrary extra data that can be used by plugins, for example, package of type composer-plugin may have a 'class' key defining an installer class name.", "additionalProperties": true }, "scripts": { "type": [ "object" ], "description": "Script listeners that will be executed before/after some events.", "properties": { "pre-install-cmd": { "type": [ "array", "string" ], "description": "Occurs before the install command is executed, contains one or more Class::method callables or shell commands." }, "post-install-cmd": { "type": [ "array", "string" ], "description": "Occurs after the install command is executed, contains one or more Class::method callables or shell commands." }, "pre-update-cmd": { "type": [ "array", "string" ], "description": "Occurs before the update command is executed, contains one or more Class::method callables or shell commands." }, "post-update-cmd": { "type": [ "array", "string" ], "description": "Occurs after the update command is executed, contains one or more Class::method callables or shell commands." }, "pre-status-cmd": { "type": [ "array", "string" ], "description": "Occurs before the status command is executed, contains one or more Class::method callables or shell commands." }, "post-status-cmd": { "type": [ "array", "string" ], "description": "Occurs after the status command is executed, contains one or more Class::method callables or shell commands." }, "pre-package-install": { "type": [ "array", "string" ], "description": "Occurs before a package is installed, contains one or more Class::method callables or shell commands." }, "post-package-install": { "type": [ "array", "string" ], "description": "Occurs after a package is installed, contains one or more Class::method callables or shell commands." }, "pre-package-update": { "type": [ "array", "string" ], "description": "Occurs before a package is updated, contains one or more Class::method callables or shell commands." }, "post-package-update": { "type": [ "array", "string" ], "description": "Occurs after a package is updated, contains one or more Class::method callables or shell commands." }, "pre-package-uninstall": { "type": [ "array", "string" ], "description": "Occurs before a package has been uninstalled, contains one or more Class::method callables or shell commands." }, "post-package-uninstall": { "type": [ "array", "string" ], "description": "Occurs after a package has been uninstalled, contains one or more Class::method callables or shell commands." }, "pre-autoload-dump": { "type": [ "array", "string" ], "description": "Occurs before the autoloader is dumped, contains one or more Class::method callables or shell commands." }, "post-autoload-dump": { "type": [ "array", "string" ], "description": "Occurs after the autoloader is dumped, contains one or more Class::method callables or shell commands." }, "post-root-package-install": { "type": [ "array", "string" ], "description": "Occurs after the root-package is installed, contains one or more Class::method callables or shell commands." }, "post-create-project-cmd": { "type": [ "array", "string" ], "description": "Occurs after the create-project command is executed, contains one or more Class::method callables or shell commands." } } }, "scripts-descriptions": { "type": [ "object" ], "description": "Descriptions for custom commands, shown in console help.", "additionalProperties": { "type": "string" } } }, "definitions": { "authors": { "type": "array", "description": "List of authors that contributed to the package. This is typically the main maintainers, not the full list.", "items": { "type": "object", "additionalProperties": false, "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Full name of the author." }, "email": { "type": "string", "description": "Email address of the author.", "format": "email" }, "homepage": { "type": "string", "description": "Homepage URL for the author.", "format": "uri" }, "role": { "type": "string", "description": "Author's role in the project." } } } }, "autoload": { "type": "object", "description": "Description of how the package can be autoloaded.", "properties": { "psr-0": { "type": "object", "description": "This is an object of namespaces (keys) and the directories they can be found in (values, can be arrays of paths) by the autoloader.", "additionalProperties": { "type": [ "string", "array" ], "items": { "type": "string" } } }, "psr-4": { "type": "object", "description": "This is an object of namespaces (keys) and the PSR-4 directories they can map to (values, can be arrays of paths) by the autoloader.", "additionalProperties": { "type": [ "string", "array" ], "items": { "type": "string" } } }, "classmap": { "type": "array", "description": "This is an array of paths that contain classes to be included in the class-map generation process." }, "files": { "type": "array", "description": "This is an array of files that are always required on every request." }, "exclude-from-classmap": { "type": "array", "description": "This is an array of patterns to exclude from autoload classmap generation. (e.g. \"exclude-from-classmap\": [\"/test/\", \"/tests/\", \"/Tests/\"]" } } }, "repository": { "type": "object", "anyOf": [ { "$ref": "#/definitions/composer-repository" }, { "$ref": "#/definitions/vcs-repository" }, { "$ref": "#/definitions/path-repository" }, { "$ref": "#/definitions/artifact-repository" }, { "$ref": "#/definitions/pear-repository" }, { "$ref": "#/definitions/package-repository" } ] }, "composer-repository": { "type": "object", "required": [ "type", "url" ], "properties": { "type": { "type": "string", "enum": [ "composer" ] }, "url": { "type": "string" }, "canonical": { "type": "boolean" }, "only": { "type": "array", "items": { "type": "string" } }, "exclude": { "type": "array", "items": { "type": "string" } }, "options": { "type": "object", "additionalProperties": true }, "allow_ssl_downgrade": { "type": "boolean" }, "force-lazy-providers": { "type": "boolean" } } }, "vcs-repository": { "type": "object", "required": [ "type", "url" ], "properties": { "type": { "type": "string", "enum": [ "vcs", "github", "git", "gitlab", "bitbucket", "git-bitbucket", "hg", "fossil", "perforce", "svn" ] }, "url": { "type": "string" }, "canonical": { "type": "boolean" }, "only": { "type": "array", "items": { "type": "string" } }, "exclude": { "type": "array", "items": { "type": "string" } }, "no-api": { "type": "boolean" }, "secure-http": { "type": "boolean" }, "svn-cache-credentials": { "type": "boolean" }, "trunk-path": { "type": [ "string", "boolean" ] }, "branches-path": { "type": [ "string", "boolean" ] }, "tags-path": { "type": [ "string", "boolean" ] }, "package-path": { "type": "string" }, "depot": { "type": "string" }, "branch": { "type": "string" }, "unique_perforce_client_name": { "type": "string" }, "p4user": { "type": "string" }, "p4password": { "type": "string" } } }, "path-repository": { "type": "object", "required": [ "type", "url" ], "properties": { "type": { "type": "string", "enum": [ "path" ] }, "url": { "type": "string" }, "canonical": { "type": "boolean" }, "only": { "type": "array", "items": { "type": "string" } }, "exclude": { "type": "array", "items": { "type": "string" } }, "options": { "type": "object", "properties": { "symlink": { "type": [ "boolean", "null" ] } }, "additionalProperties": true } } }, "artifact-repository": { "type": "object", "required": [ "type", "url" ], "properties": { "type": { "type": "string", "enum": [ "artifact" ] }, "url": { "type": "string" }, "canonical": { "type": "boolean" }, "only": { "type": "array", "items": { "type": "string" } }, "exclude": { "type": "array", "items": { "type": "string" } } } }, "pear-repository": { "type": "object", "required": [ "type", "url" ], "properties": { "type": { "type": "string", "enum": [ "pear" ] }, "url": { "type": "string" }, "canonical": { "type": "boolean" }, "only": { "type": "array", "items": { "type": "string" } }, "exclude": { "type": "array", "items": { "type": "string" } }, "vendor-alias": { "type": "string" } } }, "package-repository": { "type": "object", "required": [ "type", "package" ], "properties": { "type": { "type": "string", "enum": [ "package" ] }, "canonical": { "type": "boolean" }, "only": { "type": "array", "items": { "type": "string" } }, "exclude": { "type": "array", "items": { "type": "string" } }, "package": { "oneOf": [ { "$ref": "#/definitions/inline-package" }, { "type": "array", "items": { "$ref": "#/definitions/inline-package" } } ] } } }, "inline-package": { "type": "object", "required": [ "name", "version" ], "properties": { "name": { "type": "string", "description": "Package name, including 'vendor-name/' prefix." }, "type": { "type": "string" }, "target-dir": { "description": "DEPRECATED: Forces the package to be installed into the given subdirectory path. This is used for autoloading PSR-0 packages that do not contain their full path. Use forward slashes for cross-platform compatibility.", "type": "string" }, "description": { "type": "string" }, "keywords": { "type": "array", "items": { "type": "string" } }, "homepage": { "type": "string", "format": "uri" }, "version": { "type": "string" }, "time": { "type": "string" }, "license": { "type": [ "string", "array" ] }, "authors": { "$ref": "#/definitions/authors" }, "require": { "type": "object", "additionalProperties": { "type": "string" } }, "replace": { "type": "object", "additionalProperties": { "type": "string" } }, "conflict": { "type": "object", "additionalProperties": { "type": "string" } }, "provide": { "type": "object", "additionalProperties": { "type": "string" } }, "require-dev": { "type": "object", "additionalProperties": { "type": "string" } }, "suggest": { "type": "object", "additionalProperties": { "type": "string" } }, "extra": { "type": [ "object", "array" ], "additionalProperties": true }, "autoload": { "$ref": "#/definitions/autoload" }, "archive": { "type": [ "object" ], "properties": { "exclude": { "type": "array" } } }, "bin": { "type": [ "string", "array" ], "description": "A set of files, or a single file, that should be treated as binaries and symlinked into bin-dir (from config).", "items": { "type": "string" } }, "include-path": { "type": [ "array" ], "description": "DEPRECATED: A list of directories which should get added to PHP's include path. This is only present to support legacy projects, and all new code should preferably use autoloading.", "items": { "type": "string" } }, "source": { "$ref": "#/definitions/source" }, "dist": { "$ref": "#/definitions/dist" } }, "additionalProperties": true }, "source": { "type": "object", "required": [ "type", "url", "reference" ], "properties": { "type": { "type": "string" }, "url": { "type": "string" }, "reference": { "type": "string" }, "mirrors": { "type": "array" } } }, "dist": { "type": "object", "required": [ "type", "url" ], "properties": { "type": { "type": "string" }, "url": { "type": "string" }, "reference": { "type": "string" }, "shasum": { "type": "string" }, "mirrors": { "type": "array" } } } } }
composer-schema
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "The denominator of the descriptive statistic when the measures has an implicit duration. For example in the context of step count, if the descriptive statistic is 'average' and the statistic denominator is 'd' the value describes average daily step count during the period delimited by the effective time frame; in the context of step count, if the descriptive statistic is 'maximum' and the statistic denominator is 'session' the value describes maximum step count per session during the period delimited by the effective time frame.", "type": "string", "enum": [ "d", "wk", "Mo", "episode", "meal", "session" ] }
o65581
{ "properties": { "shape": { "description": "The shape for which to calculate the area", "enum": [ "square", "rectangle", "circle" ], "type": "string" }, "side_length": { "description": "The side length of the square or rectangle, or the radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle (only applicable if shape is 'rectangle')", "type": "number" } }, "required": [ "shape", "side_length" ], "type": "object" }
calculate_area_ff810589
{ "_description": "The patter is taken from https://mathiasbynens.be/demo/url-regex. @diegoperini version", "pattern": "(https?://([-\\w\\.]+)+(:\\d+)?(/([\\w/_\\.]*(\\?\\S+)?)?)?)", "type": "string" }
o67212
{ "properties": { "settings": { "properties": { "host": { "default": "localhost", "type": "string" }, "port": { "default": 27017, "type": "integer" }, "secret": { "minlength": 20, "type": "string" } }, "required": [ "host", "port", "secret" ] } }, "required": [ "settings" ], "title": "DBSettings", "type": "object" }
o10077
{ "properties": { "additionalProperties": { "properties": { "Alias": { "type": "string" }, "DataMap": { "additionalProperties": { "properties": { "BlockSize": { "items": { "type": "number" }, "type": "array" }, "ByteOrder": { "type": "object" }, "DsetID": { "type": "number" }, "ID": { "type": "number" }, "Interpolable": { "type": "boolean" }, "MaxIndex": { "items": { "type": "number" }, "type": [ "null", "array" ] }, "MaxPoint": { "items": { "type": "number" }, "type": [ "null", "array" ] }, "MinIndex": { "items": { "type": "number" }, "type": [ "null", "array" ] }, "MinPoint": { "items": { "type": "number" }, "type": [ "null", "array" ] }, "Name": { "type": "string" }, "TypeService": { "properties": { "Name": { "type": "string" }, "Requirements": { "properties": { "Batcher": { "type": "boolean" }, "BulkIniter": { "type": "boolean" }, "BulkWriter": { "type": "boolean" } }, "type": "object" }, "Url": { "type": "string" }, "Version": { "type": "string" } }, "type": "object" }, "Unversioned": { "type": "boolean" }, "Values": { "items": { "properties": { "DataType": { "type": "string" }, "Label": { "type": "string" } }, "type": "object" }, "type": "array" }, "VoxelSize": { "items": { "type": "number" }, "type": "array" }, "VoxelUnits": { "items": { "type": "string" }, "type": "array" } }, "required": [ "Name" ], "type": "object" }, "type": "object" }, "DatasetID": { "type": "number" }, "NewDataID": { "type": "number" }, "NewVersonID": { "type": "number" }, "Nodes": { "additionalProperties": { "properties": { "Avail": {}, "Children": { "type": [ "array", "null" ] }, "Created": { "type": "string" }, "GlobalID": { "type": "string" }, "Locked": { "type": "boolean" }, "Parents": { "type": [ "array", "null" ] }, "Updated": { "type": "string" }, "VersionID": { "type": "number" } }, "required": [ "GlobalID", "VersionID", "Locked", "Parents", "Children", "Created" ], "type": "object" }, "type": "object" }, "Root": { "type": "string" }, "VersionMap": { "additionalProperties": { "type": "number" }, "type": "object" } }, "type": "object" }, "version": { "type": "string" } }, "type": "object", "version": "0.01" }
o48515
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Schema for .mopedrc", "definitions": { "appConfigDefinition": { "type": "object", "properties": { "dbMigrations": { "description": "Relative path to a folder to use for database migrations", "type": "string" }, "clientEntryPoint": { "description": "Relative path to the entry point for the client.", "type": "string" }, "dbOverrides": { "description": "Relative path to a file containing types to override database columns.", "type": "string" }, "dbSchema": { "description": "Relative path to a folder to output a typed database schema to", "type": "string" }, "dbURL": { "description": "The DATABASE_URL for use in development e.g. postgres://app-name@localhost/app-name", "type": "string" }, "disableClient": { "default": false, "description": "Disable all client side compilation. If you do this you **must** render everything server side.", "type": "boolean" }, "htmlTemplate": { "description": "Relative path to an html file to use as a template.", "type": "string" }, "monorepo": { "description": "Mark this repository as having a single app.", "const": false }, "port": { "description": "Default port to run the app on in development (N.B. backend will default to port + 1)", "type": "integer" }, "publicDirectory": { "description": "Relative path to a public directory, from which all files will be made publicly available.", "type": "string" }, "serverEntryPointDev": { "description": "Relative path to the entry point for the server in development.", "type": "string" }, "serverEntryPointProd": { "description": "Relative path to the entry point for the server in production.", "type": "string" }, "serverEntryPoint": { "description": "Relative path to the entry point for the server (can be overridden with serverEntryPointDev and serverEntryPointProd).", "type": "string" } }, "additionalProperties": false }, "monoRepoDefinition": { "type": "object", "properties": { "monorepo": { "description": "Mark this repository as having multiple apps with different entry points.", "const": true } }, "patternProperties": { "^[a-z0-9\\-]+$": { "description": "The options to apply for this named app.", "oneOf": [ { "$ref": "#/definitions/appConfigDefinition" }, { "const": true } ] } }, "minProperties": 2, "additionalProperties": false } }, "type": "object", "anyOf": [ { "$ref": "#/definitions/appConfigDefinition" }, { "$ref": "#/definitions/monoRepoDefinition" } ] }
o61532
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "users", "releases", "companies", "repos" ], "properties": { "users": { "type": "array", "items": { "type": "object", "properties": { "launchpad_id": { "type": "string", "pattern": "[a-z\\d-]+" }, "gerrit_id": { "type": "string" }, "user_name": { "type": "string" }, "emails": { "type": "array", "items": { "type": "string", "pattern": "[a-z\\d_\\.-]+@([a-z\\d_\\.-]+\\.)+[a-z]+" }, "minItems": 1 }, "companies": { "type": "array", "items": { "type": "object", "properties": { "company_name": { "type": "string" }, "end_date": { "type": [ "string", "null" ], "pattern": "20\\d{2}-\\w{3}-[0-3]\\d" } }, "additionalProperties": false } } }, "required": [ "launchpad_id", "user_name", "emails" ], "additionalProperties": false } }, "releases": { "type": "array", "items": { "type": "object", "properties": { "release_name": { "type": "string" }, "end_date": { "type": "string", "pattern": "20\\d{2}-\\w{3}-[0-3]\\d" } }, "required": [ "release_name", "end_date" ], "additionalProperties": false } }, "repos": { "type": "array", "items": { "type": "object", "properties": { "uri": { "type": "string" }, "project_type": { "type": "string" }, "project_group": { "type": "string" }, "organization": { "type": "string" }, "module": { "type": "string" }, "releases": { "type": "array", "items": { "type": "object", "properties": { "branch": { "type": "string" }, "tag_from": { "type": "string" }, "tag_to": { "type": "string" }, "release_name": { "type": "string" } }, "required": [ "tag_from", "tag_to", "release_name" ] } } }, "required": [ "uri", "project_type", "module", "organization" ], "additionalProperties": false } }, "companies": { "type": "array", "items": { "type": "object", "properties": { "company_name": { "type": "string" }, "domains": { "type": "array", "items": { "type": "string", "pattern": "[a-z\\d\\.]*" } } }, "required": [ "company_name", "domains" ], "additionalProperties": false } }, "project_sources": { "type": "array", "items": { "type": "object", "properties": { "organization": { "type": "string" }, "project_type": { "type": "string" }, "project_group": { "type": [ "string", "null" ] }, "exclude": { "type": "array", "items": { "type": "string" } } }, "required": [ "organization", "project_type" ], "additionalProperties": false } }, "module_groups": { "type": "array", "items": { "type": "object", "properties": { "module_group_name": { "type": "string" }, "modules": { "type": [ "array" ], "items": { "type": "string" } } }, "required": [ "module_group_name", "modules" ], "additionalProperties": false } }, "mail_lists": { "type": "array", "items": { "type": "string" } } } }
o66068
{ "definitions": { "Requirement": { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "Data1": { "type": "integer" }, "Data2": { "type": "integer" }, "Data3": { "type": "integer" }, "Data4": { "type": "integer" } }, "required": [ "Data1", "Data2", "Data3", "Data4" ] } }, "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "Id": { "type": "string" }, "MetRequirements": { "type": "array", "items": { "$ref": "#/definitions/Requirement" } }, "PreviousMetRequirements": { "type": "array", "items": { "$ref": "#/definitions/Requirement" } } }, "required": [ "Id", "MetRequirements", "PreviousMetRequirements" ] }
o43219
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Metadata about a person in the Mopidy community", "properties": { "email": { "_format": "email", "description": "Email address", "type": "string" }, "homepage": { "_format": "uri", "description": "URL to personal web site", "type": "string" }, "id": { "description": "Unique identifier for the person", "type": "string" }, "name": { "description": "Full name", "type": "string" }, "profiles": { "properties": { "discuss": { "description": "Username on discuss.mopidy.com", "type": "string" }, "freenode": { "description": "IRC nickname on freenode.net", "type": "string" }, "github": { "description": "GitHub username", "type": "string" }, "twitter": { "description": "Twitter username", "type": "string" } }, "title": "User profiles", "type": "object" } }, "required": [ "id", "name", "email", "profiles" ], "title": "Person", "type": "object" }
o61533
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "A document of some sort (PDF, TIFF, HTML) associated with a filing", "type": "object", "properties": { "uid": { "description": "Unique id/reference for the filing if it has one", "type": "string" }, "file_format": { "description": "Format of the document, if known", "enum": [ "xml", "pdf", "html", "doc", null ] }, "original_source_url": { "description": "Persistent URL for the document, if there is one", "type": "string" }, "source_url": { "description": "Source url of the web page for the filing or if there is not persistent URL the page from which it can be found (e.g. search page)", "type": "string", "minLength": 11 }, "source_location": { "type": "string", "description": "If the accounts filing has been put on sources.opencorporates.com the path to the filing" }, "language": { "description": "Should be represented as two-letter ISO-639 code", "type": "string", "minLength": 2, "maxLength": 2 }, "classification": { "description": "type of document (at the moment only XBRL is the only option here)", "type": "string", "enum": [ "xbrl", null ] }, "pages": { "description": "Number of pages, if known", "type": "integer" } }, "additionalProperties": false, "anyOf": [ { "required": [ "source_location" ] }, { "required": [ "source_url" ] } ] }
o65450
{ "definitions": { "outcome": { "properties": { "_text": { "type": "string" }, "confidence": { "maximum": 1, "minimum": 0, "type": "number" }, "entities": { "type": "object" }, "intent": { "type": "string" } }, "required": [ "confidence", "entities", "intent", "_text" ], "type": "object" } }, "description": "schema for a wit.ai response", "items": { "$ref": "#/definitions/outcome" }, "minItems": 1, "type": "array" }
o29394
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "title": { "type": "string" }, "icon": { "type": "string" }, "background": { "type": "string" }, "background-color": { "type": "string", "format": "css-color" }, "icon-size": { "type": "integer" }, "window": { "type": "object", "properties": { "position": { "type": "object", "properties": { "x": { "type": "integer" }, "y": { "type": "integer" } }, "required": [ "x", "y" ] }, "size": { "type": "object", "properties": { "width": { "type": "integer" }, "height": { "type": "integer" } }, "required": [ "width", "height" ] } } }, "format": { "type": "string", "enum": [ "UDRW", "UDRO", "UDCO", "UDZO", "ULFO", "UDBZ" ] }, "contents": { "type": "array", "items": { "type": "object", "properties": { "x": { "type": "integer" }, "y": { "type": "integer" }, "type": { "type": "string", "enum": [ "link", "file", "position" ] }, "path": { "type": "string" }, "name": { "type": "string" } }, "required": [ "x", "y", "type", "path" ] } }, "code-sign": { "type": "object", "properties": { "signing-identity": { "type": "string" }, "identifier": { "type": "string" } }, "required": [ "signing-identity" ] } }, "required": [ "title", "contents" ] }
o9541
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$", "type": "string" }, "analytics_identifier": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations." }, "body": { "description": "The main content provided as HTML rendered from govspeak", "type": "string" }, "brexit_no_deal_notice": { "description": "A list of URLs and titles for a brexit no deal notice.", "items": { "additionalProperties": false, "properties": { "href": { "type": "string" }, "title": { "type": "string" } }, "required": [ "title", "href" ], "type": "object" }, "type": "array" }, "change_history": { "items": { "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "public_timestamp", "note" ], "type": "object" }, "type": "array" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "body": { "$ref": "#/definitions/body" }, "brexit_no_deal_notice": { "$ref": "#/definitions/brexit_no_deal_notice" }, "change_history": { "$ref": "#/definitions/change_history" }, "collection_groups": { "description": "The ordered list of collection groups", "items": { "additionalProperties": false, "description": "Collection group", "properties": { "body": { "$ref": "#/definitions/body" }, "documents": { "description": "An ordered list of documents in this collection group", "items": { "$ref": "#/definitions/guid" }, "type": "array" }, "title": { "type": "string" } }, "required": [ "title", "documents" ], "type": "object" }, "type": "array" }, "emphasised_organisations": { "$ref": "#/definitions/emphasised_organisations" }, "first_public_at": { "$ref": "#/definitions/first_public_at" }, "government": { "$ref": "#/definitions/government" }, "political": { "$ref": "#/definitions/political" }, "tags": { "$ref": "#/definitions/tags" } }, "required": [ "collection_groups", "political" ], "type": "object" }, "emphasised_organisations": { "description": "The content ids of the organisations that should be displayed first in the list of organisations related to the item, these content ids must be present in the item organisation links hash.", "items": { "$ref": "#/definitions/guid" }, "type": "array" }, "first_public_at": { "_format": "date-time", "description": "DEPRECATED. The date the content was first published. Used in details. Deprecated in favour of top level `first_published_at`.", "type": "string" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "frontend_links": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "frontend_links_with_base_path": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "base_path", "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "government": { "additionalProperties": false, "description": "DEPRECATED: Content should be associated with a government through a link", "properties": { "current": { "description": "Is the government that published this document still the current government.", "type": "boolean" }, "slug": { "description": "Government slug, used for analytics, eg '1970-to-1974-conservative-government'.", "type": "string" }, "title": { "description": "Name of the government that first published this document, eg '1970 to 1974 Conservative government'.", "type": "string" } }, "required": [ "title", "slug", "current" ], "type": "object" }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "political": { "description": "If the content is considered political in nature, reflecting views of the government it was published under.", "type": "boolean" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "publishing_scheduled_at": { "_format": "date-time", "description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.", "type": "string" }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "scheduled_publishing_delay_seconds": { "description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.", "type": "integer" }, "tags": { "additionalProperties": false, "description": "Field used by email-alert-api to trigger email alerts for subscriptions to topics (gov.uk/topic) and policies (gov.uk/policies).", "properties": { "additional_topics": { "items": { "type": "string" }, "type": "array" }, "browse_pages": { "items": { "type": "string" }, "type": "array" }, "policies": { "items": { "type": "string" }, "type": "array" }, "primary_topic": { "items": { "type": "string" }, "type": "array" }, "topics": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "title": { "type": "string" }, "withdrawn_notice": { "additionalProperties": false, "properties": { "explanation": { "type": "string" }, "withdrawn_at": { "format": "date-time" } }, "type": "object" } }, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "document_collection" ], "type": "string" }, "first_published_at": { "anyOf": [ { "$ref": "#/definitions/first_published_at" }, { "type": "null" } ] }, "links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "documents": { "$ref": "#/definitions/frontend_links_with_base_path" }, "facet_groups": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers links from content back to finders the content is surfaced on" }, "government": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The government associated with this document", "maxItems": 1 }, "lead_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "level_one_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "mainstream_browse_pages": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The user needs this piece of content meets." }, "ministers": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/frontend_links_with_base_path" }, "original_primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path" }, "part_of_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policies": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policy_areas": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "related_guides": { "$ref": "#/definitions/frontend_links_with_base_path" }, "related_mainstream_content": { "$ref": "#/definitions/frontend_links_with_base_path" }, "related_policies": { "$ref": "#/definitions/frontend_links_with_base_path" }, "related_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "role_appointments": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "secondary_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "suggested_ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Prototype-stage taxonomy label for this content item" }, "topic_taxonomy_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "topical_events": { "$ref": "#/definitions/frontend_links_with_base_path" }, "topics": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "public_updated_at": { "anyOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "publishing_scheduled_at": { "anyOf": [ { "$ref": "#/definitions/publishing_scheduled_at" }, { "type": "null" } ] }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "scheduled_publishing_delay_seconds": { "anyOf": [ { "$ref": "#/definitions/scheduled_publishing_delay_seconds" }, { "type": "null" } ] }, "schema_name": { "enum": [ "document_collection" ], "type": "string" }, "title": { "$ref": "#/definitions/title" }, "updated_at": { "_format": "date-time", "type": "string" }, "withdrawn_notice": { "$ref": "#/definitions/withdrawn_notice" } }, "required": [ "base_path", "content_id", "description", "details", "document_type", "links", "locale", "public_updated_at", "schema_name", "title", "updated_at" ], "type": "object" }
o21192
{ "title": "Constant Publisher", "required": [ "publisher_type", "publish" ], "properties": { "publisher_type": { "default": "constant-pub", "enum": [ "constant-pub" ], "type": "string" }, "publish": { "type": "object" } }, "additionalProperties": false, "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "id": "constant_publisher" }
o66157
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "failed_license_scan": { "additionalProperties": false, "description": "Failed automated software copyright license scan", "properties": { "_release": { "description": "Unique release id in form of \"ecosystem:package:version\"", "type": "string" }, "details": { "additionalProperties": true, "type": "object" }, "schema": { "additionalProperties": false, "properties": { "name": { "description": "Name of the schema", "pattern": "^[a-zA-Z0-9_]+$", "type": "string" }, "url": { "_format": "uri", "description": "Full URL of the schema", "type": "string" }, "version": { "description": "Version of the schema", "pattern": "^[0-9]+-[0-9]+-[0-9]+$", "type": "string" } }, "required": [ "name", "version" ], "type": "object" }, "status": { "enum": [ "error" ], "type": "string" }, "summary": { "additionalProperties": true, "type": "object" } }, "required": [ "status", "summary", "details" ], "type": "object" }, "file_details": { "additionalProperties": false, "properties": { "path": { "type": "string" }, "result": { "items": { "additionalProperties": true, "type": "object" }, "type": "array" } }, "required": [ "path" ], "type": "object" }, "license_count": { "additionalProperties": false, "description": "Detected license with occurrence count", "properties": { "count": { "description": "Combined count of detected variants", "type": "number" }, "license_name": { "description": "Common name of the detected license", "type": "string" } }, "required": [ "count", "license_name" ], "type": "object" }, "license_details_pre_3_0": { "additionalProperties": false, "properties": { "count": { "description": "Number of occurrences of this variant", "type": "number" }, "license_name": { "description": "Common name of the detected license", "type": "string" }, "variant_id": { "description": "Specific license variant detected", "type": "string" } }, "required": [ "count", "license_name", "variant_id" ], "type": "object" }, "license_scan_details": { "additionalProperties": true, "properties": { "files": { "items": { "$ref": "#/definitions/file_details" }, "type": "array" }, "license_stats": { "items": { "$ref": "#/definitions/license_details_pre_3_0" }, "type": "array" }, "oslc_stats": { "$ref": "#/definitions/oslc_stats" } }, "type": "object" }, "license_scan_summary": { "additionalProperties": false, "properties": { "all_files": { "description": "Total number of files analysed", "type": "number" }, "distinct_licenses": { "items": { "$ref": "#/definitions/license_count" }, "type": "array" }, "license_files": { "type": "number" }, "licensed_files": { "type": "number" }, "source_files": { "type": "number" }, "sure_licenses": { "description": "Licenses detected with high match confidence", "items": { "type": "string" }, "type": "array" } }, "required": [ "distinct_licenses", "sure_licenses" ], "type": "object" }, "oslc_stats": { "additionalProperties": true, "properties": {}, "type": "object" }, "successful_license_scan": { "additionalProperties": false, "description": "Successful automated software copyright license scan", "properties": { "_release": { "description": "Unique release id in form of \"ecosystem:package:version\"", "type": "string" }, "details": { "$ref": "#/definitions/license_scan_details" }, "schema": { "additionalProperties": false, "properties": { "name": { "description": "Name of the schema", "pattern": "^[a-zA-Z0-9_]+$", "type": "string" }, "url": { "_format": "uri", "description": "Full URL of the schema", "type": "string" }, "version": { "description": "Version of the schema", "pattern": "^[0-9]+-[0-9]+-[0-9]+$", "type": "string" } }, "required": [ "name", "version" ], "type": "object" }, "status": { "enum": [ "success" ], "type": "string" }, "summary": { "$ref": "#/definitions/license_scan_summary" } }, "required": [ "status", "summary", "details" ], "type": "object" } }, "oneOf": [ { "$ref": "#/definitions/failed_license_scan" }, { "$ref": "#/definitions/successful_license_scan" }, { "additionalProperties": false, "description": "Successful automated software copyright license scan", "properties": {}, "type": "object" } ], "title": "source_licenses-v2-0-0" }
o61003
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ServiceReference": { "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "properties": { "name": { "description": "name is the name of the service. Required", "type": "string" }, "namespace": { "description": "namespace is the namespace of the service. Required", "type": "string" }, "path": { "description": "path is an optional URL path at which the webhook will be contacted.", "type": "string" }, "port": { "_format": "int32", "description": "port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.", "type": "integer" } }, "required": [ "namespace", "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_WebhookClientConfig": { "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook.", "properties": { "caBundle": { "_format": "byte", "description": "caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", "type": "string" }, "service": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ServiceReference", "description": "service is a reference to the service for this webhook. Either service or url must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`." }, "url": { "description": "url gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", "type": "string" } }, "type": "object" } }, "description": "CustomResourceConversion describes how to convert different versions of a CR.", "properties": { "conversionReviewVersions": { "description": "conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail. Defaults to `[\"v1beta1\"]`.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "strategy": { "description": "strategy specifies how custom resources are converted between versions. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information\n is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhookClientConfig to be set.", "type": [ "string", "null" ] }, "webhookClientConfig": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_WebhookClientConfig", "description": "webhookClientConfig is the instructions for how to call the webhook if strategy is `Webhook`. Required when `strategy` is set to `Webhook`." } }, "required": [ "strategy" ], "type": "object" }
kb_188_Normalized
{ "properties": { "date_range": { "properties": { "end_date": { "description": "The end date for the search", "type": "string" }, "start_date": { "description": "The start date for the search", "type": "string" } }, "type": "object" }, "keywords": { "description": "The keywords to search for in news articles", "items": { "type": "string" }, "type": "array" }, "source": { "description": "The preferred news source", "type": "string" } }, "required": [ "keywords" ], "type": "object" }
search_news_44313580
{ "properties": { "customer_details": { "properties": { "address": { "description": "The address of the customer", "type": "string" }, "email": { "description": "The email address of the customer", "type": "string" }, "name": { "description": "The name of the customer", "type": "string" } }, "required": [ "name", "email", "address" ], "type": "object" }, "items": { "items": { "properties": { "name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "name", "quantity", "price" ], "type": "object" }, "type": "array" }, "tax_rate": { "description": "The tax rate applied to the invoice", "type": "number" } }, "required": [ "customer_details", "items" ], "type": "object" }
generate_invoice_a3436f0f
{ "additionalProperties": false, "description": "Schema for a Google Analytics Ecommerce transaction", "properties": { "affiliation": { "maxLength": 500, "type": "string" }, "currency": { "maxLength": 3, "minLength": 3, "type": "string" }, "id": { "maxLength": 500, "type": "string" }, "revenue": { "multipleOf": 0.01, "type": "number" }, "shipping": { "multipleOf": 0.01, "type": "number" }, "tax": { "multipleOf": 0.01, "type": "number" } }, "self": { "format": "jsonschema", "name": "transaction", "vendor": "com.google.analytics.ecommerce", "version": "1-0-0" }, "type": "object" }
sp_32_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "VERIS Community Schema 1.3", "properties": { "action": { "minProperties": 1, "properties": { "environmental": { "additionalProperties": false, "properties": { "notes": { "minLength": 1, "type": "string" }, "variety": { "items": { "enum": [ "Deterioration", "Earthquake", "EMI", "ESD", "Temperature", "Fire", "Flood", "Hazmat", "Humidity", "Hurricane", "Ice", "Landslide", "Lightning", "Meteorite", "Particulates", "Pathogen", "Power failure", "Tornado", "Tsunami", "Vermin", "Volcano", "Leak", "Wind", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true } }, "required": [ "variety" ], "type": "object" }, "error": { "additionalProperties": false, "properties": { "notes": { "minLength": 1, "type": "string" }, "variety": { "items": { "enum": [ "Classification error", "Data entry error", "Disposal error", "Gaffe", "Loss", "Maintenance error", "Misconfiguration", "Misdelivery", "Misinformation", "Omission", "Physical accidents", "Capacity shortage", "Programming error", "Publishing error", "Malfunction", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "vector": { "items": { "enum": [ "Random error", "Carelessness", "Inadequate personnel", "Inadequate processes", "Inadequate technology", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true } }, "required": [ "variety", "vector" ], "type": "object" }, "hacking": { "additionalProperties": false, "properties": { "cve": { "type": "string" }, "notes": { "minLength": 1, "type": "string" }, "variety": { "items": { "enum": [ "Abuse of functionality", "Brute force", "Buffer overflow", "Cache poisoning", "Session prediction", "CSRF", "XSS", "Cryptanalysis", "DoS", "Footprinting", "Forced browsing", "Format string attack", "Fuzz testing", "HTTP request smuggling", "HTTP request splitting", "HTTP response smuggling", "HTTP Response Splitting", "Integer overflows", "LDAP injection", "Mail command injection", "MitM", "Null byte injection", "Offline cracking", "OS commanding", "Pass-the-hash", "Path traversal", "RFI", "Reverse engineering", "Routing detour", "Session fixation", "Session replay", "Soap array abuse", "Special element injection", "SQLi", "SSI injection", "URL redirector abuse", "Use of backdoor or C2", "Use of stolen creds", "XML attribute blowup", "XML entity expansion", "XML external entities", "XML injection", "XPath injection", "XQuery injection", "Virtual machine escape", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "vector": { "items": { "enum": [ "3rd party desktop", "Backdoor or C2", "Desktop sharing", "Physical access", "Command shell", "Partner", "VPN", "Web application", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true } }, "required": [ "vector", "variety" ], "type": "object" }, "malware": { "additionalProperties": false, "properties": { "cve": { "type": "string" }, "name": { "type": "string" }, "notes": { "minLength": 1, "type": "string" }, "variety": { "items": { "enum": [ "Adware", "Backdoor", "Brute force", "Capture app data", "Capture stored data", "Client-side attack", "Click fraud", "C2", "Destroy data", "Disable controls", "DoS", "Downloader", "Exploit vuln", "Export data", "Packet sniffer", "Password dumper", "Ram scraper", "Ransomware", "Rootkit", "Scan network", "Spam", "Spyware/Keylogger", "SQL injection", "Adminware", "Worm", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "vector": { "items": { "enum": [ "Direct install", "Download by malware", "Email autoexecute", "Email link", "Email attachment", "Instant messaging", "Network propagation", "Remote injection", "Removable media", "Software update", "Web drive-by", "Web download", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true } }, "required": [ "vector", "variety" ], "type": "object" }, "misuse": { "additionalProperties": false, "properties": { "notes": { "minLength": 1, "type": "string" }, "variety": { "items": { "enum": [ "Knowledge abuse", "Privilege abuse", "Possession abuse", "Data mishandling", "Email misuse", "Net misuse", "Illicit content", "Unapproved workaround", "Unapproved hardware", "Unapproved software", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "vector": { "items": { "enum": [ "Physical access", "LAN access", "Remote access", "Non-corporate", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true } }, "required": [ "vector", "variety" ], "type": "object" }, "physical": { "additionalProperties": false, "properties": { "notes": { "minLength": 1, "type": "string" }, "variety": { "items": { "enum": [ "Assault", "Bypassed controls", "Destruction", "Disabled controls", "Skimmer", "Snooping", "Surveillance", "Tampering", "Theft", "Wiretapping", "Connection", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "vector": { "items": { "enum": [ "Partner facility", "Partner vehicle", "Personal residence", "Personal vehicle", "Public facility", "Public vehicle", "Victim secure area", "Victim work area", "Victim public area", "Victim grounds", "Visitor privileges", "Uncontrolled location", "Privileged access", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true } }, "required": [ "vector", "variety" ], "type": "object" }, "social": { "additionalProperties": false, "properties": { "notes": { "minLength": 1, "type": "string" }, "target": { "items": { "enum": [ "Auditor", "Call center", "Cashier", "Customer", "End-user", "Executive", "Finance", "Former employee", "Helpdesk", "Human resources", "Maintenance", "Manager", "Partner", "Guard", "Developer", "System admin", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "variety": { "items": { "enum": [ "Baiting", "Bribery", "Elicitation", "Extortion", "Forgery", "Influence", "Scam", "Phishing", "Pretexting", "Propaganda", "Spam", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "vector": { "items": { "enum": [ "Documents", "Email", "In-person", "IM", "Phone", "Removable media", "SMS", "Social media", "Software", "Website", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true } }, "required": [ "vector", "variety", "target" ], "type": "object" }, "unknown": { "properties": { "notes": { "minLength": 1, "type": "string" } }, "type": "object" } }, "type": "object" }, "actor": { "additionalProperties": false, "minProperties": 1, "properties": { "external": { "additionalProperties": false, "properties": { "country": { "items": { "enum": [ "AD", "AE", "AF", "AG", "AI", "AL", "AM", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "Other", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "Unknown", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "motive": { "items": { "enum": [ "NA", "Espionage", "Fear", "Financial", "Fun", "Grudge", "Ideology", "Convenience", "Secondary", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "name": { "items": { "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "notes": { "minLength": 1, "type": "string" }, "region": { "items": { "maxLength": 6, "minLength": 6, "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "variety": { "items": { "enum": [ "Activist", "Auditor", "Competitor", "Customer", "Force majeure", "Former employee", "Nation-state", "Organized crime", "Acquaintance", "State-affiliated", "Terrorist", "Unaffiliated", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true } }, "required": [ "country", "variety", "motive" ], "type": "object" }, "internal": { "additionalProperties": false, "properties": { "job_change": { "items": { "enum": [ "Hired", "Promoted", "Lateral move", "Resigned", "Let go", "Demoted", "Passed over", "Unknown", "Other", "Reprimanded", "Job eval", "Personal issues" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "motive": { "items": { "enum": [ "NA", "Espionage", "Fear", "Financial", "Fun", "Grudge", "Ideology", "Convenience", "Secondary", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "notes": { "minLength": 1, "type": "string" }, "variety": { "items": { "enum": [ "Auditor", "Call center", "Cashier", "End-user", "Executive", "Finance", "Helpdesk", "Human resources", "Maintenance", "Manager", "Guard", "Developer", "System admin", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true } }, "required": [ "motive", "variety" ], "type": "object" }, "partner": { "additionalProperties": false, "properties": { "country": { "items": { "enum": [ "AD", "AE", "AF", "AG", "AI", "AL", "AM", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "Other", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "Unknown", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "industry": { "maxLength": 6, "minLength": 2, "pattern": "\\d{2}-?\\d{0,4}", "type": "string" }, "motive": { "items": { "enum": [ "NA", "Espionage", "Fear", "Financial", "Fun", "Grudge", "Ideology", "Convenience", "Secondary", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "notes": { "minLength": 1, "type": "string" }, "region": { "items": { "maxLength": 6, "minLength": 6, "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true } }, "required": [ "country", "motive" ], "type": "object" }, "unknown": { "properties": { "notes": { "minLength": 1, "type": "string" } }, "type": "object" } }, "type": "object" }, "asset": { "additionalProperties": false, "minProperties": 1, "properties": { "assets": { "items": { "additionalProperties": false, "properties": { "amount": { "type": "integer" }, "variety": { "enum": [ "S - Authentication", "S - Backup", "S - Database", "S - DHCP", "S - Directory", "S - DCS", "S - DNS", "S - File", "S - Log", "S - Mail", "S - Mainframe", "S - Payment switch", "S - POS controller", "S - Print", "S - Proxy", "S - Remote access", "S - SCADA", "S - Web application", "S - Code repository", "S - VM host", "S - Other", "S - Unknown", "N - Access reader", "N - Camera", "N - Firewall", "N - HSM", "N - IDS", "N - Broadband", "N - PBX", "N - Private WAN", "N - PLC", "N - Public WAN", "N - RTU", "N - Router or switch", "N - SAN", "N - Telephone", "N - VoIP adapter", "N - LAN", "N - WLAN", "N - Other", "U - Auth token", "U - Desktop", "U - Laptop", "U - Media", "U - Mobile phone", "U - Peripheral", "U - POS terminal", "U - Tablet", "U - Telephone", "U - VoIP phone", "U - Other", "T - ATM", "T - PED pad", "T - Gas terminal", "T - Kiosk", "T - Other", "M - Tapes", "M - Disk media", "M - Documents", "M - Flash drive", "M - Disk drive", "M - Smart card", "M - Payment card", "M - Other", "P - System admin", "P - Auditor", "P - Call center", "P - Cashier", "P - Customer", "P - Developer", "P - End-user", "P - Executive", "P - Finance", "P - Former employee", "P - Guard", "P - Helpdesk", "P - Human resources", "P - Maintenance", "P - Manager", "P - Partner", "P - Other", "Unknown" ], "type": "string" } }, "required": [ "variety" ], "type": "object" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "cloud": { "type": "string" }, "country": { "items": { "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "governance": { "items": { "enum": [ "Personally owned", "3rd party owned", "3rd party managed", "3rd party hosted", "Internally isolated", "Unknown" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "notes": { "minLength": 1, "type": "string" } }, "type": "object" }, "attribute": { "additionalProperties": false, "minProperties": 1, "properties": { "availability": { "properties": { "duration": { "additionalProperties": false, "properties": { "unit": { "enum": [ "NA", "Seconds", "Minutes", "Hours", "Days", "Weeks", "Months", "Years", "Never", "Unknown" ], "type": "string" }, "value": { "type": "number" } }, "required": [ "unit" ], "type": "object" }, "notes": { "minLength": 1, "type": "string" }, "variety": { "items": { "enum": [ "Destruction", "Loss", "Interruption", "Degradation", "Acceleration", "Obscuration", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true } }, "required": [ "variety" ], "type": "object" }, "confidentiality": { "additionalProperties": false, "properties": { "data": { "items": { "additionalProperties": false, "properties": { "amount": { "type": "integer" }, "variety": { "enum": [ "Credentials", "Bank", "Classified", "Copyrighted", "Digital certificate", "Medical", "Payment", "Personal", "Internal", "Source code", "System", "Secrets", "Virtual currency", "Unknown", "Other" ], "type": "string" } }, "required": [ "variety" ], "type": "object" }, "minItems": 1, "type": "array" }, "data_disclosure": { "enum": [ "Yes", "Potentially", "No", "Unknown" ], "type": "string" }, "data_total": { "type": "integer" }, "data_victim": { "items": { "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "notes": { "minLength": 1, "type": "string" }, "state": { "items": { "enum": [ "Stored", "Stored encrypted", "Stored unencrypted", "Transmitted", "Transmitted encrypted", "Transmitted unencrypted", "Processed", "Unknown" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true } }, "required": [ "data_disclosure" ], "type": "object" }, "integrity": { "additionalProperties": false, "properties": { "notes": { "minLength": 1, "type": "string" }, "variety": { "items": { "enum": [ "Created account", "Defacement", "Hardware tampering", "Alter behavior", "Fraudulent transaction", "Log tampering", "Repurpose", "Misrepresentation", "Modify configuration", "Modify privileges", "Modify data", "Software installation", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true } }, "required": [ "variety" ], "type": "object" } }, "type": "object" }, "campaign_id": { "type": "string" }, "confidence": { "enum": [ "High", "Medium", "Low", "None" ], "type": "string" }, "control_failure": { "type": "string" }, "corrective_action": { "type": "string" }, "cost_corrective_action": { "enum": [ "Simple and cheap", "Difficult and expensive", "Something in-between", "Unknown" ], "type": "string" }, "discovery_method": { "enum": [ "Ext - actor disclosure", "Ext - fraud detection", "Ext - monitoring service", "Ext - customer", "Ext - audit", "Ext - unknown", "Int - antivirus", "Int - incident response", "Int - infrastructure monitoring", "Int - financial audit", "Int - fraud detection", "Int - HIDS", "Int - IT review", "Int - log review", "Int - NIDS", "Ext - law enforcement", "Int - security alarm", "Int - reported by employee", "Int - unknown", "Prt - monitoring service", "Prt - audit", "Prt - antivirus", "Prt - incident response", "Prt - unknown", "Prt - other", "Ext - incident response", "Ext - found documents", "Ext - suspicious traffic", "Ext - emergency response team", "Int - data loss prevention", "Unknown", "Other" ], "type": "string" }, "discovery_notes": { "minLength": 1, "type": "string" }, "impact": { "additionalProperties": false, "properties": { "iso_currency_code": { "enum": [ "AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMK", "ZWD" ], "type": "string" }, "loss": { "items": { "additionalProperties": false, "properties": { "amount": { "type": "number" }, "max_amount": { "type": "number" }, "min_amount": { "type": "number" }, "rating": { "enum": [ "Major", "Moderate", "Minor", "None", "Unknown" ], "type": "string" }, "variety": { "enum": [ "Asset and fraud", "Brand damage", "Business disruption", "Operating costs", "Legal and regulatory", "Competitive advantage", "Response and recovery" ], "type": "string" } }, "required": [ "variety" ], "type": "object" }, "minItems": 1, "type": "array" }, "notes": { "minLength": 1, "type": "string" }, "overall_amount": { "type": "number" }, "overall_max_amount": { "type": "number" }, "overall_min_amount": { "type": "number" }, "overall_rating": { "enum": [ "Insignificant", "Distracting", "Painful", "Damaging", "Catastrophic", "Unknown" ], "type": "string" } }, "required": [ "overall_rating" ], "type": "object" }, "incident_id": { "type": "string" }, "ioc": { "items": { "additionalProperties": false, "properties": { "comment": { "type": "string" }, "indicator": { "type": "string" } }, "required": [ "indicator" ], "type": "object" }, "minItems": 1, "type": "array" }, "notes": { "minLength": 1, "type": "string" }, "plus": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "VERIZON plus schema version 1.3", "properties": { "analysis_status": { "enum": [ "Ineligible", "Needs review", "In-progress", "First pass", "Validated", "Finalized", "No Report" ], "minLength": 1, "type": "string" }, "analyst": { "minLength": 1, "type": "string" }, "analyst_notes": { "minLength": 1, "type": "string" }, "antiforensic_measures": { "items": { "enum": [ "No evidence of AF", "Data Wiping", "Data Hiding", "Data Corruption", "Unknown" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "asset": { "additionalProperties": false, "properties": { "total": { "minLength": 1, "type": "string" } }, "type": "object" }, "asset_os": { "items": { "enum": [ "Not applicable", "Android", "Apple iOS", "BlackBerry OS", "Linux", "Mac OSX", "Mainframe", "Symbian", "Unix", "webOS", "Windows", "Windows Phone", "Unknown", "Other" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "attack_difficulty_initial": { "enum": [ "Not Applicable", "Unknown", "Very Low", "Low", "Moderate", "High" ], "minLength": 1, "type": "string" }, "attack_difficulty_legacy": { "enum": [ "Not Applicable", "Unknown", "Very Low", "Low", "Moderate", "High" ], "minLength": 1, "type": "string" }, "attack_difficulty_subsequent": { "enum": [ "Not Applicable", "Unknown", "Very Low", "Low", "Moderate", "High" ], "minLength": 1, "type": "string" }, "attribute": { "additionalProperties": false, "properties": { "confidentiality": { "additionalProperties": false, "properties": { "credit_monitoring": { "minLength": 1, "type": "string" }, "credit_monitoring_years": { "minLength": 1, "type": "integer" }, "data_abuse": { "minLength": 1, "type": "string" }, "data_misuse": { "minLength": 1, "type": "string" }, "partner_data": { "minLength": 1, "type": "string" }, "partner_number": { "minLength": 1, "type": "integer" } }, "type": "object" } }, "type": "object" }, "control_inadequacies_legacy": { "items": { "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "created": { "minLength": 1, "type": "string" }, "dbir_year": { "minLength": 1, "type": "integer" }, "event_chain": { "items": { "additionalProperties": false, "properties": { "action": { "enum": [ "mal", "hak", "soc", "mis", "phy", "err", "env" ], "minLength": 1, "type": "string" }, "actor": { "enum": [ "ext", "int", "prt" ], "minLength": 1, "type": "string" }, "asset": { "enum": [ "srv", "net", "usr", "off", "ppl" ], "minLength": 1, "type": "string" }, "attribute": { "enum": [ "cp", "ia", "au" ], "minLength": 1, "type": "string" }, "summary": { "minLength": 1, "type": "string" } }, "type": "object" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "f500": { "minLength": 1, "type": "string" }, "github": { "minLength": 1, "type": "string" }, "investigator": { "minLength": 1, "type": "string" }, "master_id": { "minLength": 1, "type": "string" }, "modified": { "minLength": 1, "type": "string" }, "pci": { "additionalProperties": false, "properties": { "compliance_status": { "enum": [ "Not Compliant", "Found Compliant", "Unknown" ], "minLength": 1, "type": "string" }, "merchant_level": { "enum": [ "Level 1", "Level 2", "Level 3", "Level 4", "Unknown" ], "minLength": 1, "type": "string" }, "notes": { "minLength": 1, "type": "string" }, "req_1": { "enum": [ "Not Applicable", "In Place", "Not In Place", "Unknown" ], "minLength": 1, "type": "string" }, "req_10": { "enum": [ "Not Applicable", "In Place", "Not In Place", "Unknown" ], "minLength": 1, "type": "string" }, "req_11": { "enum": [ "Not Applicable", "In Place", "Not In Place", "Unknown" ], "minLength": 1, "type": "string" }, "req_12": { "enum": [ "Not Applicable", "In Place", "Not In Place", "Unknown" ], "minLength": 1, "type": "string" }, "req_2": { "enum": [ "Not Applicable", "In Place", "Not In Place", "Unknown" ], "minLength": 1, "type": "string" }, "req_3": { "enum": [ "Not Applicable", "In Place", "Not In Place", "Unknown" ], "minLength": 1, "type": "string" }, "req_4": { "enum": [ "Not Applicable", "In Place", "Not In Place", "Unknown" ], "minLength": 1, "type": "string" }, "req_5": { "enum": [ "Not Applicable", "In Place", "Not In Place", "Unknown" ], "minLength": 1, "type": "string" }, "req_6": { "enum": [ "Not Applicable", "In Place", "Not In Place", "Unknown" ], "minLength": 1, "type": "string" }, "req_7": { "enum": [ "Not Applicable", "In Place", "Not In Place", "Unknown" ], "minLength": 1, "type": "string" }, "req_8": { "enum": [ "Not Applicable", "In Place", "Not In Place", "Unknown" ], "minLength": 1, "type": "string" }, "req_9": { "enum": [ "Not Applicable", "In Place", "Not In Place", "Unknown" ], "minLength": 1, "type": "string" }, "status_determined": { "minLength": 1, "type": "string" } }, "type": "object" }, "public_disclosure": { "minLength": 1, "type": "string" }, "security_maturity": { "enum": [ "Initial", "Managed", "Defined", "Measured", "Optimizing", "Unknown" ], "minLength": 1, "type": "string" }, "targeted": { "enum": [ "Unknown", "Not Applicable", "Opportunistic", "Targeted" ], "minLength": 1, "type": "string" }, "timeline": { "additionalProperties": false, "properties": { "notification": { "additionalProperties": false, "properties": { "day": { "minLength": 1, "type": "integer" }, "month": { "minLength": 1, "type": "integer" }, "year": { "minLength": 1, "type": "integer" } }, "type": "object" } }, "type": "object" }, "unfollowed_policies": { "enum": [ "Yes", "No", "Unknown" ], "minLength": 1, "type": "string" }, "unknown_unknowns": { "items": { "enum": [ "Assets that had unknown user accounts or privileges", "Assets unknown or unclaimed by the organization (or business group affected)", "Assets that had unknown network connections or accessibility", "Data the organization did not know existed on a particular asset", "Unknown" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "victim_name": { "items": { "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true } }, "required": [ "master_id" ], "type": "object" }, "reference": { "type": "string" }, "schema_version": { "type": "string" }, "security_incident": { "enum": [ "Confirmed", "Suspected", "False positive", "Near miss" ], "type": "string" }, "source_id": { "type": "string" }, "summary": { "type": "string" }, "targeted": { "enum": [ "Opportunistic", "Targeted", "Unknown", "NA" ], "type": "string" }, "timeline": { "additionalProperties": false, "properties": { "compromise": { "additionalProperties": false, "properties": { "unit": { "enum": [ "NA", "Seconds", "Minutes", "Hours", "Days", "Weeks", "Months", "Years", "Never", "Unknown" ], "type": "string" }, "value": { "type": "number" } }, "required": [ "unit" ], "type": "object" }, "containment": { "additionalProperties": false, "properties": { "unit": { "enum": [ "NA", "Seconds", "Minutes", "Hours", "Days", "Weeks", "Months", "Years", "Never", "Unknown" ], "type": "string" }, "value": { "type": "number" } }, "required": [ "unit" ], "type": "object" }, "discovery": { "additionalProperties": false, "properties": { "unit": { "enum": [ "NA", "Seconds", "Minutes", "Hours", "Days", "Weeks", "Months", "Years", "Never", "Unknown" ], "type": "string" }, "value": { "type": "number" } }, "required": [ "unit" ], "type": "object" }, "exfiltration": { "additionalProperties": false, "properties": { "unit": { "enum": [ "NA", "Seconds", "Minutes", "Hours", "Days", "Weeks", "Months", "Years", "Never", "Unknown" ], "type": "string" }, "value": { "type": "number" } }, "required": [ "unit" ], "type": "object" }, "incident": { "additionalProperties": false, "properties": { "day": { "maximum": 31, "minimum": 1, "type": "integer" }, "month": { "maximum": 12, "minimum": 1, "type": "integer" }, "time": { "type": "string" }, "year": { "maximum": 2015, "minimum": 1950, "type": "integer" } }, "required": [ "year" ], "type": "object" } }, "required": [ "incident" ], "type": "object" }, "victim": { "additionalProperties": false, "properties": { "country": { "items": { "enum": [ "AD", "AE", "AF", "AG", "AI", "AL", "AM", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "Other", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "Unknown", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW" ], "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "employee_count": { "enum": [ "1 to 10", "11 to 100", "101 to 1000", "Small", "Large", "1001 to 10000", "10001 to 25000", "25001 to 50000", "50001 to 100000", "Over 100000", "Unknown" ], "type": "string" }, "industry": { "maxLength": 6, "minLength": 2, "pattern": "\\d{2}-?\\d{0,4}", "type": "string" }, "locations_affected": { "type": "integer" }, "notes": { "minLength": 1, "type": "string" }, "region": { "items": { "maxLength": 6, "minLength": 6, "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "revenue": { "additionalProperties": false, "minProperties": 1, "properties": { "amount": { "type": "integer" }, "iso_currency_code": { "enum": [ "AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMK", "ZWD" ], "type": "string" } }, "type": "object" }, "secondary": { "additionalProperties": false, "minProperties": 1, "properties": { "amount": { "type": "integer" }, "notes": { "minLength": 1, "type": "string" }, "victim_id": { "items": { "type": "string" }, "minItems": 1, "type": "array" } }, "type": "object" }, "state": { "type": "string" }, "victim_id": { "type": "string" } }, "required": [ "country", "employee_count", "industry" ], "type": "object" } }, "required": [ "actor", "action", "discovery_method", "schema_version", "asset", "timeline", "incident_id", "security_incident" ], "type": "object" }
o84874
{ "description": "AttachedVolume describes a volume attached to a node", "properties": { "devicePath": { "description": "DevicePath represents the device path where the volume should be available", "type": [ "string", "null" ] }, "name": { "description": "Name of the attached volume", "type": [ "string", "null" ] } }, "required": [ "name", "devicePath" ], "type": "object" }
kb_41_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "GetConfigurationResponse", "type": "object", "properties": { "configurationKey": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string", "maxLength": 50 }, "readonly": { "type": "boolean" }, "value": { "type": "string", "maxLength": 500 } }, "required": [ "key", "readonly" ] } }, "unknownKey": { "type": "array", "items": { "type": "string", "maxLength": 50 } } }, "additionalProperties": false }
o44009
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "LHCb Deposit Schema.", "type": "object", "description": "Describe information needed for deposit module.", "properties": { "stripping_turbo_selection": { "items": { "type": "object", "properties": { "dataset_type": { "enum": [ "mc_data", "real_data" ], "type": "string", "title": "Type of Dataset" }, "stripping_turbo_line": { "type": "string", "title": "Stripping/TURBO Line" }, "name": { "type": "string", "title": "Custom Name" }, "bookkeping_locations": { "items": { "type": "string" }, "type": "array", "title": "Bookkeeping Locations" } } }, "type": "array", "title": "Stripping/Turbo Selections" }, "ntuple_userdst_production": { "items": { "type": "object", "properties": { "output_eos_location": { "type": "string", "title": "Output EOS Location" }, "name": { "type": "string", "title": "Custom name" }, "wg_production_bk_path": { "type": "string", "title": "WG Production Bookkeeping Path" }, "davinci_version": { "type": "string", "title": "DaVinci Version" }, "davinci_scripts": { "items": { "x-cap-file": {}, "type": "string" }, "type": "array", "title": "DaVinci Scripts" }, "input_dataset": { "type": "string", "title": "Input Dataset" }, "platform": { "type": "string", "title": "Platform" }, "ganga_scripts": { "items": { "x-cap-file": {}, "type": "string" }, "type": "array", "title": "Ganga Scripts" } } }, "type": "array", "description": "Please provide information about the steps of the analysis", "title": "ntuple/userDST-production" }, "user_analysis": { "type": "object", "properties": { "additional_repos": { "items": { "type": "string" }, "type": "array", "title": "Additional Repositories" }, "basic_scripts": { "type": "object", "properties": { "command": { "type": "string", "title": "Command to execute code" }, "scripts": { "items": { "x-cap-file": {}, "type": "string" }, "type": "array", "title": "Files/Scripts" } }, "title": "Basic scripts" }, "docker_registries": { "items": { "x-cap-file": {}, "type": "string" }, "type": "array", "title": "Docker images of the analysis" }, "gitlab_links": { "items": { "x-cap-file": {}, "type": "string" }, "type": "array", "title": "Gitlab repositories of the analysis" } }, "title": "User Analysis" }, "_cap_status": { "type": "object", "properties": { "url": { "type": "string" }, "message": { "type": "string" } } }, "additional_resources": { "properties": { "documentations": { "items": { "type": "object", "description": "Add documentation", "properties": { "url": { "type": "string", "title": "URL" }, "title": { "type": "string", "title": "Title" } } }, "type": "array", "id": "documentations", "title": "Documentations" }, "internal_discussions": { "items": { "type": "object", "properties": { "url": { "type": "string", "title": "URL" }, "meeting": { "type": "string", "title": "eGroup" }, "title": { "type": "string", "title": "Title" } } }, "type": "array", "id": "internal-discussions", "title": "Internal Discussions" }, "presentations": { "items": { "type": "object", "properties": { "url": { "type": "string", "title": "URL" }, "meeting": { "type": "string", "title": "Meeting (GROUP)" }, "title": { "type": "string", "title": "Title" } }, "title": "Reports" }, "type": "array", "id": "presentations", "title": "Presentations" }, "publications": { "items": { "type": "object", "properties": { "roles": { "type": "string", "title": "Roles" }, "public_paper": { "type": "string", "title": "Public Paper" }, "arxiv_id": { "type": "string", "title": "ArXiv ID" }, "review_egroup": { "type": "string", "title": "Review Group" }, "url": { "type": "string", "title": "URL" }, "conf_report": { "type": "string", "title": "Conference Report (CONF)" }, "analysis_number": { "type": "string", "title": "Analysis Note (ANA)" }, "twiki": { "type": "string", "title": "TWiki Page" } } }, "type": "array", "id": "publications", "title": "Publications" } }, "type": "object", "description": "Please provide information about the additional resources of the analysis", "title": "Additional Resources" }, "basic_info": { "id": "basic_info", "description": "Please provide some information relevant for all parts of the Analysis here", "type": "object", "properties": { "analysis_proponents": { "items": { "type": "object", "properties": { "orcid": { "pattern": "^[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{4}$", "type": "string", "title": "ORCID" }, "name": { "type": "string", "title": "Name" } } }, "type": "array", "title": "Proponents" }, "analysis_status": { "enum": [ "None", "0 - planned / open topic", "1 - in preparation", "2 - ANA note released", "3 - review committee", "4 - collaboration review", "5 -", "6 - CONF note published", "7 -", "8 - journal review", "9 - PAPER published", "x - other" ], "type": "string", "title": "Status" }, "review_egroup": { "type": "string", "title": "Review eGroup" }, "reviewers": { "items": { "type": "object", "properties": { "orcid": { "pattern": "^[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{4}$", "type": "string", "title": "ORCID" }, "name": { "type": "string", "title": "Name" } } }, "type": "array", "title": "Reviewers" }, "analysis_title": { "type": "string", "description": "Provide a name for your analysis. This will be displayed as an analysis title when shared.", "title": "Analysis Name" }, "measurement": { "type": "string", "title": "Measurement" }, "keywords": { "type": "string", "id": "keywords", "title": "Keywords" }, "institutes": { "enum": [ "None", "IFT", "B_Q", "BDC", "DP", "CD", "QEE", "RD", "Charm", "SLB", "B2OC" ], "type": "string", "title": "Institutes Involved" } }, "title": "Basic Information" } } }
o80821
{ "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", "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_662_Normalized
{ "definitions": { "app": { "definitions": { "array_data": { "properties": { "datetime_array": { "items": { "$ref": "#/definitions/app/definitions/update_time" }, "type": "array" }, "integer_array": { "items": { "$ref": "#/definitions/app/definitions/per_page" }, "type": "array" }, "nested_coercer_array": { "items": { "$ref": "#/definitions/app/definitions/nested_coercer_object" }, "type": "array" }, "nested_coercer_object": { "$ref": "#/definitions/app/definitions/nested_coercer_object" }, "nested_no_coercer_array": { "items": { "$ref": "#/definitions/app/definitions/nested_no_coercer_object" }, "type": "array" }, "nested_no_coercer_object": { "$ref": "#/definitions/app/definitions/nested_no_coercer_object" }, "per_page": { "$ref": "#/definitions/app/definitions/per_page" }, "threshold": { "$ref": "#/definitions/app/definitions/threshold" }, "update_time": { "$ref": "#/definitions/app/definitions/update_time" } }, "type": "object" }, "deleted": { "description": "Whether deleted apps should be listed", "example": true, "type": [ "boolean" ] }, "maintenance": { "default": false, "description": "maintenance status of app", "example": false, "type": [ "boolean" ] }, "name": { "description": "unique name of app", "example": "example", "pattern": "^[a-z][a-z0-9-]{3,30}$", "type": [ "string" ] }, "nested_coercer_object": { "properties": { "threshold": { "$ref": "#/definitions/app/definitions/threshold" }, "update_time": { "$ref": "#/definitions/app/definitions/update_time" } }, "type": "object" }, "nested_no_coercer_object": { "properties": { "per_page": { "$ref": "#/definitions/app/definitions/per_page" }, "threshold": { "$ref": "#/definitions/app/definitions/threshold" } }, "type": "object" }, "per_page": { "description": "Number of items per page", "example": 10, "type": [ "integer" ] }, "threshold": { "description": "Number of items per page", "example": 3.5, "type": [ "null", "number" ] }, "update_time": { "description": "last update time", "example": "2016-04-01T16:00:00+09:00", "format": "date-time", "type": [ "string" ] } }, "description": "An app represents the program that you would like to deploy and run on a PAAS.", "id": "schema/app", "links": [ { "description": "Create a new app.", "href": "/apps", "method": "POST", "rel": "create", "schema": { "properties": { "array_property": { "items": { "$ref": "#/definitions/app/definitions/array_data" }, "type": "array" }, "name": { "$ref": "#/definitions/app/definitions/name" }, "update_time": { "$ref": "#/definitions/app/definitions/update_time" } } }, "targetSchema": { "$ref": "#/definitions/app" }, "title": "Create" }, { "description": "Delete an existing app.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fname)}", "method": "DELETE", "rel": "destroy", "targetSchema": { "$ref": "#/definitions/app" }, "title": "Delete" }, { "description": "Info for existing app.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fname)}", "method": "GET", "rel": "self", "targetSchema": { "$ref": "#/definitions/app" }, "title": "Info" }, { "description": "List existing apps.", "href": "/apps", "method": "GET", "rel": "instances", "targetSchema": { "items": { "$ref": "#/definitions/app" }, "type": "array" }, "title": "List" }, { "description": "List archived apps.", "href": "/apps/archived", "method": "GET", "rel": "instances", "targetSchema": { "$ref": "#/definitions/app" }, "title": "List archived" }, { "description": "Search through apps.", "href": "/search/apps", "method": "GET", "rel": "instances", "schema": { "properties": { "array_property": { "items": { "$ref": "#/definitions/app/definitions/array_data" }, "type": "array" }, "deleted": { "$ref": "#/definitions/app/definitions/deleted" }, "per_page": { "$ref": "#/definitions/app/definitions/per_page" }, "query": { "$ref": "#/definitions/app/definitions/name" }, "threshold": { "$ref": "#/definitions/app/definitions/threshold" }, "update_time": { "$ref": "#/definitions/app/definitions/update_time" } }, "required": [ "query" ] }, "targetSchema": { "$ref": "#/definitions/app" }, "title": "Search" }, { "description": "Update an existing app.", "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fname)}", "method": "PATCH", "rel": "update", "schema": { "properties": { "maintenance": { "$ref": "#/definitions/app/definitions/maintenance" }, "name": { "$ref": "#/definitions/app/definitions/name" } } }, "targetSchema": { "$ref": "#/definitions/app" }, "title": "Update" }, { "description": "match path", "href": "/apps/abc", "method": "GET", "rel": "self", "targetSchema": { "$ref": "#/definitions/app" }, "title": "abc" } ], "properties": { "maintenance": { "$ref": "#/definitions/app/definitions/maintenance" }, "name": { "$ref": "#/definitions/app/definitions/name" } }, "title": "Apps", "type": [ "object" ] } }, "description": "The platform API empowers developers to automate and extend a generic PAAAS service.", "properties": { "app": { "$ref": "#/definitions/app" } }, "title": "PAAS Platform API", "type": [ "object" ] }
o47943
{ "properties": { "date": { "description": "The date of the meeting", "format": "date", "type": "string" }, "participants": { "description": "The participants' email addresses", "items": { "type": "string" }, "type": "array" }, "time": { "description": "The time of the meeting", "format": "time", "type": "string" }, "title": { "description": "The title of the meeting", "type": "string" } }, "required": [ "title", "participants", "date", "time" ], "type": "object" }
schedule_meeting_a16577b3
{ "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 to calculate the area of", "enum": [ "rectangle", "circle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_72df7aa6
{ "description": "This document contains a schema for validating an record serialization", "properties": { "$meta": { "_id": "/properties/$meta", "type": "object" }, "coord": { "_id": "/properties/coord", "properties": { "lat": { "_id": "/properties/coord/properties/lat", "description": "The latitude of this record's device", "title": "Schema for Record coord.lat fields", "type": "number" }, "lon": { "_id": "/properties/coord/properties/lon", "description": "The longitude of this record's device", "title": "Schema for Record coord.lon fields", "type": "number" } }, "required": [ "lat", "lon" ], "type": "object" }, "data": { "_id": "/properties/data", "additionalProperties": false, "patternProperties": { "^[0-9]+$": { "properties": { "name": { "description": "The assigned name for the record point", "title": "Schema for RecordPoint name fields", "type": "string" }, "unit": { "default": "dimensionless", "description": "The assigned pint units for the record point", "title": "Schema for RecordPoint units fields", "type": "string" }, "value": { "description": "The stat value of the record point", "title": "Schema for RecordPoint value fields", "type": [ "number", "null" ] } }, "required": [ "name", "unit", "value" ], "type": "object" } }, "properties": { "/": {} }, "type": "object" }, "device_name": { "_id": "/properties/device_name", "description": "The human readable name of the record's device", "title": "Schema for Record device_name fields", "type": "string" }, "name": { "_id": "/properties/name", "description": "The unique reference name of the record's device", "title": "Schema for Record name fields", "type": "string" }, "parsed": { "_id": "/properties/parsed", "additionalProperties": false, "patternProperties": { "^[a-z_-]+$": { "properties": { "unit": { "description": "The assigned pint units of the record's parsed record point", "title": "Schema for parsed RecordPoint units fields", "type": "string" }, "value": { "description": "The assigned value of the record's parsed record point", "title": "Schema for parsed RecordPoint value fields", "type": [ "number", "null" ] } }, "required": [ "unit", "value" ], "type": "object" } }, "properties": { "/": {} }, "type": "object" }, "timestamp": { "_id": "/properties/timestamp", "description": "Time that the record was created", "title": "Schema for Record timestamp fields", "type": "number" }, "ttl": { "_id": "/properties/ttl", "description": "The time for a record to stay alive", "title": "Schema for Record TTL fields", "type": "number" }, "type": { "_id": "/properties/type", "default": "UNKNOWN", "description": "Must be one of the supported devices types, by name", "title": "Schema for Record type fields", "type": "string" } }, "required": [ "name", "device_name", "data", "parsed", "coord", "timestamp", "ttl", "type" ], "title": "Schema for Records.", "type": "object" }
o70611
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "functional", "anatomical" ], "type": "object", "properties": { "functional": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "anatomical": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } } } }, "config": { "type": "object", "properties": {} } }, "title": "Invocation manifest for BIDS-APP: C-PAC (Configurable Pipeline for the Analysis of Connectomes)" }
o41201
{ "description": "PACTE Tokenizer example", "properties": { "@context": { "description": "JSON-LD context", "format": "url", "locked": true, "searchable": false, "type": "string" }, "@type": { "description": "JSON-LD type", "locked": true, "searchable": false, "type": "string" }, "_corpusID": { "description": "Internal Corpus GUID", "locked": true, "searchModes": [ "noop" ], "searchable": true, "type": "string" }, "_documentID": { "description": "Internal document GUID", "locked": true, "searchModes": [ "noop" ], "searchable": true, "type": "string" }, "category": { "description": " vers le tagset?", "enum": [ "CC", "CD", "DT", "EX", "FW", "IN", "JJ", "JJR", "JJS", "LS", "MD", "NN", "NNS", "NNP", "NNPS", "PDT", "POS", "PRP", "PRP$", "RB", "RBR", "RBS", "RP", "SYM", "TO", "UH", "VB", "VBD", "VBG", "VBN", "VBP", "VBZ", "WDT", "WP", "WP$", "WRB" ], "searchModes": [ "basic" ], "searchable": true, "type": "string" }, "gender": { "description": "", "searchable": false, "type": "string" }, "kind": { "description": "", "searchable": false, "type": "string" }, "lemma": { "description": "", "searchable": false, "type": "string" }, "length": { "description": "", "minimum": 0, "searchable": false, "type": "integer" }, "number": { "description": "", "searchable": false, "type": "string" }, "offsets": { "items": { "properties": { "begin": { "minimum": 0, "type": "integer" }, "end": { "minimum": 0, "type": "integer" } }, "type": "object" }, "locked": true, "minItems": 1, "searchable": true, "type": "array" }, "orth": { "description": "", "enum": [ "upperInitial", "allCaps", "lowercase" ], "searchable": false, "type": "string" }, "schemaType": { "description": "Schema type", "locked": true, "searchModes": [ "noop" ], "searchable": true, "type": "string" }, "string": { "description": "", "searchable": false, "type": "string" } }, "required": [ "@context", "@type", "schemaType", "_corpusID", "_documentID", "offsets", "length", "kind", "string" ], "schemaType": "token", "targetType": "document_surface1d", "title": "Token_EN", "type": "object" }
o33696
{ "id": "http://schemas.gdbots.io/json-schema/gdbots/pbjx/envelope/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "_schema": { "type": "string", "pattern": "^pbj:([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+):([0-9]+-[0-9]+-[0-9]+)$", "default": "pbj:gdbots:pbjx::envelope:1-0-0" }, "envelope_id": { "type": "string", "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$" }, "ok": { "type": "boolean", "default": true }, "code": { "type": "integer", "default": 0, "minimum": 0, "maximum": 65535 }, "http_code": { "type": "integer", "default": 200, "enum": [ 0, 100, 101, 102, 200, 201, 202, 203, 204, 205, 206, 207, 208, 226, 300, 301, 302, 303, 304, 305, 306, 307, 308, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 422, 423, 424, 425, 426, 428, 429, 499, 431, 451, 500, 501, 502, 503, 504, 505, 506, 507, 508, 510, 511 ] }, "etag": { "type": "string", "pattern": "^[\\w\\.:-]+$" }, "error_name": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$" }, "error_message": { "type": "string", "minLength": 0, "maxLength": 65535 }, "message_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false }, "message": { "type": "object" } }, "required": [ "_schema", "envelope_id" ], "additionalProperties": false }
o42888
{ "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "properties": { "name": { "description": "Name is the name of the service", "type": [ "string", "null" ] }, "namespace": { "description": "Namespace is the namespace of the service", "type": [ "string", "null" ] }, "port": { "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).", "format": "int32", "type": [ "integer", "null" ] } }, "type": "object" }
kb_986_Normalized
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "side_length": { "description": "The side length of the square", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape to calculate the area for", "enum": [ "square", "rectangle", "circle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_23153315
{ "$id": "https://json.schemastore.org/projektor.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "description": "Global settings\nhttps://github.com/yamnikov-oleg/projektor#configuration", "properties": { "keybind": { "title": "keybinding", "description": "A daemon keybinding\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "minLength": 1, "default": "Mod4-q" }, "forcecacheinterval": { "title": "force cache interval", "description": "A delay between daemon run with '-dry' flag\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "integer", "minimum": 0, "default": 60 }, "enabledcategories": { "title": "enabled categories", "description": "Global enabled category settings\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "object", "properties": { "calc": { "title": "calculator", "description": "Whether to enable calculator\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "default": true }, "history": { "title": "history", "description": "Whether to show history\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "default": true }, "apps": { "title": "applications", "description": "Whether to show applications\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "default": true }, "url": { "title": "url", "description": "Whether to show urls\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "default": true }, "commands": { "title": "commands", "description": "Whether to show commands\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "default": true }, "files": { "title": "files", "description": "Whether to show files\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "default": true }, "websearch": { "title": "web search", "description": "Whether to allow web search\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "default": true } }, "additionalProperties": false }, "history": { "title": "history", "description": "Global history settings\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "object", "properties": { "capacity": { "title": "capacity", "description": "A capacity\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "integer", "minimum": 0, "default": 40 } }, "additionalProperties": false }, "url": { "title": "url", "description": "Global url settings\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "object", "properties": { "capacity": { "title": "icon", "description": "An icon\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "minLength": 1, "default": "web-browser" } }, "additionalProperties": false }, "websearch": { "title": "websearch", "description": "Global web search settings\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "object", "properties": { "engine": { "title": "engine", "description": "A url template\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "minLength": 1, "default": "https://google.com/search?q=%s" }, "icon": { "title": "icon", "description": "An entry icon\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "minLength": 1, "default": "web-browser" } }, "additionalProperties": false }, "ui": { "title": "ui", "description": "Global UI settings\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "object", "properties": { "width": { "title": "width", "description": "A width\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "pattern": "^\\d+$", "default": "600" }, "height": { "title": "height", "description": "A height\nhttps://github.com/yamnikov-oleg/projektor#configuration", "type": "string", "pattern": "^\\d+$", "default": "300" } }, "additionalProperties": false } }, "title": "settings", "type": "object" }
projektor
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/beerjson/beerjson/master/json/measureable_units.json", "type": "object", "additionalProperties": false, "definitions": { "VolumeType": { "type": "object", "additionalProperties": false, "properties": { "unit": { "$ref": "#/definitions/VolumeUnitType" }, "value": { "type": "number" } }, "required": [ "unit", "value" ] }, "MassType": { "type": "object", "additionalProperties": false, "properties": { "unit": { "$ref": "#/definitions/MassUnitType" }, "value": { "type": "number" } }, "required": [ "unit", "value" ] }, "DiastaticPowerType": { "type": "object", "description": "Diastatic power is a measurement of malted grains enzymatic content. A value of 35 Lintner is needed to self convert, while a value of 100 or more is desirable for base malts.", "additionalProperties": false, "properties": { "unit": { "$ref": "#/definitions/DiastaticPowerUnitType" }, "value": { "type": "number" } }, "required": [ "unit", "value" ] }, "TemperatureType": { "type": "object", "additionalProperties": false, "properties": { "unit": { "$ref": "#/definitions/TemperatureUnitType" }, "value": { "type": "number" } }, "required": [ "unit", "value" ] }, "PressureType": { "type": "object", "additionalProperties": false, "properties": { "unit": { "$ref": "#/definitions/PressureUnitType" }, "value": { "type": "number" } }, "required": [ "unit", "value" ] }, "AcidityType": { "type": "object", "additionalProperties": false, "properties": { "unit": { "$ref": "#/definitions/AcidityUnitType" }, "value": { "type": "number" } }, "required": [ "unit", "value" ] }, "TimeType": { "type": "object", "additionalProperties": false, "properties": { "unit": { "$ref": "#/definitions/TimeUnitType" }, "value": { "type": "integer" } }, "required": [ "unit", "value" ] }, "ColorType": { "type": "object", "description": "ColorType supports both grain color properties, such as Lovibond, and wort color properties such as SRM and EBC.", "additionalProperties": false, "properties": { "unit": { "$ref": "#/definitions/ColorUnitType" }, "value": { "type": "number" } }, "required": [ "unit", "value" ] }, "CarbonationType": { "type": "object", "additionalProperties": false, "properties": { "unit": { "$ref": "#/definitions/CarbonationUnitType" }, "value": { "type": "number" } }, "required": [ "unit", "value" ] }, "BitternessType": { "type": "object", "additionalProperties": false, "properties": { "unit": { "$ref": "#/definitions/BitternessUnitType" }, "value": { "type": "number" } }, "required": [ "unit", "value" ] }, "GravityType": { "type": "object", "description": "Gravity refers to the both the measurements of percent of sugar content, ie plato and brix, as well as relative density ie specific gravity.", "additionalProperties": false, "properties": { "unit": { "$ref": "#/definitions/GravityUnitType" }, "value": { "type": "number" } }, "required": [ "unit", "value" ] }, "SpecificHeatType": { "type": "object", "description": "Specific heat is the measurement of the amount of heat required to raise a given mass one degree..", "additionalProperties": false, "properties": { "unit": { "$ref": "#/definitions/SpecificHeatUnitType" }, "value": { "type": "number" } }, "required": [ "unit", "value" ] }, "ConcentrationType": { "type": "object", "description": "Examples for concentration include ppm, ppb, and mg/l. ", "additionalProperties": false, "properties": { "unit": { "$ref": "#/definitions/ConcentrationUnitType" }, "value": { "type": "number" } }, "required": [ "unit", "value" ] }, "SpecificVolumeType": { "type": "object", "description": "Specific volume is the inverse of density, with units of volume over mass, ie qt/lb or L/kg. Commonly used for mash thickness.", "additionalProperties": false, "properties": { "unit": { "$ref": "#/definitions/SpecificVolumeUnitType" }, "value": { "type": "number" } }, "required": [ "unit", "value" ] }, "UnitType": { "type": "object", "description": "UnitType is used where unitless amounts are required, such as 1 apple, or 1 yeast packet.", "additionalProperties": false, "properties": { "unit": { "$ref": "#/definitions/UnitUnitType" }, "value": { "type": "number" } }, "required": [ "unit", "value" ] }, "CarbonationRangeType": { "type": "object", "additionalProperties": false, "properties": { "minimum": { "$ref": "#/definitions/CarbonationType" }, "maximum": { "$ref": "#/definitions/CarbonationType" } }, "required": [ "minimum", "maximum" ] }, "BitternessRangeType": { "type": "object", "additionalProperties": false, "properties": { "minimum": { "$ref": "#/definitions/BitternessType" }, "maximum": { "$ref": "#/definitions/BitternessType" } }, "required": [ "minimum", "maximum" ] }, "TemperatureRangeType": { "type": "object", "additionalProperties": false, "properties": { "minimum": { "$ref": "#/definitions/TemperatureType" }, "maximum": { "$ref": "#/definitions/TemperatureType" } }, "required": [ "minimum", "maximum" ] }, "ColorRangeType": { "type": "object", "additionalProperties": false, "properties": { "minimum": { "$ref": "#/definitions/ColorType" }, "maximum": { "$ref": "#/definitions/ColorType" } }, "required": [ "minimum", "maximum" ] }, "GravityRangeType": { "type": "object", "additionalProperties": false, "properties": { "minimum": { "$ref": "#/definitions/GravityType" }, "maximum": { "$ref": "#/definitions/GravityType" } }, "required": [ "minimum", "maximum" ] }, "PercentRangeType": { "type": "object", "additionalProperties": false, "properties": { "minimum": { "$ref": "#/definitions/PercentType" }, "maximum": { "$ref": "#/definitions/PercentType" } }, "required": [ "minimum", "maximum" ] }, "VolumeUnitType": { "type": "string", "enum": [ "ml", "l", "tsp", "tbsp", "floz", "cup", "pt", "qt", "gal", "bbl", "ifloz", "ipt", "iqt", "igal", "ibbl" ] }, "MassUnitType": { "type": "string", "enum": [ "mg", "g", "kg", "lb", "oz" ] }, "DiastaticPowerUnitType": { "type": "string", "enum": [ "Lintner", "WK" ] }, "TemperatureUnitType": { "type": "string", "enum": [ "C", "F" ] }, "AcidityUnitType": { "type": "string", "enum": [ "pH" ] }, "PressureUnitType": { "type": "string", "enum": [ "kPa", "psi", "bar" ] }, "TimeUnitType": { "type": "string", "enum": [ "sec", "min", "hr", "day", "week" ] }, "ColorUnitType": { "type": "string", "enum": [ "EBC", "Lovi", "SRM" ] }, "CarbonationUnitType": { "type": "string", "enum": [ "vols" ] }, "BitternessUnitType": { "type": "string", "enum": [ "IBUs" ] }, "GravityUnitType": { "type": "string", "enum": [ "sg", "plato", "brix" ] }, "DensityUnitType": { "type": "string", "enum": [ "sg", "plato", "brix" ] }, "ConcentrationUnitType": { "type": "string", "enum": [ "ppm", "ppb", "mg/l" ] }, "SpecificHeatUnitType": { "type": "string", "enum": [ "Cal/(g C)", "J/(kg K)", "BTU/(lb F)" ] }, "SpecificVolumeUnitType": { "type": "string", "enum": [ "qt/lb", "gal/lb", "gal/oz", "l/g", "l/kg", "floz/oz", "m^3/kg", "ft^3/lb" ] }, "UnitUnitType": { "type": "string", "enum": [ "1", "unit", "each", "dimensionless", "pkg" ] }, "DateType": { "type": "string", "pattern": "\\d{4}-\\d{2}-\\d{2}|\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}" }, "PercentType": { "type": "object", "additionalProperties": false, "properties": { "unit": { "$ref": "#/definitions/PercentUnitType" }, "value": { "type": "number" } }, "required": [ "unit", "value" ] }, "PercentUnitType": { "type": "string", "enum": [ "%" ] }, "QualitativeRangeType": { "type": "string", "enum": [ "very low", "low", "medium low", "medium", "medium high", "high", "very high" ] }, "VersionType": { "type": "number" } }, "properties": { "VolumeType": { "$ref": "#/definitions/VolumeType" }, "MassType": { "$ref": "#/definitions/MassType" }, "DiastaticPowerType": { "$ref": "#/definitions/DiastaticPowerType" }, "TemperatureType": { "$ref": "#/definitions/TemperatureType" }, "PressureType": { "$ref": "#/definitions/PressureType" }, "AcidityType": { "$ref": "#/definitions/AcidityType" }, "TimeType": { "$ref": "#/definitions/TimeType" }, "ColorType": { "$ref": "#/definitions/ColorType" }, "CarbonationType": { "$ref": "#/definitions/CarbonationType" }, "BitternessType": { "$ref": "#/definitions/BitternessType" }, "GravityType": { "$ref": "#/definitions/GravityType" }, "SpecificHeatType": { "$ref": "#/definitions/SpecificHeatType" }, "ConcentrationType": { "$ref": "#/definitions/ConcentrationType" }, "SpecificVolumeType": { "$ref": "#/definitions/SpecificVolumeType" }, "UnitType": { "$ref": "#/definitions/UnitType" }, "CarbonationRangeType": { "$ref": "#/definitions/CarbonationRangeType" }, "BitternessRangeType": { "$ref": "#/definitions/BitternessRangeType" }, "TemperatureRangeType": { "$ref": "#/definitions/TemperatureRangeType" }, "ColorRangeType": { "$ref": "#/definitions/ColorRangeType" }, "GravityRangeType": { "$ref": "#/definitions/GravityRangeType" }, "PercentRangeType": { "$ref": "#/definitions/PercentRangeType" }, "VolumeUnitType": { "$ref": "#/definitions/VolumeUnitType" }, "MassUnitType": { "$ref": "#/definitions/MassUnitType" }, "DiastaticPowerUnitType": { "$ref": "#/definitions/DiastaticPowerUnitType" }, "TemperatureUnitType": { "$ref": "#/definitions/TemperatureUnitType" }, "AcidityUnitType": { "$ref": "#/definitions/AcidityUnitType" }, "PressureUnitType": { "$ref": "#/definitions/PressureUnitType" }, "TimeUnitType": { "$ref": "#/definitions/TimeUnitType" }, "ColorUnitType": { "$ref": "#/definitions/ColorUnitType" }, "CarbonationUnitType": { "$ref": "#/definitions/CarbonationUnitType" }, "BitternessUnitType": { "$ref": "#/definitions/BitternessUnitType" }, "GravityUnitType": { "$ref": "#/definitions/GravityUnitType" }, "DensityUnitType": { "$ref": "#/definitions/DensityUnitType" }, "ConcentrationUnitType": { "$ref": "#/definitions/ConcentrationUnitType" }, "SpecificHeatUnitType": { "$ref": "#/definitions/SpecificHeatUnitType" }, "SpecificVolumeUnitType": { "$ref": "#/definitions/SpecificVolumeUnitType" }, "UnitUnitType": { "$ref": "#/definitions/UnitUnitType" }, "DateType": { "$ref": "#/definitions/DateType" }, "PercentType": { "$ref": "#/definitions/PercentType" }, "PercentUnitType": { "$ref": "#/definitions/PercentUnitType" }, "QualitativeRangeType": { "$ref": "#/definitions/QualitativeRangeType" }, "VersionType": { "$ref": "#/definitions/VersionType" } }, "required": [ "VolumeType", "MassType", "DiastaticPowerType", "TemperatureType", "PressureType", "AcidityType", "TimeType", "ColorType", "CarbonationType", "BitternessType", "GravityType", "SpecificHeatType", "ConcentrationType", "SpecificVolumeType", "UnitType", "CarbonationRangeType", "BitternessRangeType", "TemperatureRangeType", "ColorRangeType", "GravityRangeType", "PercentRangeType", "VolumeUnitType", "MassUnitType", "DiastaticPowerUnitType", "TemperatureUnitType", "AcidityUnitType", "PressureUnitType", "TimeUnitType", "ColorUnitType", "CarbonationUnitType", "BitternessUnitType", "GravityUnitType", "DensityUnitType", "ConcentrationUnitType", "SpecificHeatUnitType", "SpecificVolumeUnitType", "UnitUnitType", "DateType", "PercentType", "PercentUnitType", "QualitativeRangeType", "VersionType" ] }
o25886
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 1024 }, "integrationType": { "type": "string", "enum": [ "googlePubSub", "meridian", "mqtt", "particle" ] }, "enabled": { "type": "boolean" }, "topics": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 1024 } }, "googlePubSubConfig": { "type": "object", "properties": { "projectId": { "type": "string", "minLength": 1, "maxLength": 1024 }, "keyJson": { "type": "string", "maxLength": 32767, "minLength": 4 } }, "additionalProperties": false, "required": [ "projectId", "keyJson" ] }, "mqttConfig": { "type": "object", "properties": { "clientId": { "type": "string", "minLength": 1, "maxLength": 1024 }, "username": { "type": "string", "minLength": 1, "maxLength": 1024 }, "password": { "type": "string", "minLength": 1, "maxLength": 1024 }, "clean": { "type": "boolean" }, "port": { "type": "number", "minimum": 1, "maximum": 65535 }, "protocol": { "type": "string", "enum": [ "mqtt", "mqtts", "ws", "wss" ] }, "host": { "type": "string", "minLength": 1, "maxLength": 1024 }, "privateKey": { "type": "string", "maxLength": 32767, "minLength": 4 }, "certificate": { "type": "string", "maxLength": 32767, "minLength": 4 }, "caCertificate": { "type": "string", "maxLength": 32767, "minLength": 4 } }, "additionalProperties": false, "required": [ "port", "protocol", "host" ] }, "particleConfig": { "type": "object", "properties": { "accessToken": { "type": "string", "minLength": 1, "maxLength": 1024 }, "productSlugOrId": { "type": "string", "minLength": 1, "maxLength": 1024 }, "orgSlugOrId": { "type": "string", "minLength": 1, "maxLength": 1024 }, "deviceNameOrId": { "type": "string", "minLength": 1, "maxLength": 1024 } }, "additionalProperties": false, "required": [ "accessToken" ] }, "meridianConfig": { "type": "object", "properties": { "authenticationToken": { "type": "string", "minLength": 1, "maxLength": 1024 }, "locationId": { "type": "string", "minLength": 1, "maxLength": 1024 }, "assetUpdates": { "type": "boolean" }, "zoneUpdates": { "type": "boolean" } }, "additionalProperties": false, "required": [ "authenticationToken", "locationId" ] } }, "additionalProperties": false, "required": [ "name", "integrationType" ] }
o9921
{ "title": "Invocation manifest for SciTran: DICOM MR Classifier", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "config": { "type": "object", "properties": { "timezone": { "type": "string", "default": "UTC" } }, "required": [ "timezone" ] }, "inputs": { "type": "object", "properties": { "dicom": { "type": "object", "properties": { "type": { "enum": [ "dicom" ] } } }, "classifications": { "type": "object", "properties": { "base": { "type": "string" }, "found": { "type": "boolean" }, "value": {} }, "required": [ "base", "found", "value" ] } }, "required": [ "dicom", "classifications" ] } }, "required": [ "config", "inputs" ] }
o41462