json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "tag": { "anyOf": [ { "type": "string", "enum": [ "green" ] }, { "type": "number" } ] } } }
o69511
{ "properties": { "feature": { "default": false, "description": "Flag to indicate if part of a feature schematic.", "type": "boolean", "visible": false }, "flat": { "default": true, "description": "Flag to indicate if a dir is created.", "type": "boolean" }, "group": { "aliases": [ "g" ], "default": false, "description": "Group selector file within 'selectors' folder", "type": "boolean" }, "name": { "$default": { "$source": "argv", "index": 0 }, "description": "The name of the selector.", "type": "string" }, "path": { "description": "The path to create the selectors.", "format": "path", "type": "string", "visible": false }, "project": { "aliases": [ "p" ], "description": "The name of the project.", "type": "string" }, "skipTests": { "default": false, "description": "When true, does not create test files.", "type": "boolean" } }, "required": [], "title": "NgRx Selector Options Schema", "type": "object" }
o63328
{ "id": "http://provenance.ecs.soton.ac.uk/prov-json/schema#", "$schema": "http://json-schema.org/draft-04/schema#", "description": "Schema for a PROV-JSON document", "type": "object", "additionalProperties": false, "properties": { "prefix": { "type": "object", "patternProperties": { "^[a-zA-Z0-9_\\-]+$": { "type": "string", "format": "uri" } } }, "entity": { "type": "object", "additionalProperties": { "$ref": "#/definitions/entity" } }, "activity": { "type": "object", "additionalProperties": { "$ref": "#/definitions/activity" } }, "agent": { "type": "object", "additionalProperties": { "$ref": "#/definitions/agent" } }, "wasGeneratedBy": { "type": "object", "additionalProperties": { "$ref": "#/definitions/generation" } }, "used": { "type": "object", "additionalProperties": { "$ref": "#/definitions/usage" } }, "wasInformedBy": { "type": "object", "additionalProperties": { "$ref": "#/definitions/communication" } }, "wasStartedBy": { "type": "object", "additionalProperties": { "$ref": "#/definitions/start" } }, "wasEndedby": { "type": "object", "additionalProperties": { "$ref": "#/definitions/end" } }, "wasInvalidatedBy": { "type": "object", "additionalProperties": { "$ref": "#/definitions/invalidation" } }, "wasDerivedFrom": { "type": "object", "additionalProperties": { "$ref": "#/definitions/derivation" } }, "wasAttributedTo": { "type": "object", "additionalProperties": { "$ref": "#/definitions/attribution" } }, "wasAssociatedWith": { "type": "object", "additionalProperties": { "$ref": "#/definitions/association" } }, "actedOnBehalfOf": { "type": "object", "additionalProperties": { "$ref": "#/definitions/delegation" } }, "wasInfluencedBy": { "type": "object", "additionalProperties": { "$ref": "#/definitions/influence" } }, "specializationOf": { "type": "object", "additionalProperties": { "$ref": "#/definitions/specialization" } }, "alternateOf": { "type": "object", "additionalProperties": { "$ref": "#/definitions/alternate" } }, "hadMember": { "type": "object", "additionalProperties": { "$ref": "#/definitions/membership" } }, "bundle": { "type": "object", "additionalProperties": { "$ref": "#/definitions/bundle" } } }, "definitions": { "typedLiteral": { "title": "PROV-JSON Typed Literal", "type": "object", "properties": { "$": { "type": "string" }, "type": { "type": "string", "format": "uri" }, "lang": { "type": "string" } }, "required": [ "$" ], "additionalProperties": false }, "stringLiteral": { "type": "string" }, "numberLiteral": { "type": "number" }, "booleanLiteral": { "type": "boolean" }, "literalArray": { "type": "array", "minItems": 1, "items": { "anyOf": [ { "$ref": "#/definitions/stringLiteral" }, { "$ref": "#/definitions/numberLiteral" }, { "$ref": "#/definitions/booleanLiteral" }, { "$ref": "#/definitions/typedLiteral" } ] } }, "attributeValues": { "anyOf": [ { "$ref": "#/definitions/stringLiteral" }, { "$ref": "#/definitions/numberLiteral" }, { "$ref": "#/definitions/booleanLiteral" }, { "$ref": "#/definitions/typedLiteral" }, { "$ref": "#/definitions/literalArray" } ] }, "entity": { "type": "object", "title": "entity", "additionalProperties": { "$ref": "#/definitions/attributeValues" } }, "agent": { "$ref": "#/definitions/entity" }, "activity": { "type": "object", "title": "activity", "prov:startTime": { "type": "string", "format": "date-time" }, "prov:endTime": { "type": "string", "format": "date-time" }, "additionalProperties": { "$ref": "#/definitions/attributeValues" } }, "generation": { "type": "object", "title": "generation/usage", "properties": { "prov:entity": { "type": "string", "format": "uri" }, "prov:activity": { "type": "string", "format": "uri" }, "prov:time": { "type": "string", "format": "date-time" } }, "required": [ "prov:entity" ], "additionalProperties": { "$ref": "#/definitions/attributeValues" } }, "usage": { "$ref": "#/definitions/generation" }, "communication": { "type": "object", "title": "communication", "properties": { "prov:informant": { "type": "string", "format": "uri" }, "prov:informed": { "type": "string", "format": "uri" } }, "required": [ "prov:informant", "prov:informed" ], "additionalProperties": { "$ref": "#/definitions/attributeValues" } }, "start": { "type": "object", "title": "start/end", "properties": { "prov:activity": { "type": "string", "format": "uri" }, "prov:time": { "type": "string", "format": "date-time" }, "prov:trigger": { "type": "string", "format": "uri" } }, "required": [ "prov:activity" ], "additionalProperties": { "$ref": "#/definitions/attributeValues" } }, "end": { "$ref": "#/definitions/start" }, "invalidation": { "type": "object", "title": "invalidation", "properties": { "prov:entity": { "type": "string", "format": "uri" }, "prov:time": { "type": "string", "format": "date-time" }, "prov:activity": { "type": "string", "format": "uri" } }, "required": [ "prov:entity" ], "additionalProperties": { "$ref": "#/definitions/attributeValues" } }, "derivation": { "type": "object", "title": "derivation", "properties": { "prov:generatedEntity": { "type": "string", "format": "uri" }, "prov:usedEntity": { "type": "string", "format": "uri" }, "prov:activity": { "type": "string", "format": "uri" }, "prov:generation": { "type": "string", "format": "uri" }, "prov:usage": { "type": "string", "format": "uri" } }, "required": [ "prov:generatedEntity", "prov:usedEntity" ], "additionalProperties": { "$ref": "#/definitions/attributeValues" } }, "attribution": { "type": "object", "title": "attribution", "properties": { "prov:entity": { "type": "string", "format": "uri" }, "prov:agent": { "type": "string", "format": "uri" } }, "required": [ "prov:entity", "prov:agent" ], "additionalProperties": { "$ref": "#/definitions/attributeValues" } }, "association": { "type": "object", "title": "association", "properties": { "prov:activity": { "type": "string", "format": "uri" }, "prov:agent": { "type": "string", "format": "uri" }, "prov:plan": { "type": "string", "format": "uri" } }, "required": [ "prov:activity" ], "additionalProperties": { "$ref": "#/definitions/attributeValues" } }, "delegation": { "type": "object", "title": "delegation", "properties": { "prov:delegate": { "type": "string", "format": "uri" }, "prov:responsible": { "type": "string", "format": "uri" }, "prov:activity": { "type": "string", "format": "uri" } }, "required": [ "prov:delegate", "prov:responsible" ], "additionalProperties": { "$ref": "#/definitions/attributeValues" } }, "influence": { "type": "object", "title": "", "properties": { "prov:influencer": { "type": "string", "format": "uri" }, "prov:influencee": { "type": "string", "format": "uri" } }, "required": [ "prov:influencer", "prov:influencee" ], "additionalProperties": { "$ref": "#/definitions/attributeValues" } }, "specialization": { "type": "object", "title": "specialization", "properties": { "prov:generalEntity": { "type": "string", "format": "uri" }, "prov:specificEntity": { "type": "string", "format": "uri" } }, "required": [ "prov:generalEntity", "prov:specificEntity" ], "additionalProperties": { "$ref": "#/definitions/attributeValues" } }, "alternate": { "type": "object", "title": "alternate", "properties": { "prov:alternate1": { "type": "string", "format": "uri" }, "prov:alternate2": { "type": "string", "format": "uri" } }, "required": [ "prov:alternate1", "prov:alternate2" ], "additionalProperties": { "$ref": "#/definitions/attributeValues" } }, "membership": { "type": "object", "title": "membership", "properties": { "prov:collection": { "type": "string", "format": "uri" }, "prov:entity": { "type": "string", "format": "uri" } }, "required": [ "prov:collection", "prov:entity" ], "additionalProperties": { "$ref": "#/definitions/attributeValues" } }, "bundle": { "type": "object", "title": "bundle", "properties": { "prefix": { "type": "object", "patternProperties": { "^[a-zA-Z0-9_\\-]+$": { "type": "string", "format": "uri" } } }, "entity": { "type": "object", "additionalProperties": { "$ref": "#/definitions/entity" } }, "activity": { "type": "object", "additionalProperties": { "$ref": "#/definitions/activity" } }, "agent": { "type": "object", "additionalProperties": { "$ref": "#/definitions/agent" } }, "wasGeneratedBy": { "type": "object", "additionalProperties": { "$ref": "#/definitions/generation" } }, "used": { "type": "object", "additionalProperties": { "$ref": "#/definitions/usage" } }, "wasInformedBy": { "type": "object", "additionalProperties": { "$ref": "#/definitions/communication" } }, "wasStartedBy": { "type": "object", "additionalProperties": { "$ref": "#/definitions/start" } }, "wasEndedby": { "type": "object", "additionalProperties": { "$ref": "#/definitions/end" } }, "wasInvalidatedBy": { "type": "object", "additionalProperties": { "$ref": "#/definitions/invalidation" } }, "wasDerivedFrom": { "type": "object", "additionalProperties": { "$ref": "#/definitions/derivation" } }, "wasAttributedTo": { "type": "object", "additionalProperties": { "$ref": "#/definitions/attribution" } }, "wasAssociatedWith": { "type": "object", "additionalProperties": { "$ref": "#/definitions/association" } }, "actedOnBehalfOf": { "type": "object", "additionalProperties": { "$ref": "#/definitions/delegation" } }, "wasInfluencedBy": { "type": "object", "additionalProperties": { "$ref": "#/definitions/influence" } }, "specializationOf": { "type": "object", "additionalProperties": { "$ref": "#/definitions/specialization" } }, "alternateOf": { "type": "object", "additionalProperties": { "$ref": "#/definitions/alternate" } }, "hadMember": { "type": "object", "additionalProperties": { "$ref": "#/definitions/membership" } } } } } }
o26621
{ "additionalProperties": false, "properties": { "data": { "additionalProperties": false, "properties": { "name": { "type": "string" }, "tasks": { "items": { "additionalProperties": false, "properties": { "arguments": { "items": { "type": "string" }, "type": "array" }, "command": { "type": "string" }, "dependsOn": { "items": { "type": "string" }, "type": "array" }, "executor": { "type": "string" }, "name": { "type": "string" }, "onResult": { "additionalProperties": false, "properties": { "continueJob": { "items": { "maximum": 32767, "minimum": 0, "type": "integer" }, "type": "array" }, "terminateJobWithSuccess": { "items": { "maximum": 32767, "minimum": 0, "type": "integer" }, "type": "array" } }, "required": [ "terminateJobWithSuccess", "continueJob" ], "type": "object" } }, "required": [ "executor", "dependsOn", "command", "arguments", "name", "onResult" ], "type": "object" }, "type": "array" } }, "required": [ "name", "tasks" ], "type": "object" }, "schema": { "pattern": "^iglu:[a-zA-Z0-9-_.]+/[a-zA-Z0-9-_]+/[a-zA-Z0-9-_]+/[0-9]+-[0-9]+-[0-9]+$", "type": "string" } }, "required": [ "schema", "data" ], "self": { "format": "jsonschema", "name": "factfile", "vendor": "com.snowplowanalytics.factotum", "version": "1-0-0" }, "type": "object" }
sp_203_Normalized
{ "title": "format", "type": "object", "$schema": "http://json-schema.org/draft-04/schema", "description": "The format object can be used with numerical or date fields to provide more detail about how values should be displayed in popup windows.", "properties": { "dateFormat": { "type": "string", "description": "A string used with date fields to specify how the date should appear in popup windows.", "enum": [ "dayShortMonthYear", "dayShortMonthYearLongTime", "dayShortMonthYearLongTime24", "dayShortMonthYearShortTime", "dayShortMonthYearShortTime24", "longDate", "longDateLongTime", "longDateLongTime24", "longDateShortTime", "longDateShortTime24", "longMonthDayYear", "longMonthDayYearLongTime", "longMonthDayYearLongTime24", "longMonthDayYearShortTime", "longMonthDayYearShortTime24", "longMonthYear", "shortDate", "shortDateLE", "shortDateLELongTime", "shortDateLELongTime24", "shortDateLEShortTime", "shortDateLEShortTime24", "shortDateLongTime", "shortDateLongTime24", "shortDateShortTime", "shortDateShortTime24", "shortMonthYear", "year" ] }, "digitSeparator": { "type": "boolean", "description": "A Boolean used with numerical fields. A value of true allows the number to have a digit (or thousands) separator when the value appears in popup windows. Depending on the locale, this separator is a decimal point or a comma. A value of false means that no separator will be used." }, "places": { "type": "integer", "description": "An integer used with numerical fields to specify the number of supported decimal places that should appear in popup windows. Any places beyond this value are rounded." } }, "additionalProperties": false }
o90210
{ "additionalProperties": false, "description": "Schema for a data load succeeding", "properties": { "application": { "description": "Loader's name and version", "maxLength": 128, "type": "string" }, "attempt": { "description": "How many attempts were taken to load the batch", "minimum": 0, "type": "integer" }, "loadingCompleted": { "_format": "date-time", "description": "Time when loader finished loading (should match the ingestion timestamp in manifest)", "type": "string" }, "loadingStarted": { "_format": "date-time", "description": "Time when loader started loading (first attempt)", "type": "string" }, "shredding": { "additionalProperties": false, "description": "Information about the batch taken from transformation step, isomorphic to shredding_complete schema", "properties": { "base": { "_format": "uri", "description": "Blob storage path to the root of the batch", "maxLength": 1024, "type": "string" }, "compression": { "description": "File compression type", "enum": [ "GZIP", "NONE" ] }, "count": { "description": "Count of events in the batch, null means the count could not be calculated", "properties": { "good": { "description": "Amount of good events in the batch", "minimum": 0, "type": "integer" } }, "type": [ "object", "null" ] }, "processor": { "description": "Identificator of a shredder sent the message", "properties": { "artifact": { "description": "Name of the artifact", "maxLength": 64, "type": "string" }, "version": { "description": "Semantic Version of the artifact", "maxLength": 16, "type": "string" } }, "required": [ "artifact", "version" ], "type": "object" }, "timestamps": { "description": "Set of timestamps associated with the batch", "properties": { "jobCompleted": { "_format": "date-time", "description": "Time when the batch shredding has been finished (and the message being prepared)", "type": "string" }, "jobStarted": { "_format": "date-time", "description": "Time when the batch started being shredded", "type": "string" }, "max": { "_format": "date-time", "description": "The latest collector_tstamp available in the batch", "type": [ "string", "null" ] }, "min": { "_format": "date-time", "description": "The earliest collector_stamp available in the batch", "type": [ "string", "null" ] } }, "required": [ "jobStarted", "jobCompleted", "min", "max" ], "type": "object" }, "typesInfo": { "description": "Info about schemas used in events and output formats in the respective batch", "oneOf": [ { "additionalProperties": false, "properties": { "transformation": { "description": "Type of the transformation", "enum": [ "SHREDDED" ] }, "types": { "description": "Set of Iglu URIs and the format they were shredded into", "items": { "additionalProperties": false, "properties": { "format": { "description": "File format into which the entities were shredded", "enum": [ "TSV", "JSON" ] }, "schemaKey": { "description": "Iglu URI", "maxLength": 256, "type": "string" }, "snowplowEntity": { "description": "Type of the self-describing JSON in the event", "enum": [ "SELF_DESCRIBING_EVENT", "CONTEXT" ] } }, "required": [ "schemaKey", "format", "snowplowEntity" ] }, "type": "array" } }, "required": [ "transformation", "types" ] }, { "additionalProperties": false, "properties": { "fileFormat": { "description": "Output file format", "enum": [ "JSON", "PARQUET" ] }, "transformation": { "description": "Type of the transformation", "enum": [ "WIDEROW" ] }, "types": { "description": "Set of Iglu URIs and the format they were shredded into", "items": { "additionalProperties": false, "properties": { "schemaKey": { "description": "Iglu URI", "maxLength": 256, "type": "string" }, "snowplowEntity": { "description": "Type of the self-describing JSON in the event", "enum": [ "SELF_DESCRIBING_EVENT", "CONTEXT" ] } }, "required": [ "schemaKey", "snowplowEntity" ] }, "type": "array" } }, "required": [ "transformation", "fileFormat", "types" ] } ], "type": "object" } }, "required": [ "base", "compression", "typesInfo", "timestamps", "processor" ], "type": "object" }, "tags": { "description": "Set of key value pairs providing additional information", "type": "object" } }, "required": [ "shredding", "application", "attempt", "loadingStarted", "loadingCompleted", "tags" ], "self": { "format": "jsonschema", "name": "load_succeeded", "vendor": "com.snowplowanalytics.monitoring.batch", "version": "3-0-0" }, "type": "object" }
sp_236_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "JSON Schema for process data of a traffic controller.", "id": "http://schlothauer.de/schemas/lsa-process-data.json", "properties": { "detectorFlanks": { "description": "Detector flank occurences for the given timestamp offset. The encoding format for a detector flank is '<ObjNr>(+|-)<FractionalSeconds>'. The +/- part indicates a rising/falling flank. FractionalSeconds is the millisecond part of the given timestamp where flank occured. Example: ['2+100','2-900','4+700'].", "items": { "properties": { "frac": { "description": "fractional seconds", "type": "integer" }, "name": { "description": "Name of the detector (optional).", "type": "string" }, "nr": { "type": "integer" } }, "type": "object" }, "type": "array" }, "domainUUID": { "description": "RFC 4122 compliant universally unique identifier (UUID) for identifying the domain of the traffic controller.", "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}$", "type": "string" }, "permissions": { "items": { "_format": "permission", "type": "string" }, "type": "array", "_uniqueItems": true }, "programNr": { "description": "Number of the signal program; only if changed", "type": "integer" }, "signalChanges": { "description": "Signal changes for the given timestamp offset.", "items": { "properties": { "code": { "description": "OCIT signal code", "type": "integer" }, "name": { "description": "Name of the signal group (optional).", "type": "string" }, "nr": { "type": "integer" } }, "required": [ "nr", "code" ], "type": "object" }, "type": "array" }, "telegrams": { "description": "Array with public transport telegrams.", "items": { "description": "Public transport telegram.", "properties": { "abw": { "description": "Fahrplanabweichung.", "type": "integer" }, "amliProperties": { "description": "OevAmliTelegramm extension.", "properties": { "fahrzeit": { "description": "Bei Abmeldung die echte Fahrzeit des OV von Anmeldung bis Abmeldung. Bei Anmeldung die theoretisch (berechnete) Fahrzeit des OV von Anmeldung bis Abmeldung (TWF).", "type": "integer" }, "gewPhase": { "description": "Gewuenschte Phase (UE).", "type": "integer" }, "gruenAnfang": { "description": "Gruenanfang der OV-Signalgruppe (GNA).", "type": "integer" }, "gruenEnde": { "description": "Gruenende der OV-Signalgruppe (GNE).", "type": "integer" }, "laufPhase": { "description": "Laufende Phase (PH).", "type": "integer" }, "modifikation": { "description": "gibt an, ob OEPNV Modifikation durch Zentrale aktiv ist.", "type": "boolean" }, "relKnoten": { "description": "relative UnitNr des beeinflussten Knotens.", "type": "integer" }, "signalplan": { "description": "Laufender Signalplan (SP).", "type": "integer" }, "zeitschalter": { "description": "Zeitschalterwert (TX).", "type": "integer" } }, "type": "object" }, "kurs": { "type": "integer" }, "linie": { "description": "Number of the PT line.", "type": "integer" }, "mpNr": { "description": "Number of the PT detection point.", "type": "integer" }, "prio": { "description": "Priority.", "type": "integer" }, "richtung": { "description": "Manual direction.", "type": "integer" }, "route": { "type": "integer" }, "zuglaenge": { "description": "Vehicle length.", "type": "integer" } }, "required": [ "mpNr", "linie", "kurs", "route", "prio", "zuglaenge", "richtung", "abw" ], "type": "object" }, "type": "array" }, "timestamp": { "_format": "date-time", "description": "RFC 3339 compliant timestamp without fractional seconds. Example: '2017-04-05T12:30:00+01:00'.", "type": "string" }, "tx": { "description": "Cycle second; starting with 0", "type": "integer" }, "unitNr": { "description": "Unit number of the traffic controller. The unit number must be unique per domain.", "type": "integer" }, "variables": { "items": { "properties": { "name": { "description": "Variable name.", "type": "string" }, "value": { "description": "Variable value.", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "type": "array" } }, "required": [ "domainUUID", "unitNr", "timestamp", "tx" ], "type": "object" }
o74004
{ "$schema": "http://json-schema.org/draft-04/schema", "description": "Trait that applies contains the content restrictions of an ANS object.", "properties": { "content_code": { "description": "The content restriction code/level/flag associated with the ANS object", "type": "string" }, "embargo": { "additionalProperties": false, "description": "Embargo configuration to enforce publishing restrictions. Embargoed content must not go live.", "properties": { "active": { "description": "The boolean flag to indicate if the embargo is active or not. If this field is false, ignore the embargo.", "type": "boolean" }, "description": { "description": "An optional description for the embargo.", "type": "string" }, "end_time": { "_format": "date-time", "description": "An optional end time for the embargo to indicate when it ends. When it's not defined, it means the embargo keeps applying. The end time should be ignored if active flag is false.", "type": "string" } }, "required": [ "active" ], "type": "object" }, "geo": { "additionalProperties": false, "description": "Geo-Restriction configuration that contains the restriction ids that this content should be associated with.", "properties": { "restrictions": { "description": "An array containing the geo-restriction objects. Limited to a size of 1 for now.", "items": { "additionalProperties": false, "description": "An object specifying the _id of the restriction this content should be associated with.", "properties": { "restriction_id": { "description": "The _id of the restriction that is stored in Global Settings.", "type": "string" } }, "required": [ "restriction_id" ], "type": "object" }, "maxItems": 1, "minItems": 1, "type": "array" } }, "required": [ "restrictions" ], "type": "object" } }, "title": "Content Restrictions", "type": "object" }
wp_48_Normalized
{ "properties": { "amount": { "description": "The amount of the transaction", "type": "number" }, "billing_address": { "description": "The billing address of the customer", "type": "string" }, "customer_name": { "description": "The name of the customer", "type": "string" }, "transaction_id": { "description": "The unique identifier of the transaction", "type": "string" } }, "required": [ "transaction_id", "amount", "customer_name", "billing_address" ], "type": "object" }
generate_invoice_7e06398e
{ "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" }, "width": { "description": "The width of the shape", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of shape (circle, rectangle, triangle, etc.)", "type": "string" } }, "required": [ "shape" ], "type": "object" }
calculate_area_2a0a01a0
{ "additionalProperties": false, "properties": { "algorithm": { "max": 2, "min": 1, "type": "integer" }, "fingerprint": { "pattern": "^[0-9A-Fa-f]{40}$", "type": "string" }, "type": { "max": 1, "min": 1, "type": "integer" } }, "required": [ "algorithm", "type", "fingerprint" ] }
o70331
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "nameColumn": { "type": "string" }, "descriptionColumn": { "type": "string" }, "csv": { "type": "string" }, "makeUniqueKeySecret": { "type": "boolean" }, "email": { "type": "string", "format": "email", "maxLength": 1024 } }, "additionalProperties": false, "required": [ "csv" ] }
o9835
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "generic log container format", "properties": { "context": { "additionalProperties": false, "properties": { "class": { "type": "string" }, "file": { "type": "string" }, "host": { "type": "string" }, "line": { "type": "string" }, "method": { "type": "string" }, "namespace": { "type": "string" }, "processId": { "type": "string" }, "threadId": { "type": "string" } }, "type": "object" }, "data": { "additionalProperties": true, "properties": {}, "type": "object" }, "exception": { "additionalProperties": false, "properties": { "backtrace": { "items": { "type": "string" }, "type": "array" }, "data": { "additionalProperties": true, "properties": {}, "type": "object" }, "message": { "type": "string" }, "type": { "type": "string" } }, "required": [ "type", "message", "backtrace" ], "type": "object" }, "id": { "type": "string" }, "level": { "pattern": "^(debug|info|warn|crit|fatal|unknown)$", "type": "string" }, "name": { "type": "string" }, "time": { "_format": "date-time", "type": "string" }, "version": { "pattern": "^0$", "type": "string" } }, "required": [ "time", "name", "level" ], "title": "Steno Log Container", "type": "object" }
o84268
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "tags": { "type": "array", "minItems": 2, "maxItems": 4, "items": { "enum": [ "Open Source", "Java", "JavaScript", "JSON", "REST" ] } } }, "additionalProperties": false, "required": [ "tags" ] }
o81594
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle (if shape is triangle)", "type": "number" }, "height": { "description": "The height of the triangle (if shape is triangle)", "type": "number" }, "length": { "description": "The length of the rectangle (if shape is rectangle)", "type": "number" }, "radius": { "description": "The radius of the circle (if shape is circle)", "type": "number" }, "width": { "description": "The width of the rectangle (if shape is rectangle)", "type": "number" } }, "required": [ "radius" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_57c0d424
{ "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", "null" ] }, "namespace": { "description": "Namespace defines the space within which the secret name must be unique.", "type": [ "string", "null" ] } }, "type": "object" }
kb_944_Normalized
{ "$ref": "#/definitions/canonicalData", "$schema": "http://json-schema.org/draft-04/schema#", "comments": [ " This is a JSON Schema for 'canonical-data.json' files. ", " ", " It enforces just a general structure for all exercises, ", " optimising for the ability to represent example-based tests", " of the form 'function (input) == output'. Future expansions", " may allow for other types of tests such as property-based. ", " ", " The only thing enforced regarding how test data should be ", " structured is the error encoding, because it was agreed ", " and it doesn't restrict flexibility in a significant way. ", " ", " Standardized property names may help when automatically ", " deriving JSON parsers in some languages, so we followed ", " a few conventions from the 'Google JSON Style Guide'. ", " ", " Additionally, this schema strictly enforces letters, in ", " lowerCamelCase, for naming the 'property' being tested. We ", " expect this regularity will allow an easier automatic ", " generation of function's names in test generators, ", " slightly reducing the amount of manually generated code. " ], "definitions": { "canonicalData": { "additionalProperties": false, "description": "This is the top-level file structure", "properties": { "cases": { "$ref": "#/definitions/testGroup" }, "comments": { "$ref": "#/definitions/comments" }, "exercise": { "$ref": "#/definitions/exercise" }, "version": { "$ref": "#/definitions/version" } }, "required": [ "exercise", "version", "cases" ], "type": "object" }, "comments": { "description": "An array of strings to fake multi-line comments", "items": { "type": "string" }, "minItems": 1, "type": "array" }, "description": { "description": "A short, clear, one-line description", "type": "string" }, "error": { "description": "A message describing an error condition", "type": "string" }, "exercise": { "description": "Exercise's slug (kebab-case)", "pattern": "^[a-z]+(-[a-z]+)*$", "type": "string" }, "expected": { "dependencies": { "error": { "maxProperties": 1 } }, "description": "The expected return value of a test case", "properties": { "error": { "$ref": "#/definitions/error" } } }, "input": { "description": "The inputs to a test case", "type": "object" }, "labeledTest": { "additionalProperties": false, "description": "A single test with a description", "properties": { "comments": { "$ref": "#/definitions/comments" }, "description": { "$ref": "#/definitions/description" }, "expected": { "$ref": "#/definitions/expected" }, "input": { "$ref": "#/definitions/input" }, "optional": { "$ref": "#/definitions/optional" }, "property": { "$ref": "#/definitions/property" } }, "required": [ "description", "property", "input", "expected" ], "type": "object" }, "labeledTestGroup": { "additionalProperties": false, "description": "A group of tests with a description", "properties": { "cases": { "$ref": "#/definitions/testGroup" }, "comments": { "$ref": "#/definitions/comments" }, "description": { "$ref": "#/definitions/description" }, "optional": { "$ref": "#/definitions/optional" } }, "required": [ "description", "cases" ], "type": "object" }, "labeledTestItem": { "description": "A single test or group of tests with a description", "oneOf": [ { "$ref": "#/definitions/labeledTest" }, { "$ref": "#/definitions/labeledTestGroup" } ] }, "optional": { "description": "An identifier for similar optional test cases (kebab-case)", "pattern": "^[a-z]+(-[a-z]+)*$", "type": "string" }, "property": { "description": "A letters-only, lowerCamelCase property name", "pattern": "^[a-z]+([A-Z][a-z]+)*[A-Z]?$", "type": "string" }, "testGroup": { "description": "An array of labeled test items", "items": { "$ref": "#/definitions/labeledTestItem" }, "minItems": 1, "type": "array" }, "version": { "description": "Semantic versioning: MAJOR.MINOR.PATCH", "pattern": "^(0|[1-9][0-9]*)(\\.(0|[1-9][0-9]*)){2}$", "type": "string" } }, "self": { "format": "jsonschema", "name": "canonical-data", "vendor": "io.exercism", "version": "1-1-0" } }
o71453
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "dog": { "type": "string", "pattern": "([A-Z]|[a-z])" } }, "properties": { "dog": { "$ref": "#/definitions/dog" } }, "required": [ "dog" ] }
o41671
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "base_path", "details", "document_type", "publishing_app", "rendering_app", "routes", "schema_name", "title" ], "additionalProperties": false, "properties": { "access_limited": { "$ref": "#/definitions/access_limited" }, "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "auth_bypass_ids": { "description": "A list of ids that will allow access to this item for non-authenticated users", "$ref": "#/definitions/guid_list" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "bulk_publishing": { "type": "boolean" }, "change_note": { "type": [ "null", "string" ] }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "type": "string", "enum": [ "transaction" ] }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "last_edited_at": { "description": "Last time when the content received a major or minor update.", "type": "string", "format": "date-time" }, "links": { "type": "object", "additionalProperties": false, "properties": { "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" } } }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "type": "array", "items": { "type": "string" } }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "type": "string", "enum": [ "alpha", "beta", "live" ] }, "previous_version": { "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "redirects": { "type": "array", "additionalItems": false, "items": {} }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "type": "string", "enum": [ "transaction" ] }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" } }, "definitions": { "description": { "type": "string" }, "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "type": "string", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$" }, "access_limited": { "type": "object", "additionalProperties": false, "properties": { "auth_bypass_ids": { "description": "Deprecated: auth_bypass_ids should be sent as a separate field", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "A list of organisation content ids permitted access to this item", "$ref": "#/definitions/guid_list" }, "users": { "type": "array", "items": { "type": "string" } } } }, "analytics_identifier": { "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.", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "body_html_and_govspeak": { "description": "The main content provided as HTML with the govspeak markdown it's rendered from", "anyOf": [ { "$ref": "#/definitions/multiple_content_types" } ] }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "type": "object", "additionalProperties": false, "properties": { "department_analytics_profile": { "description": "Analytics identifier with which to record views", "type": "string" }, "downtime_message": { "description": "Text of the message alerting the user of service downtime", "type": "string" }, "external_related_links": { "$ref": "#/definitions/external_related_links" }, "hidden_search_terms": { "$ref": "#/definitions/hidden_search_terms" }, "introductory_paragraph": { "$ref": "#/definitions/body_html_and_govspeak" }, "more_information": { "$ref": "#/definitions/body_html_and_govspeak" }, "other_ways_to_apply": { "$ref": "#/definitions/body_html_and_govspeak" }, "start_button_text": { "$ref": "#/definitions/start_button_text" }, "transaction_start_link": { "description": "Link the Start button will lead the user to.", "type": "string", "format": "uri" }, "variants": { "description": "List of transaction variants", "type": "array", "items": { "type": "object", "required": [ "title", "slug" ], "additionalProperties": false, "properties": { "introductory_paragraph": { "$ref": "#/definitions/body_html_and_govspeak" }, "more_information": { "$ref": "#/definitions/body_html_and_govspeak" }, "other_ways_to_apply": { "$ref": "#/definitions/body_html_and_govspeak" }, "slug": { "type": "string", "format": "uri" }, "title": { "type": "string" }, "transaction_start_link": { "description": "Link the Start button will lead the user to.", "type": "string", "format": "uri" } } } }, "what_you_need_to_know": { "$ref": "#/definitions/body_html_and_govspeak" }, "will_continue_on": { "$ref": "#/definitions/will_continue_on" } } }, "external_link": { "type": "object", "required": [ "title", "url" ], "additionalProperties": false, "properties": { "title": { "type": "string" }, "url": { "type": "string", "format": "uri" } } }, "external_related_links": { "type": "array", "items": { "$ref": "#/definitions/external_link" } }, "first_published_at": { "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "guid": { "type": "string", "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$" }, "guid_list": { "type": "array", "items": { "$ref": "#/definitions/guid" }, "_uniqueItems": true }, "hidden_search_terms": { "description": "List of words/phrases the user can search for that aren't present on the page.", "type": "array", "items": { "type": "string" } }, "locale": { "type": "string", "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" ] }, "multiple_content_types": { "type": "array", "items": { "type": "object", "required": [ "content_type", "content" ], "additionalProperties": false, "properties": { "content": { "type": "string" }, "content_type": { "type": "string" } } } }, "public_updated_at": { "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", "format": "date-time" }, "publishing_app_name": { "description": "The application that published this item.", "type": "string", "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" ] }, "rendering_app": { "description": "The application that renders this item.", "type": "string", "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" ] }, "route": { "type": "object", "required": [ "path", "type" ], "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } } }, "routes": { "type": "array", "items": { "$ref": "#/definitions/route" }, "minItems": 1 }, "start_button_text": { "description": "Custom text to be displayed on the green button that takes you to another page", "type": "string" }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] }, "will_continue_on": { "description": "Description of the website the adjoining external link will be taking the user to", "type": "string" } } }
o21414
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "status": { "type": "string", "enum": [ "initialized", "running", "running_canceled", "stopping", "stopping_canceled", "stopped", "shutdown", "configerror" ], "default": "initialized", "description": "der Status der StartStoppApplikation" } }, "required": [ "status" ] }
o79715
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Broadcast", "description": "An OpenTok Broadcast", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}$" }, "sessionId": { "type": "string" }, "partnerId": { "type": "integer" }, "createdAt": { "type": "integer" }, "updatedAt": { "type": "integer" }, "broadcastUrls": { "oneOf": [ { "type": "null" }, { "type": "object", "properties": { "hls": { "type": "string" } } } ] } }, "required": [ "id", "sessionId", "partnerId", "createdAt", "updatedAt" ] }
o65711
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "VolumeError captures an error encountered during a volume operation.", "properties": { "message": { "description": "String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.", "type": [ "string", "null" ] }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time the error was encountered." } }, "type": "object" }
kb_1128_Normalized
{ "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" }, "shape": { "description": "The shape: circle, rectangle, or triangle", "type": "string" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_544a87f8
{ "title": "server info", "$schema": "http://json-schema.org/draft-06/schema#", "type": "object", "additionalProperties": false, "properties": { "fabric_fq_name": { "type": "array", "items": { "type": "string" } }, "ipmi": { "$id": "/properties/ipmi", "type": "object", "required": [ "ipmi_subnet_list", "ipmi_credentials" ], "properties": { "ipmi_subnet_list": { "$id": "/properties/ipmi/properties/ipmi_subnet_list", "type": "array", "items": { "$id": "/properties/ipmi/properties/ipmi_subnet_list/items", "type": "string", "description": "List of the subnet prefixes that could be carved out for the p2p networks between fabric devices.", "pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$" } }, "ipmi_credentials": { "$id": "/properties/ipmi/properties/ipmi_credentials", "type": "array", "items": { "$id": "/properties/ipmi/properties/ipmi_credentials/items", "description": "The IPMI user:password credentials", "type": "string" } }, "ipmi_port_ranges": { "$id": "/properties/ipmi/properties/ipmi_port_ranges", "type": "array", "items": { "$id": "/properties/ipmi/properties/ipmi_credentials/items", "type": "object", "required": [ "port_range_start", "port_range_end" ], "properties": { "port_range_start": { "$id": "/properties/ipmi/properties/ipmi_port_ranges/items/port_range_start", "description": "Start of IPMI Port Range", "type": "integer" }, "port_range_end": { "$id": "/properties/ipmi/properties/ipmi_port_ranges/items/port_range_end", "description": "End of IPMI Port Range", "type": "integer" } } } } } }, "ironic": { "$id": "/properties/ironic", "type": "object", "required": [ "auth_url", "username", "password" ], "properties": { "auth_url": { "$id": "/properties/ironic/properties/auth_url", "description": "The Ironic Auth URL", "type": "string" }, "username": { "$id": "/properties/ironic/properties/username", "description": "The Ironic Auth username", "type": "string" }, "password": { "$id": "/properties/ironic/properties/password", "description": "The Ironic Auth password", "type": "string" }, "introspection_flag": { "$id": "/properties/ironic/properties/introspection_flag", "description": "Flag to determine if introspection is needed", "type": "boolean", "default": true } } }, "cc_username": { "$id": "/properties/cc_username", "type": "string" }, "cc_password": { "$id": "/properties/cc_password", "type": "string" }, "contrail_command_host": { "$id": "/properties/contrail_command_host", "type": "string" } } }
o8456
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_PodDisruptionBudget": { "description": "PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": "string" }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "PodDisruptionBudget" ], "type": "string" }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_PodDisruptionBudgetSpec", "description": "Specification of the desired behavior of the PodDisruptionBudget." }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_PodDisruptionBudgetStatus", "description": "Most recently observed status of the PodDisruptionBudget." } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "policy", "kind": "PodDisruptionBudget", "version": "v1beta1" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_PodDisruptionBudgetSpec": { "description": "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.", "properties": { "maxUnavailable": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\"." }, "minAvailable": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying \"100%\"." }, "selector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "Label query over pods whose evictions are managed by the disruption budget." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_PodDisruptionBudgetStatus": { "description": "PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.", "properties": { "currentHealthy": { "_format": "int32", "description": "current number of healthy pods", "type": "integer" }, "desiredHealthy": { "_format": "int32", "description": "minimum desired number of healthy pods", "type": "integer" }, "disruptedPods": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time" }, "description": "DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions.", "type": "object" }, "disruptionsAllowed": { "_format": "int32", "description": "Number of pod disruptions that are currently allowed.", "type": "integer" }, "expectedPods": { "_format": "int32", "description": "total number of pods counted by this disruption budget", "type": "integer" }, "observedGeneration": { "_format": "int64", "description": "Most recent generation observed when updating this PDB status. DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB's object generation.", "type": "integer" } }, "required": [ "disruptionsAllowed", "currentHealthy", "desiredHealthy", "expectedPods" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_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_ListMeta": { "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", "properties": { "continue": { "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.", "type": "string" }, "remainingItemCount": { "_format": "int64", "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.", "type": "integer" }, "resourceVersion": { "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "description": "PodDisruptionBudgetList is a collection of PodDisruptionBudgets.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "policy/v1beta1" ], "type": [ "string", "null" ] }, "items": { "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_PodDisruptionBudget" }, "type": [ "array", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "PodDisruptionBudgetList" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "policy", "kind": "PodDisruptionBudgetList", "version": "v1beta1" } ] }
kb_695_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "MapChartSettings", "description": "The data contained in a MapChart settings object", "type": "object", "properties": { "title": { "type": "string" }, "description": { "type": "string" }, "zoomPosition": { "enum": [ "topright", "topleft", "bottomleft", "bottomright", "none" ] }, "legendPosition": { "enum": [ "topright", "topleft", "bottomleft", "bottomright", "none" ] }, "scalePosition": { "enum": [ "topright", "topleft", "bottomleft", "bottomright", "none" ] }, "allowFilter": { "type": "boolean" }, "maxItems": { "type": "integer", "minimum": 1 }, "area": { "type": "object", "properties": { "x": { "type": "number" }, "y": { "type": "number" }, "zoom": { "type": "number", "minimum": 1 } } } } }
o54551
{ "description": "ClientIPConfig represents the configurations of Client IP based session affinity.", "properties": { "timeoutSeconds": { "description": "timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == \"ClientIP\". Default value is 10800(for 3 hours).", "format": "int32", "type": [ "integer", "null" ] } }, "type": "object" }
kb_81_Normalized
{ "id": "http://schemas.triniti.io/json-schema/gdbots/contexts/user-agent/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:contexts::user-agent:1-0-0" }, "br_family": { "type": "string", "pattern": ".+", "pbj": { "type": "string", "rule": "single" } }, "br_major": { "type": "integer", "default": 0, "minimum": 0, "maximum": 65535, "pbj": { "type": "small-int", "rule": "single" } }, "br_minor": { "type": "integer", "default": 0, "minimum": 0, "maximum": 65535, "pbj": { "type": "small-int", "rule": "single" } }, "br_patch": { "type": "integer", "default": 0, "minimum": 0, "maximum": 65535, "pbj": { "type": "small-int", "rule": "single" } }, "os_family": { "type": "string", "pattern": ".+", "pbj": { "type": "string", "rule": "single" } }, "os_major": { "type": "integer", "default": 0, "minimum": 0, "maximum": 65535, "pbj": { "type": "small-int", "rule": "single" } }, "os_minor": { "type": "integer", "default": 0, "minimum": 0, "maximum": 65535, "pbj": { "type": "small-int", "rule": "single" } }, "os_patch": { "type": "integer", "default": 0, "minimum": 0, "maximum": 65535, "pbj": { "type": "small-int", "rule": "single" } }, "os_patch_minor": { "type": "integer", "default": 0, "minimum": 0, "maximum": 65535, "pbj": { "type": "small-int", "rule": "single" } }, "dvce_family": { "type": "string", "pattern": ".+", "pbj": { "type": "string", "rule": "single" } } }, "required": [ "_schema" ], "additionalProperties": false }
o82300
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "properties": { "copying": { "additionalProperties": false, "description": "Information on licensing and copyright.", "properties": { "authors": { "description": "List of the people who wrote the JSON, not the equation itself.", "items": { "description": "Full name of person.", "type": "string" }, "type": "array" }, "license-name": { "description": "Usually a free software license, such as GPL, BSD, or MIT.", "type": "string" }, "license-url": { "description": "Link to the text of the license, usually HTTP.", "format": "uri", "type": "string" }, "year": { "description": "Year the JSON was first written.", "type": "integer" } }, "required": [ "authors", "license-name", "year" ], "type": "object" }, "description": { "additionalProperties": false, "description": "Textual description of the equation.", "properties": { "terse": { "description": "Description text that is 80 characters or less.", "maxLength": 80, "type": "string" }, "verbose": { "description": "The full text of the description. Don't add hard linebreaks; let the output formatter decide how to do that. Required field.", "type": "string" } }, "required": [ "verbose" ], "type": "object" }, "markup-languages": { "additionalProperties": { "additionalItems": false, "description": "List of representations for a particular markup language, such as LaTeX.", "items": { "additionalProperties": false, "properties": { "dependencies": { "additionalItems": false, "description": "Dependencies for the markup to work, such as LaTeX packages.", "items": { "additionalProperties": false, "description": "Dependency object.", "properties": { "invocation": { "description": "How include the dependency, e.g. a '\\usepackage{}' statement.", "type": "string" }, "name": { "description": "Name of dependency.", "type": "string" }, "url": { "description": "URL providing info about dependency, usually HTTP.", "format": "uri", "type": "string" } }, "type": "object" }, "type": "array" }, "markup": { "description": "The markup text for the equation.", "type": "string" }, "urls": { "additionalItems": false, "description": "Links to the markup text.", "items": { "description": "Actual URL, usually HTTP.", "format": "uri", "type": "string" }, "type": "array" } }, "required": [ "markup" ], "type": "object" }, "type": "array" }, "description": "Representation of the equation in various markup languages.", "type": "object" }, "related-equations": { "description": "UUIDs of other equations that are related to this one.", "items": { "additionalProperties": false, "properties": { "uuid": { "description": "Universally unique identifier of related command.", "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}$", "type": "string" } }, "required": [ "uuid" ], "type": "object" }, "type": "array" }, "relevant-urls": { "description": "List of URLs that discuss the equation and its properties.", "items": { "additionalProperties": false, "minItems": 1, "properties": { "date-known-good": { "description": "Date when the link to the page worked. Useful if the page changes or link is broken and searching for an archival copy.", "format": "date", "type": "string" }, "url": { "format": "uri", "type": "string" } }, "required": [ "url" ], "type": "object" }, "type": "array" }, "unicode-pretty-print": { "additionalProperties": false, "description": "Human-readable representation of the equations with Unicode text.", "properties": { "multiline": { "additionalItems": false, "description": "An array of strings that show the equation two-dimensionally. Uses an array instead of a multiline string for portability reasons.", "items": { "description": "Horizontal slice of the equation.", "type": "string" }, "minItems": 1, "type": "array" }, "terms": { "description": "Descriptions and properties of the constants, variables, functions, and other components of the equation. Must be an array to preserve order.", "items": { "additionalProperties": false, "description": "The term object.", "properties": { "classification": { "additionalProperties": false, "description": "Mathematical classification and properties of the quantity represented by this symbol.", "properties": { "always-an-integer": { "description": "True if the symbol represents a quantity must be an integer or subset thereof such as a natural number.", "type": "boolean" }, "always-dimensionless": { "description": "True if the symbol represents a quantity is always dimensionless, such as radians or degrees.", "type": "boolean" }, "always-positive": { "description": "True if the symbol represents a quantity that is always positive.", "type": "boolean" }, "always-scalar": { "description": "True if the symbol represents a scalar in this expression, i.e. not a vector, tensor, or other multi-value quantity.", "type": "boolean" }, "bound-variable": { "description": "True if the symbol represents a bound variable, such as an index in an infinite series or a variable of integration in a definite integral.", "type": "boolean" }, "fixed-constant": { "description": "True if the symbol represents a fixed numeric value, such as \u03c0, \u221a2, or the speed of light.", "type": "boolean" }, "linear-operator": { "description": "True if the symbol represents a linear operator for two vector spaces.", "type": "boolean" }, "special-function": { "description": "True if the symbol represents a known function with a fixed definition.", "type": "boolean" } }, "type": "object" }, "example-values": { "description": "Examples of values the term may take on.", "items": { "additionalProperties": false, "description": "The value object.", "properties": { "comment": { "description": "Explain choice of value.", "type": "string" }, "doi": { "description": "Digital object identifier for values from a published journal article.", "type": "string" }, "units": { "description": "Units as used in the original reference.", "type": "string" }, "value": { "description": "The actual value.", "type": [ "number", "boolean" ] } }, "required": [ "value" ], "type": "object" }, "type": "array" }, "label": { "description": "Short description of the quantity, suitable for an 'where x is the ...' type statement.", "type": "string" }, "symbol": { "description": "The symbol for the quantity.", "type": "string" }, "urls": { "additionalItems": false, "description": "List of URLs directly about the quantity.", "items": { "description": "The URL, usually HTTP.", "format": "uri", "type": "string" }, "type": "array" } }, "required": [ "label", "symbol" ], "type": "object" }, "minItems": 1, "type": "array" } }, "required": [ "multiline" ], "type": "object" }, "uuid": { "description": "Universally Unique Identifier for this equation.", "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}$", "type": "string" } }, "required": [ "description", "unicode-pretty-print", "uuid" ], "type": "object" }
o63156
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "", "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkThumbHeight": { "type": "number" }, "bookmarkThumbWidth": { "type": "number" }, "leftPanelEnabled": { "type": "boolean" }, "limitLocales": { "type": "boolean" }, "minWidthBreakPoint": { "type": "number" }, "navigatorEnabled": { "type": "boolean" }, "openTemplate": { "type": "string", "minLength": 1 }, "overrideFullScreen": { "type": "boolean" }, "pagingEnabled": { "type": "boolean" }, "pessimisticAccessControl": { "type": "boolean" }, "preserveViewport": { "type": "boolean" }, "rightPanelEnabled": { "type": "boolean" }, "saveUserSettings": { "type": "boolean" }, "searchWithinEnabled": { "type": "boolean" }, "theme": { "type": "string", "minLength": 1 }, "useArrowKeysToNavigate": { "type": "boolean" } }, "required": [ "bookmarkThumbHeight", "bookmarkThumbWidth", "leftPanelEnabled", "limitLocales", "minWidthBreakPoint", "navigatorEnabled", "openTemplate", "overrideFullScreen", "pagingEnabled", "pessimisticAccessControl", "preserveViewport", "rightPanelEnabled", "saveUserSettings", "searchWithinEnabled", "theme", "useArrowKeysToNavigate" ] }, "modules": { "type": "object", "properties": { "dialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 } }, "required": [ "close" ] } }, "required": [ "content" ] }, "downloadDialogue": { "type": "object", "properties": { "options": { "type": "object", "properties": { "confinedImageSize": { "type": "number" } }, "required": [ "confinedImageSize" ] }, "content": { "type": "object", "properties": { "currentViewAsJpg": { "type": "string", "minLength": 1 }, "download": { "type": "string", "minLength": 1 }, "editSettings": { "type": "string", "minLength": 1 }, "entireDocument": { "type": "string", "minLength": 1 }, "entireFileAsOriginal": { "type": "string", "minLength": 1 }, "noneAvailable": { "type": "string", "minLength": 1 }, "pagingNote": { "type": "string", "minLength": 1 }, "preview": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "wholeImageHighRes": { "type": "string", "minLength": 1 }, "wholeImageLowResAsJpg": { "type": "string", "minLength": 1 } }, "required": [ "currentViewAsJpg", "download", "editSettings", "entireDocument", "entireFileAsOriginal", "noneAvailable", "pagingNote", "preview", "title", "wholeImageHighRes", "wholeImageLowResAsJpg" ] } }, "required": [ "options", "content" ] }, "embedDialogue": { "type": "object", "properties": { "options": { "type": "object", "properties": { "embedTemplate": { "type": "string", "minLength": 1 } }, "required": [ "embedTemplate" ] }, "content": { "type": "object", "properties": { "customSize": { "type": "string", "minLength": 1 }, "height": { "type": "string", "minLength": 1 }, "instructions": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "width": { "type": "string", "minLength": 1 } }, "required": [ "customSize", "height", "instructions", "title", "width" ] } }, "required": [ "options", "content" ] }, "footerPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkEnabled": { "type": "boolean" }, "downloadEnabled": { "type": "boolean" }, "embedEnabled": { "type": "boolean" }, "fullscreenEnabled": { "type": "boolean" }, "minimiseButtons": { "type": "boolean" }, "openEnabled": { "type": "boolean" } }, "required": [ "bookmarkEnabled", "downloadEnabled", "embedEnabled", "fullscreenEnabled", "minimiseButtons", "openEnabled" ] }, "content": { "type": "object", "properties": { "bookmark": { "type": "string", "minLength": 1 }, "download": { "type": "string", "minLength": 1 }, "embed": { "type": "string", "minLength": 1 }, "exitFullScreen": { "type": "string", "minLength": 1 }, "fullScreen": { "type": "string", "minLength": 1 }, "open": { "type": "string", "minLength": 1 } }, "required": [ "bookmark", "download", "embed", "exitFullScreen", "fullScreen", "open" ] } }, "required": [ "options", "content" ] }, "genericDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "emptyValue": { "type": "string", "minLength": 1 }, "invalidNumber": { "type": "string", "minLength": 1 }, "noMatches": { "type": "string", "minLength": 1 }, "ok": { "type": "string", "minLength": 1 }, "pageNotFound": { "type": "string", "minLength": 1 }, "refresh": { "type": "string", "minLength": 1 } }, "required": [ "emptyValue", "invalidNumber", "noMatches", "ok", "pageNotFound", "refresh" ] } }, "required": [ "content" ] }, "helpDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "text": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "text", "title" ] } }, "required": [ "content" ] }, "moreInfoRightPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "displayOrder": { "type": "string" }, "exclude": { "type": "string" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" }, "panelOpen": { "type": "boolean" }, "textLimit": { "type": "number" }, "textLimitType": { "type": "string", "minLength": 1 } }, "required": [ "displayOrder", "exclude", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth", "panelOpen", "textLimit", "textLimitType" ] }, "content": { "type": "object", "properties": { "attribution": { "type": "string", "minLength": 1 }, "collapse": { "type": "string", "minLength": 1 }, "collapseFull": { "type": "string", "minLength": 1 }, "description": { "type": "string", "minLength": 1 }, "expand": { "type": "string", "minLength": 1 }, "expandFull": { "type": "string", "minLength": 1 }, "holdingText": { "type": "string", "minLength": 1 }, "less": { "type": "string", "minLength": 1 }, "license": { "type": "string", "minLength": 1 }, "logo": { "type": "string", "minLength": 1 }, "more": { "type": "string", "minLength": 1 }, "noData": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "attribution", "collapse", "collapseFull", "description", "expand", "expandFull", "holdingText", "less", "license", "logo", "more", "noData", "title" ] } }, "required": [ "options", "content" ] }, "pagingHeaderPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "imageSelectionBoxEnabled": { "type": "boolean" }, "localeToggleEnabled": { "type": "boolean" }, "pageModeEnabled": { "type": "boolean" }, "pagingToggleEnabled": { "type": "boolean" } }, "required": [ "imageSelectionBoxEnabled", "localeToggleEnabled", "pageModeEnabled", "pagingToggleEnabled" ] }, "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 }, "emptyValue": { "type": "string", "minLength": 1 }, "first": { "type": "string", "minLength": 1 }, "firstImage": { "type": "string", "minLength": 1 }, "firstPage": { "type": "string", "minLength": 1 }, "folio": { "type": "string", "minLength": 1 }, "go": { "type": "string", "minLength": 1 }, "help": { "type": "string", "minLength": 1 }, "image": { "type": "string", "minLength": 1 }, "last": { "type": "string", "minLength": 1 }, "lastImage": { "type": "string", "minLength": 1 }, "lastPage": { "type": "string", "minLength": 1 }, "next": { "type": "string", "minLength": 1 }, "nextImage": { "type": "string", "minLength": 1 }, "nextPage": { "type": "string", "minLength": 1 }, "of": { "type": "string", "minLength": 1 }, "oneUp": { "type": "string", "minLength": 1 }, "page": { "type": "string", "minLength": 1 }, "previous": { "type": "string", "minLength": 1 }, "previousImage": { "type": "string", "minLength": 1 }, "previousPage": { "type": "string", "minLength": 1 }, "settings": { "type": "string", "minLength": 1 }, "twoUp": { "type": "string", "minLength": 1 } }, "required": [ "close", "emptyValue", "first", "firstImage", "firstPage", "folio", "go", "help", "image", "last", "lastImage", "lastPage", "next", "nextImage", "nextPage", "of", "oneUp", "page", "previous", "previousImage", "previousPage", "settings", "twoUp" ] } }, "required": [ "options", "content" ] }, "seadragonCenterPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "animationTime": { "type": "number" }, "autoHideControls": { "type": "boolean" }, "blendTime": { "type": "number" }, "constrainDuringPan": { "type": "boolean" }, "controlsFadeAfterInactive": { "type": "number" }, "controlsFadeDelay": { "type": "number" }, "controlsFadeLength": { "type": "number" }, "defaultZoomLevel": { "type": "number" }, "immediateRender": { "type": "boolean" }, "maxZoomLevel": { "type": "number" }, "navigatorPosition": { "type": "string", "minLength": 1 }, "pageGap": { "type": "number" }, "showHomeControl": { "type": "boolean" }, "trimAttributionCount": { "type": "number" }, "visibilityRatio": { "type": "number" } }, "required": [ "animationTime", "autoHideControls", "blendTime", "constrainDuringPan", "controlsFadeAfterInactive", "controlsFadeDelay", "controlsFadeLength", "defaultZoomLevel", "immediateRender", "maxZoomLevel", "navigatorPosition", "pageGap", "showHomeControl", "trimAttributionCount", "visibilityRatio" ] }, "content": { "type": "object", "properties": { "acknowledgements": { "type": "string", "minLength": 1 }, "goHome": { "type": "string", "minLength": 1 }, "imageUnavailable": { "type": "string", "minLength": 1 }, "next": { "type": "string", "minLength": 1 }, "previous": { "type": "string", "minLength": 1 }, "rotateRight": { "type": "string", "minLength": 1 }, "zoomIn": { "type": "string", "minLength": 1 }, "zoomOut": { "type": "string", "minLength": 1 } }, "required": [ "acknowledgements", "goHome", "imageUnavailable", "next", "previous", "rotateRight", "zoomIn", "zoomOut" ] } }, "required": [ "options", "content" ] }, "searchFooterPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "elideDetailsTermsCount": { "type": "number" }, "elideResultsTermsCount": { "type": "number" }, "pageModeEnabled": { "type": "boolean" } }, "required": [ "elideDetailsTermsCount", "elideResultsTermsCount", "pageModeEnabled" ] }, "content": { "type": "object", "properties": { "clearSearch": { "type": "string", "minLength": 1 }, "defaultLabel": { "type": "string", "minLength": 1 }, "displaying": { "type": "string", "minLength": 1 }, "enterKeyword": { "type": "string", "minLength": 1 }, "image": { "type": "string", "minLength": 1 }, "imageCaps": { "type": "string", "minLength": 1 }, "instanceFound": { "type": "string", "minLength": 1 }, "instancesFound": { "type": "string", "minLength": 1 }, "nextResult": { "type": "string", "minLength": 1 }, "page": { "type": "string", "minLength": 1 }, "pageCaps": { "type": "string", "minLength": 1 }, "previousResult": { "type": "string", "minLength": 1 }, "resultFoundFor": { "type": "string", "minLength": 1 }, "resultsFoundFor": { "type": "string", "minLength": 1 }, "searchWithin": { "type": "string", "minLength": 1 } }, "required": [ "clearSearch", "defaultLabel", "displaying", "enterKeyword", "image", "imageCaps", "instanceFound", "instancesFound", "nextResult", "page", "pageCaps", "previousResult", "resultFoundFor", "resultsFoundFor", "searchWithin" ] } }, "required": [ "options", "content" ] }, "settingsDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "locale": { "type": "string", "minLength": 1 }, "navigatorEnabled": { "type": "string", "minLength": 1 }, "pagingEnabled": { "type": "string", "minLength": 1 }, "preserveViewport": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "website": { "type": "string", "minLength": 1 } }, "required": [ "locale", "navigatorEnabled", "pagingEnabled", "preserveViewport", "title", "website" ] } }, "required": [ "content" ] }, "treeViewLeftPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "elideCount": { "type": "number" }, "expandFullEnabled": { "type": "boolean" }, "galleryThumbHeight": { "type": "number" }, "galleryThumbWidth": { "type": "number" }, "oneColThumbHeight": { "type": "number" }, "oneColThumbWidth": { "type": "number" }, "pageModeEnabled": { "type": "boolean" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" }, "panelOpen": { "type": "boolean" }, "tabOrder": { "type": "string" }, "thumbsEnabled": { "type": "boolean" }, "thumbsExtraHeight": { "type": "number" }, "thumbsImageFadeInDuration": { "type": "number" }, "thumbsLoadRange": { "type": "number" }, "treeEnabled": { "type": "boolean" }, "twoColThumbHeight": { "type": "number" }, "twoColThumbWidth": { "type": "number" } }, "required": [ "elideCount", "expandFullEnabled", "galleryThumbHeight", "galleryThumbWidth", "oneColThumbHeight", "oneColThumbWidth", "pageModeEnabled", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth", "panelOpen", "tabOrder", "thumbsEnabled", "thumbsExtraHeight", "thumbsImageFadeInDuration", "thumbsLoadRange", "treeEnabled", "twoColThumbHeight", "twoColThumbWidth" ] }, "content": { "type": "object", "properties": { "collapse": { "type": "string", "minLength": 1 }, "collapseFull": { "type": "string", "minLength": 1 }, "date": { "type": "string", "minLength": 1 }, "expand": { "type": "string", "minLength": 1 }, "expandFull": { "type": "string", "minLength": 1 }, "index": { "type": "string", "minLength": 1 }, "sortBy": { "type": "string", "minLength": 1 }, "thumbnails": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "volume": { "type": "string", "minLength": 1 } }, "required": [ "collapse", "collapseFull", "date", "expand", "expandFull", "index", "sortBy", "thumbnails", "title", "volume" ] } }, "required": [ "options", "content" ] }, "clickThroughDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "viewTerms": { "type": "string", "minLength": 1 } }, "required": [ "viewTerms" ] } }, "required": [ "content" ] }, "loginDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "login": { "type": "string", "minLength": 1 } }, "required": [ "login" ] } }, "required": [ "content" ] } }, "required": [ "dialogue", "downloadDialogue", "embedDialogue", "footerPanel", "genericDialogue", "helpDialogue", "moreInfoRightPanel", "pagingHeaderPanel", "seadragonCenterPanel", "searchFooterPanel", "settingsDialogue", "treeViewLeftPanel", "clickThroughDialogue", "loginDialogue" ] }, "localisation": { "type": "object", "properties": { "label": { "type": "string", "minLength": 1 }, "locales": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "name", "label" ], "properties": { "name": { "type": "string", "minLength": 1 }, "label": { "type": "string", "minLength": 1 } } } } }, "required": [ "label", "locales" ] }, "content": { "type": "object", "properties": { "authCORSError": { "type": "string", "minLength": 1 }, "canvasIndexOutOfRange": { "type": "string", "minLength": 1 }, "degradedResourceMessage": { "type": "string", "minLength": 1 }, "degradedResourceLogin": { "type": "string", "minLength": 1 } }, "required": [ "authCORSError", "canvasIndexOutOfRange", "degradedResourceMessage", "degradedResourceLogin" ] } }, "required": [ "options", "modules", "localisation", "content" ] }
o53885
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "definitions": { "domain": { "type": "string", "description": "A complete domain name, used by this app (as installed by this tenant), with optional wildcard, e.g. https://*.myapp.com. If the wildcard * is used, it must be followed by a dot." } }, "properties": { "landingPage": { "type": "string", "format": "uri", "description": "a (probably tenant-specific) url of the landing page for this app. The landing page is where the user is led to after clicking [open] in the UI." }, "settingsPage": { "type": "string", "format": "uri", "description": "a url of a settings page for this app. The setup page is where the user is led to after clicking [settings] in the UI. After setup is complete the app should redirect the user back to the passed in relayPage." }, "setupRequired": { "type": "boolean", "description": "true if the app is unusable or degraded due to lack of some setup. When true, this causes the setup required indicator to appear next to the app in the UI. When true, the app should provide a value for settingsPage." }, "domainsUsed": { "type": "array", "description": "An array of domains that your app uses. The tenant's IT team can view this, rolled up with all other installed apps, in order to add to Trusted Sites in bulk.", "items": { "$ref": "#/definitions/domain" } } }, "additionalProperties": false, "required": [ "setupRequired" ] }
o79519
{ "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "___content_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "Holds common attributes of ANS Content objects.", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "address": { "$ref": "#/definitions/trait_address_json" }, "alignment": { "$ref": "#/definitions/trait_alignment_json" }, "canonical_url": { "$ref": "#/definitions/trait_canonical_url_json" }, "channels": { "$ref": "#/definitions/trait_channel_json" }, "comments": { "$ref": "#/definitions/trait_comments_json" }, "content_aliases": { "$ref": "#/definitions/trait_content_aliases_json" }, "content_restrictions": { "$ref": "#/definitions/trait_content_restrictions_json" }, "contributors": { "$ref": "#/definitions/trait_contributors_json" }, "copyright": { "$ref": "#/definitions/trait_copyright_json" }, "created_date": { "$ref": "#/definitions/trait_created_date_json" }, "credits": { "$ref": "#" }, "description": { "$ref": "#/definitions/trait_description_json" }, "display_date": { "$ref": "#/definitions/trait_display_date_json" }, "distributor": { "$ref": "#/definitions/trait_distributor_json" }, "editor_note": { "$ref": "#/definitions/trait_editor_note_json" }, "first_publish_date": { "$ref": "#/definitions/trait_first_publish_date_json" }, "geo": { "$ref": "#/definitions/trait_geo_json" }, "headlines": { "$ref": "#/definitions/trait_headlines_json" }, "label": { "$ref": "#/definitions/trait_label_json" }, "language": { "$ref": "#/definitions/trait_locale_json" }, "last_updated_date": { "$ref": "#/definitions/trait_last_updated_date_json" }, "location": { "$ref": "#/definitions/trait_location_json" }, "owner": { "$ref": "#/definitions/trait_owner_json" }, "pitches": { "$ref": "#/definitions/trait_pitches_json" }, "planning": { "$ref": "#/definitions/trait_planning_json" }, "promo_items": { "$ref": "#/definitions/trait_promo_items_json" }, "publish_date": { "$ref": "#/definitions/trait_publish_date_json" }, "related_content": { "$ref": "#/definitions/trait_related_content_json" }, "revision": { "$ref": "#/definitions/trait_revision_json" }, "short_url": { "$ref": "#/definitions/trait_short_url_json" }, "slug": { "$ref": "#/definitions/trait_slug_json" }, "source": { "$ref": "#/definitions/trait_source_json" }, "status": { "$ref": "#/definitions/trait_status_json" }, "subheadlines": { "$ref": "#/definitions/trait_subheadlines_json" }, "subtype": { "$ref": "#/definitions/trait_subtype_json" }, "syndication": { "$ref": "#/definitions/trait_syndication_json" }, "taxonomy": { "$ref": "#/definitions/trait_taxonomy_json" }, "tracking": { "$ref": "#/definitions/trait_tracking_json" }, "type": { "type": "string" }, "vanity_credits": { "$ref": "#/definitions/trait_vanity_credits_json" }, "version": { "$ref": "#/definitions/trait_version_json" }, "workflow": { "$ref": "#/definitions/trait_workflow_json" } }, "required": [ "type", "version" ], "title": "A content object.", "type": "object" }, "___image_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Holds attributes of an ANS image component. In the Arc ecosystem, these are stored in Anglerfish.", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "address": { "$ref": "#/definitions/trait_address_json" }, "alignment": { "$ref": "#/definitions/trait_alignment_json" }, "alt_text": { "$ref": "#/definitions/trait_alt_text_json" }, "canonical_url": { "$ref": "#/definitions/trait_canonical_url_json" }, "caption": { "description": "Caption for the image.", "type": "string" }, "channels": { "$ref": "#/definitions/trait_channel_json" }, "comments": { "$ref": "#/definitions/trait_comments_json" }, "content_restrictions": { "$ref": "#/definitions/trait_content_restrictions_json" }, "contributors": { "$ref": "#/definitions/trait_contributors_json" }, "copyright": { "$ref": "#/definitions/trait_copyright_json" }, "created_date": { "$ref": "#/definitions/trait_created_date_json" }, "credits": { "$ref": "#" }, "description": { "$ref": "#/definitions/trait_description_json" }, "display_date": { "$ref": "#/definitions/trait_display_date_json" }, "distributor": { "$ref": "#/definitions/trait_distributor_json" }, "editor_note": { "$ref": "#/definitions/trait_editor_note_json" }, "first_publish_date": { "$ref": "#/definitions/trait_first_publish_date_json" }, "focal_point": { "$ref": "#/definitions/trait_focal_point_json" }, "geo": { "$ref": "#/definitions/trait_geo_json" }, "headlines": { "$ref": "#/definitions/trait_headlines_json" }, "height": { "description": "Height for the image.", "type": "integer" }, "image_type": { "$ref": "#/definitions/trait_image_type_json" }, "label": { "$ref": "#/definitions/trait_label_json" }, "language": { "$ref": "#/definitions/trait_locale_json" }, "last_updated_date": { "$ref": "#/definitions/trait_last_updated_date_json" }, "licensable": { "description": "True if the image can legally be licensed to others.", "type": "boolean" }, "location": { "$ref": "#/definitions/trait_location_json" }, "owner": { "$ref": "#/definitions/trait_owner_json" }, "pitches": { "$ref": "#/definitions/trait_pitches_json" }, "planning": { "$ref": "#/definitions/trait_planning_json" }, "promo_items": { "$ref": "#/definitions/trait_promo_items_json" }, "publish_date": { "$ref": "#/definitions/trait_publish_date_json" }, "related_content": { "$ref": "#/definitions/trait_related_content_json" }, "revision": { "$ref": "#/definitions/trait_revision_json" }, "short_url": { "$ref": "#/definitions/trait_short_url_json" }, "slug": { "$ref": "#/definitions/trait_slug_json" }, "source": { "$ref": "#/definitions/trait_source_json" }, "status": { "$ref": "#/definitions/trait_status_json" }, "subheadlines": { "$ref": "#/definitions/trait_subheadlines_json" }, "subtitle": { "description": "Subtitle for the image.", "type": "string" }, "subtype": { "$ref": "#/definitions/trait_subtype_json" }, "syndication": { "$ref": "#/definitions/trait_syndication_json" }, "taxonomy": { "$ref": "#/definitions/trait_taxonomy_json" }, "tracking": { "$ref": "#/definitions/trait_tracking_json" }, "type": { "enum": [ "image" ], "type": "string" }, "url": { "description": "URL for the image.", "type": "string" }, "vanity_credits": { "$ref": "#/definitions/trait_vanity_credits_json" }, "version": { "$ref": "#/definitions/trait_version_json" }, "width": { "description": "Width for the image.", "type": "integer" }, "workflow": { "$ref": "#/definitions/trait_workflow_json" } }, "required": [ "type", "version" ], "title": "An image.", "type": "object" }, "___redirect_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A redirect to another story.", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "canonical_url": { "$ref": "#/definitions/trait_canonical_url_json" }, "owner": { "$ref": "#/definitions/trait_owner_json" }, "redirect_url": { "$ref": "#/definitions/trait_canonical_url_json" }, "revision": { "$ref": "#/definitions/trait_revision_json" }, "type": { "enum": [ "redirect" ], "type": "string" }, "version": { "$ref": "#/definitions/trait_version_json" } }, "required": [ "type", "version", "canonical_url", "redirect_url" ], "title": "A redirect object.", "type": "object" }, "___story_elements_custom_embed_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A custom embed element. Can be used to reference content from external providers about which little is known.", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/trait_alignment_json" }, "channels": { "$ref": "#/definitions/trait_channel_json" }, "embed": { "additionalProperties": false, "description": "The embed data.", "properties": { "config": { "additionalProperties": false, "description": "Arbitrary configuration data generated by a plugin. Users are responsible for maintaining schema.", "patternProperties": { "^([a-zA-Z0-9_])*$": {} }, "properties": { "referent": { "not": {} }, "type": { "not": {} }, "version": { "not": {} } }, "title": "Embed Configuration", "type": "object" }, "id": { "description": "Foreign ID of embedded item.", "maxLength": 128, "minLength": 1, "title": "Embed ID", "type": "string" }, "url": { "description": "Provider URL for this embed item. When concatenated with Embed ID, should produce a URL that returns json metadata about the embedded content.", "maxLength": 512, "minLength": 1, "title": "Embed Provider URL", "type": "string" } }, "required": [ "id", "url" ], "title": "Embed", "type": "object" }, "subtype": { "$ref": "#/definitions/trait_subtype_json" }, "type": { "enum": [ "custom_embed" ], "type": "string" } }, "required": [ "type", "embed" ], "title": "Custom Embed", "type": "object" }, "___story_elements_raw_html_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "An html content element", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/trait_alignment_json" }, "channels": { "$ref": "#/definitions/trait_channel_json" }, "content": { "description": "Any arbitrary chunk of HTML.", "type": "string" }, "subtype": { "$ref": "#/definitions/trait_subtype_json" }, "type": { "enum": [ "raw_html" ] } }, "required": [ "type", "content" ], "type": "object" }, "___utils_author_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models attribution to an individual or group for contribution towards some content item. In the Arc ecosystem, these are stored in the arc-author-service.", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "affiliation": { "description": "The name of an organization the author is affiliated with. E.g., The Washington Post, or George Mason University.", "title": "Affiliation", "type": "string" }, "awards": { "description": "A list of awards the author has received.", "items": { "additionalProperties": false, "properties": { "award_name": { "description": "The name of the award.", "title": "Award Name", "type": "string" } }, "type": "object" }, "title": "Awards", "type": "array" }, "bio": { "description": "A one or two sentence description of the author.", "title": "Short Biography", "type": "string" }, "books": { "description": "A list of books written by the author.", "items": { "additionalProperties": false, "properties": { "book_title": { "description": "The book title.", "title": "Title", "type": "string" }, "book_url": { "description": "A link to a page to purchase or learn more about the book.", "title": "URL", "type": "string" } }, "title": "Book", "type": "object" }, "title": "Books", "type": "array" }, "byline": { "description": "The public-facing name, or nom-de-plume, name of the author.", "title": "Byline", "type": "string" }, "contributor": { "description": "If true, this author is an external contributor to the publication.", "title": "Contributor", "type": "boolean" }, "division": { "description": "The desk or group that this author normally reports to. E.g., 'Politics' or 'Sports.'", "title": "Division", "type": "string" }, "education": { "description": "A list of schools that this author has graduated from.", "items": { "additionalProperties": false, "properties": { "school_name": { "description": "The name of the school.", "title": "School Name", "type": "string" } }, "title": "School", "type": "object" }, "title": "Education", "type": "array" }, "email": { "_format": "email", "description": "The professional email address of this author.", "title": "E-mail", "type": "string" }, "expertise": { "description": "A comma-delimited list of subjects the author in which the author has expertise.", "title": "Expertise", "type": "string" }, "first_name": { "description": "The real first name of a human author.", "title": "First Name", "type": "string" }, "image": { "$ref": "#/definitions/___image_json" }, "languages": { "description": "A description of list of languages that the author is somewhat fluent in, excluding the native language of the parent publication, and identified in the language of the parent publication. E.g., Russian, Japanese, Greek.", "title": "Languages", "type": "string" }, "last_name": { "description": "The real last name of a human author.", "title": "Last Name", "type": "string" }, "location": { "description": "The city or locality that the author resides in or is primarily associated with.", "title": "Location", "type": "string" }, "long_bio": { "description": "The full biography of the author.", "title": "Long Biography", "type": "string" }, "middle_name": { "description": "The real middle name of a human author.", "title": "Middle Name", "type": "string" }, "name": { "description": "The full human name of contributor. See also byline, first_name, last_name, middle_name, suffix.", "title": "Name", "type": "string" }, "org": { "description": "Deprecated. In ANS 0.5.8 and prior versions, this field is populated with the 'location' field from Arc Author Service. New implementations should use the 'location' and 'affiliation' field. Content should be identical to 'location.'", "title": "Org", "type": "string" }, "role": { "description": "The organizational role or title of this author.", "title": "Role", "type": "string" }, "slug": { "$ref": "#/definitions/trait_slug_json" }, "socialLinks": { "$ref": "#/definitions/trait_social_json", "description": "Deperecated. Included for backwards-compatibility. Content should be identical to social_links." }, "social_links": { "$ref": "#/definitions/trait_social_json" }, "suffix": { "description": "The real suffix of a human author.", "title": "Suffix", "type": "string" }, "type": { "description": "Indicates that this is an author", "enum": [ "author" ], "type": "string" }, "url": { "description": "A link to an author's landing page on the website, or a personal website.", "type": "string" }, "version": { "$ref": "#/definitions/trait_version_json" } }, "required": [ "type", "name" ], "title": "An author of a piece of content.", "type": "object" }, "___utils_auxiliary_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a auxiliary used in targeting a piece of content.", "properties": { "_id": { "description": "The unique identifier for this auxiliary.", "type": "string" }, "name": { "description": "The general name for this auxiliary.", "type": "string" }, "uid": { "description": "A short identifier for this auxiliary. Usually used in cases where a long form id cannot work.", "type": "string" } }, "required": [ "_id", "uid" ], "title": "Auxiliary", "type": "object" }, "___utils_dictionary_json": { "$schema": "http://json-schema.org/draft-04/schema#", "patternProperties": { ".*": { "type": "string" } }, "properties": { "basic": { "type": "string" } }, "required": [ "basic" ] }, "___utils_keyword_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a keyword used in describing a piece of content.", "properties": { "frequency": { "description": "An optional count of the frequency of the keyword as it appears in the content it describes", "type": "integer" }, "keyword": { "description": "The keyword used to describe a piece of content", "type": "string" }, "score": { "description": "An arbitrary weighting to give the keyword", "type": "number" }, "tag": { "description": "The Part of Speech tag for this keyword.", "type": "string" } }, "required": [ "keyword", "score" ], "title": "Keyword", "type": "object" }, "___utils_named_entity_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a named entity (i.e. name of a person, place, or organization) used in a piece of content.", "properties": { "_id": { "description": "A unique identifier for the concept of the named entity.", "type": "string" }, "name": { "description": "The actual string of text that was identified as a named entity.", "type": "string" }, "score": { "decription": "An optional relevancy for this named entitiy.", "type": "number" }, "type": { "description": "A description of what the named entity is. E.g. 'organization', 'person', or 'location'.", "type": "string" } }, "required": [ "_id", "name", "type" ], "title": "Named Entity", "type": "object" }, "___utils_reference_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "This represents a reference to external content that should be denormalized", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/trait_alignment_json" }, "channels": { "$ref": "#/definitions/trait_channel_json" }, "referent": { "additionalProperties": false, "dependencies": { "website": { "properties": { "type": { "enum": [ "section" ], "type": "string" } } } }, "properties": { "id": { "description": "The id passed to the provider to retrieve an ANS document", "type": "string" }, "provider": { "description": "A URL that can resolve the id into an ANS element", "type": "string" }, "referent_properties": { "additionalProperties": {}, "description": "An object for key-value pairs that should override the values of keys with the same name in the denormalized object", "type": "object" }, "service": { "description": "The type of interaction the provider expects. E.g., 'oembed'", "type": "string" }, "type": { "description": "The ANS type that the provider should return.", "type": "string" }, "website": { "description": "The website which the referenced id belongs to. Currently supported only for sections.", "type": "string" } }, "required": [ "id" ], "type": "object" }, "subtype": { "$ref": "#/definitions/trait_subtype_json" }, "type": { "enum": [ "reference" ], "type": "string" } }, "required": [ "type", "referent" ], "title": "Representation of a normalized element", "type": "object" }, "___utils_section_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A hierarchical section in a taxonomy. In the Arc ecosystem, these are stored in the arc-site-service.", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "_website": { "$ref": "#/definitions/trait_website_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "description": { "description": "A short description or tagline about this site", "type": "string" }, "name": { "description": "The name of this site", "type": "string" }, "parent": { "description": "The id of this section's parent section in various commonly-used hierarchies, where available.", "properties": { "default": { "type": "string" } }, "type": "object" }, "parent_id": { "description": "The id of this section's parent section in the default hierarchy, if any.", "type": "string" }, "path": { "description": "The url path to this site", "type": "string" }, "primary": { "description": "Is this the primary site?", "type": "boolean" }, "type": { "enum": [ "section" ] }, "version": { "$ref": "#/definitions/trait_version_json" } }, "required": [ "type", "version", "name" ], "title": "Section", "type": "object" }, "___utils_site_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A hierarchical section or 'site' in a taxonomy. In the Arc ecosystem, these are stored in the arc-site-service.", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "description": { "description": "A short description or tagline about this site", "type": "string" }, "name": { "description": "The name of this site", "type": "string" }, "parent_id": { "description": "The id of this section's parent site, if any", "type": "string" }, "path": { "description": "The url path to this site", "type": "string" }, "primary": { "description": "Is this the primary site?", "type": "boolean" }, "type": { "enum": [ "site" ] }, "version": { "$ref": "#/definitions/trait_version_json" } }, "required": [ "type", "version", "name" ], "title": "Site", "type": "object" }, "___utils_tag_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a keyword used in describing a piece of content.", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "description": { "description": "A more detailed description of the tag.", "type": "string" }, "slug": { "$ref": "#/definitions/trait_slug_json" }, "subtype": { "$ref": "#/definitions/trait_subtype_json" }, "text": { "description": "The text of the tag as displayed to users.", "type": "string" }, "type": { "enum": [ "tag" ] } }, "required": [ "text" ], "title": "Tag", "type": "object" }, "___utils_topic_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a topic used in describing a piece of content.", "properties": { "_id": { "description": "The unique identifier for this topic.", "type": "string" }, "name": { "description": "The general name for this topic.", "type": "string" }, "score": { "description": "An arbitrary weighting to give the topic", "type": "number" }, "uid": { "description": "A short identifier for this topic. Usually used in cases where a long form id cannot work.", "type": "string" } }, "required": [ "_id", "score", "uid" ], "title": "Topic", "type": "object" }, "trait_additional_properties_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "A grab-bag object for non-validatable data.", "title": "Has additional properties", "type": "object" }, "trait_address_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "dependencies": { "extended_address": [ "street_address" ], "post_office_box": [ "street_address" ] }, "description": "An Address following the convention of http://microformats.org/wiki/hcard", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "country_name": { "type": "string" }, "extended_address": { "type": "string" }, "locality": { "type": "string" }, "post_office_box": { "type": "string" }, "postal_code": { "type": "string" }, "region": { "type": "string" }, "street_address": { "type": "string" } }, "title": "Address", "type": "object" }, "trait_alignment_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A property used to determine horizontal positioning of a content element relative to the elements that immediately follow it in the element sequence.", "enum": [ "left", "right", "center" ], "title": "Alignment", "type": "string" }, "trait_alt_text_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The direct ANS equivalent of the HTML 'alt' attribute. A description of the contents of an image for improved accessibility.", "title": "Alt Text", "type": "string" }, "trait_canonical_url_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The relative URL to this document on the website specified by the `canonical_website` field. In the Arc ecosystem, this will be populated by the content api from the arc-canonical-url service if present based on the canonical_website. In conjunction with canonical_website, it can be used to determine the SEO canonical url or open graph url. In a multi-site context, this field may be different from the website_url field.", "title": "Canonical URL", "type": "string" }, "trait_channel_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An optional list of output types for which this element should be visible", "items": { "type": "string" }, "title": "Channel trait", "type": "array" }, "trait_comments_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "Comment configuration data", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "allow_comments": { "description": "If false, commenting is disabled on this content.", "type": "boolean" }, "comments_period": { "description": "How long (in days) after publish date until comments are closed.", "type": "integer" }, "display_comments": { "description": "If false, do not render comments on this content.", "type": "boolean" }, "moderation_required": { "description": "If true, comments must be moderator-approved before being displayed.", "type": "boolean" } }, "title": "Comments", "type": "object" }, "trait_content_aliases_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An list of alternate names that this content can be fetched by instead of id.", "items": { "pattern": "^([a-z])([a-z0-9-])*$", "type": "string" }, "title": "Aliases trait", "type": "array" }, "trait_content_restrictions_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Trait that applies contains the content restrictions of an ANS object.", "properties": { "content_code": { "description": "The content restriction code/level/flag associated with the ANS object", "type": "string" }, "embargo": { "additionalProperties": false, "description": "Embargo configuration to enforce publishing restrictions. Embargoed content must not go live.", "properties": { "active": { "description": "The boolean flag to indicate if the embargo is active or not. If this field is false, ignore the embargo.", "type": "boolean" }, "description": { "description": "An optional description for the embargo.", "type": "string" }, "end_time": { "_format": "date-time", "description": "An optional end time for the embargo to indicate when it ends. When it's not defined, it means the embargo keeps applying. The end time should be ignored if active flag is false.", "type": "string" } }, "required": [ "active" ], "type": "object" }, "geo": { "additionalProperties": false, "description": "Geo-Restriction configuration that contains the restriction ids that this content should be associated with.", "properties": { "restrictions": { "description": "An array containing the geo-restriction objects. Limited to a size of 1 for now.", "items": { "additionalProperties": false, "description": "An object specifying the _id of the restriction this content should be associated with.", "properties": { "restriction_id": { "description": "The _id of the restriction that is stored in Global Settings.", "type": "string" } }, "required": [ "restriction_id" ], "type": "object" }, "maxItems": 1, "minItems": 1, "type": "array" } }, "required": [ "restrictions" ], "type": "object" } }, "title": "Content Restrictions", "type": "object" }, "trait_contributors_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that holds information on who created and contributed to a given document in Arc.", "properties": { "created_by": { "description": "The Creator of the Document.", "properties": { "display_name": { "description": "The display name of the Arc user who created the Document", "type": "string" }, "user_id": { "description": "The unique ID of the Arc user who created the Document", "type": "string" } }, "type": "object" } }, "title": "Contributors", "type": "object" }, "trait_copyright_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A copyright notice for the legal owner of this content. E.g., '\u00a9 1996-2018 The Washington Post.' Format may vary between organizations.", "title": "Copyright information", "type": "string" }, "trait_created_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "When the content was originally created (RFC3339-formatted). In the Arc ecosystem, this will be automatically generated for stories in the Story API.", "title": "Created Date", "type": "string" }, "trait_description_json": { "$ref": "#/definitions/___utils_dictionary_json", "$schema": "http://json-schema.org/draft-04/schema#", "description": "The descriptions, or blurbs, for the content.", "title": "Description", "type": "object" }, "trait_display_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "The RFC3339-formatted dated time of the most recent date the story was (re)displayed on a public site.", "title": "Display_Date", "type": "string" }, "trait_distributor_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Information about a third party that provided this content from outside this document's hosted organization.", "oneOf": [ { "additionalProperties": false, "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "category": { "description": "The machine-readable category of how this content was produced. Use 'staff' if this content was produced by an employee of the organization who owns this document repository. (Multisite note: content produced within a single *organization*, but shared across multiple *websites* should still be considered 'staff.') Use \u2018wires\u2019 if this content was produced for another organization and shared with the one who owns this document repository. Use 'freelance' if this content was produced by an individual on behalf of the organization who owns this document repository. Use 'stock' if this content is stock media distributed directly from a stock media provider. Use 'handout' if this is content provided from a source for an article (usually promotional media distributed directly from a company). Use 'other' for all other cases.", "enum": [ "staff", "wires", "freelance", "stock", "handout", "other" ], "type": "string" }, "mode": { "enum": [ "custom" ], "type": "string" }, "name": { "description": "The human-readable name of the distributor of this content. E.g., Reuters.", "type": "string" }, "subcategory": { "description": "The machine-readable subcategory of how this content was produced. E.g., 'freelance - signed'. May vary between organizations.", "type": "string" } } }, { "additionalProperties": false, "properties": { "mode": { "enum": [ "reference" ], "type": "string" }, "reference_id": { "description": "The ARC UUID of the distributor of this content. E.g., ABCDEFGHIJKLMNOPQRSTUVWXYZ.", "type": "string" } }, "required": [ "reference_id", "mode" ] } ], "title": "Distributor", "type": "object" }, "trait_editor_note_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Additional information to be displayed near the content from the editor.", "title": "Editor_Note", "type": "string" }, "trait_first_publish_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "When the story was first published.", "title": "First Publish Date", "type": "string" }, "trait_focal_point_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Coordinates representing the 'visual center' of an image. The X axis is horizontal line and the Y axis the vertical line, with 0,0 being the LEFT, TOP of the image.", "properties": { "x": { "description": "The coordinate point on the horizontal axis", "type": "number" }, "y": { "description": "The coordinate point on the vertical axis", "type": "number" } }, "required": [ "x", "y" ], "title": "Focal Point", "type": "object" }, "trait_geo_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Latitidue and Longitude of the content", "properties": { "latitude": { "type": "number" }, "longitude": { "type": "number" } }, "title": "Geo", "type": "object" }, "trait_headlines_json": { "$ref": "#/definitions/___utils_dictionary_json", "$schema": "http://json-schema.org/draft-04/schema#", "description": "The headline(s) or title for this content. The 'basic' key is required.", "title": "Headlines", "type": "object" }, "trait_id_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A globally unique identifier of the content in the ANS repository.", "title": "Globally Unique ID trait", "type": "string" }, "trait_image_type_json": { "$schema": "http://json-schema.org/draft-04/schema#", "category": { "description": "The machine-readable enumeration of valid image types.", "enum": [ "photograph", "graphic", "illustration", "thumbnail" ], "type": "string" }, "description": "A more specific category for an image.", "title": "Image Type", "type": "string" }, "trait_label_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "What the Washington Post calls a Kicker", "patternProperties": { "^[a-zA-Z0-9_]*$": { "additionalProperties": false, "description": "Additional user-defined keyed label objects.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "display": { "description": "If false, this label should be hidden.", "type": "boolean" }, "text": { "description": "The text of this label.", "type": "string" }, "url": { "description": "An optional destination url of this label.", "type": "string" } }, "required": [ "text" ], "type": "object" } }, "properties": { "basic": { "additionalProperties": false, "description": "The default label object for this piece of content.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "display": { "description": "If false, this label should be hidden.", "type": "boolean" }, "text": { "description": "The text of this label.", "type": "string" }, "url": { "description": "An optional destination url of this label.", "type": "string" } }, "required": [ "text" ], "type": "object" } }, "title": "Label", "type": "object" }, "trait_last_updated_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "When the content was last updated (RFC3339-formatted).", "title": "Last Updated Date", "type": "string" }, "trait_locale_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The primary language of the content. The value should follow IETF BCP47. (e.g. 'en', 'es-419', etc.) ", "title": "Locale", "type": "string" }, "trait_location_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A description of the location, useful if a full address or lat/long specification is overkill.", "title": "Location related trait", "type": "string" }, "trait_owner_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Various unrelated fields that should be preserved for backwards-compatibility reasons. See also trait_source.", "properties": { "id": { "description": "The machine-readable unique identifier of the organization whose database this content is stored in. In Arc, this is equivalent to ARC_ORG_NAME.", "type": "string" }, "name": { "description": "Deprecated in 0.10.9. See `distributor.name`. (Formerly: The human-readable name of original producer of content. Distinguishes between Wires, Staff and other sources.)", "type": "string" }, "sponsored": { "description": "True if this content is advertorial or native advertising.", "type": "boolean" } }, "title": "Owner information ", "type": "object" }, "trait_pitches_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents a story's pitches. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "platform": { "description": "A list of the story's pitches to a platform.", "items": { "$ref": "#/definitions/trait_platform_pitch_json" }, "type": "array" }, "publication": { "description": "A list of the story's pitches to a publication.", "items": { "$ref": "#/definitions/trait_publication_pitch_json" }, "type": "array" } }, "title": "Pitches", "type": "object" }, "trait_planning_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that applies planning information to a document or resource. In the Arc ecosystem, this data is generated by WebSked. Newsroom use only. All these fields should be available and editable in WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "budget_line": { "description": "Used for the newsroom to identify what the story is about, especially if a user is unfamiliar with the slug of a story and the headline or they do not yet exist. Newsroom use only.", "title": "Budget Line", "type": "string" }, "deadline_miss": { "description": "The delta between the story's planned publish date and actual first publish time, in minutes.", "type": "integer" }, "internal_note": { "description": "This note is used for shared communication inside the newsroom.", "title": "Internal Note", "type": "string" }, "scheduling": { "additionalProperties": false, "description": "Scheduling information.", "properties": { "planned_publish_date": { "_format": "date-time", "description": "When the content is planned to be published.", "type": "string" }, "scheduled_publish_date": { "_format": "date-time", "description": "When the content was first published.", "type": "string" }, "will_have_gallery": { "description": "Will this content have galleries?", "type": "boolean" }, "will_have_graphic": { "description": "Will this content have graphics?", "type": "boolean" }, "will_have_image": { "description": "Will this content have images?", "type": "boolean" }, "will_have_video": { "description": "Will this content have videos?", "type": "boolean" } }, "type": "object" }, "story_length": { "additionalProperties": false, "description": "Story length information.", "properties": { "character_count_actual": { "description": "The current number of characters in the story.", "type": "integer" }, "character_count_planned": { "description": "The anticipated number of characters in the story.", "type": "integer" }, "character_encoding": { "description": "The encoding used for counting characters in the story.", "type": "string" }, "inch_count_actual": { "description": "The current length of the story in inches.", "type": "integer" }, "inch_count_planned": { "description": "The anticipated length of the story in inches.", "type": "integer" }, "line_count_actual": { "description": "The current length of the story in lines.", "type": "integer" }, "line_count_planned": { "description": "The anticipated length of the story in lines.", "type": "integer" }, "word_count_actual": { "description": "Current number of words.", "type": "integer" }, "word_count_planned": { "description": "The anticipated number of words in the story.", "type": "integer" } }, "type": "object" }, "websked_sort_date": { "_format": "date-time", "description": "Date to be used for chronological sorting in WebSked.", "type": "string" } }, "title": "Scheduling information", "type": "object" }, "trait_platform_pitch_event_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents an update event for a pitch to a platform. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "note": { "description": "Optional note associated with this update.", "type": "string" }, "status": { "description": "The current status of the pitch.", "pattern": "^([a-z]|[ ])*$", "type": "string" }, "time": { "_format": "date-time", "description": "The time of this update.", "type": "string" }, "user_id": { "description": "The ID of the user who made this update.", "type": "string" } }, "title": "Platform pitch event", "type": "object" }, "trait_platform_pitch_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents a pitch to a platform. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "creation_event": { "$ref": "#/definitions/trait_platform_pitch_event_json" }, "latest_event": { "$ref": "#/definitions/trait_platform_pitch_event_json" }, "platform_path": { "description": "The path of the platform that this pitch targets.", "type": "string" } }, "title": "Platform pitch", "type": "object" }, "trait_promo_items_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Lists of promotional content to use when highlighting the story. In the Arc ecosystem, references in these lists will be denormalized.", "patternProperties": { ".*": { "oneOf": [ { "$ref": "#/definitions/___content_json" }, { "$ref": "#/definitions/___utils_reference_json" }, { "$ref": "#/definitions/___story_elements_raw_html_json" }, { "$ref": "#/definitions/___story_elements_custom_embed_json" } ] } }, "properties": { "basic": { "oneOf": [ { "$ref": "#/definitions/___content_json" }, { "$ref": "#/definitions/___utils_reference_json" }, { "$ref": "#/definitions/___story_elements_raw_html_json" }, { "$ref": "#/definitions/___story_elements_custom_embed_json" } ] } }, "title": "Promo Items", "type": "object" }, "trait_publication_pitch_event_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents an update event for a pitch to a publication. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "edition_id": { "description": "The ID of the publication edition that this pitch targets.", "type": "string" }, "edition_time": { "_format": "date-time", "description": "The time of the publication edition that this pitch targets.", "type": "string" }, "note": { "description": "Optional note associated with this update.", "type": "string" }, "status": { "description": "The current status of the pitch.", "pattern": "^([a-z]|[ ])*$", "type": "string" }, "time": { "_format": "date-time", "description": "The time of this update.", "type": "string" }, "user_id": { "description": "The ID of the user who made this update.", "type": "string" } }, "title": "Publication pitch event", "type": "object" }, "trait_publication_pitch_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents a pitch to a publication. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "creation_event": { "$ref": "#/definitions/trait_publication_pitch_event_json" }, "latest_event": { "$ref": "#/definitions/trait_publication_pitch_event_json" }, "publication_id": { "description": "The ID of the publication that this pitch targets.", "type": "string" } }, "title": "Publication pitch", "type": "object" }, "trait_publish_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "When the story was published.", "title": "Publish_Date", "type": "string" }, "trait_related_content_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Lists of content items or references this story is related to, arbitrarily keyed. In the Arc ecosystem, references in this object will be denormalized into the fully-inflated content objects they represent.", "patternProperties": { ".*": { "items": { "anyOf": [ { "$ref": "#/definitions/___content_json" }, { "$ref": "#/definitions/___utils_reference_json" }, { "$ref": "#/definitions/___story_elements_custom_embed_json" } ], "type": "object" }, "type": "array" } }, "properties": { "redirect": { "description": "An attached redirect. In Arc, when this content item is fetched by url, content api will instead return this redirect object with appropriate headers. In all other cases, this content should be treated normally.", "items": { "$ref": "#/definitions/___redirect_json" }, "maxItems": 1, "type": "array" } }, "title": "Related_Content", "type": "object" }, "trait_revision_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that applies revision information to a document. In the Arc ecosystem, many of these fields are populated in stories by the Story API.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "branch": { "description": "The name of the branch this revision was created on.", "type": "string" }, "editions": { "description": "A list of identifiers of editions that point to this revision.", "items": { "type": "string" }, "type": "array" }, "parent_id": { "description": "The unique id of the revision that this revisions was branched from, or preceded it on the current branch.", "type": "string" }, "published": { "description": "Whether or not this revision's parent story is published, in any form or place", "type": "boolean" }, "revision_id": { "description": "The unique id of this revision.", "type": "string" }, "user_id": { "description": "The unique user id of the person who created this revision.", "type": "string" } }, "title": "Revision", "type": "object" }, "trait_short_url_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A url-shortened version of the canonical url.", "title": "Short_Url", "type": "string" }, "trait_slug_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A short reference name for internal editorial use", "title": "Slug", "type": "string" }, "trait_social_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Links to various social media", "items": { "additionalProperties": {}, "properties": { "site": { "type": "string" }, "url": { "type": "string" } }, "type": "object" }, "title": "Social Links", "type": "array" }, "trait_source_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Information about the original source and/or owner of this content", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "edit_url": { "description": "A link to edit this content in its source CMS.", "type": "string" }, "name": { "description": "Deprecated in 0.10.9. See `distributor.name`. (Formerly: The human-readable name of the organization who first produced this content. E.g., 'Reuters'.)", "type": "string" }, "source_id": { "description": "The id of this content in a foreign CMS.", "type": "string" }, "source_type": { "description": "Deprecated in 0.10.9. See `distributor.category` and `distributor.subcategory`. (Formerly: The method used to enter this content. E.g. 'staff', 'wires'.)", "type": "string" }, "system": { "description": "The software (CMS or editor) that was used to enter this content. E.g., 'wordpress', 'ellipsis'.", "type": "string" } }, "title": "Source", "type": "object" }, "trait_status_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Optional field to story story workflow related status (e.g. published/embargoed/etc)", "title": "Status", "type": "string" }, "trait_subheadlines_json": { "$ref": "#/definitions/___utils_dictionary_json", "$schema": "http://json-schema.org/draft-04/schema#", "description": "The sub-headline(s) for the content.", "title": "Sub-Headlines", "type": "object" }, "trait_subtype_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.", "title": "Subtype or Template", "type": "string" }, "trait_syndication_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Key-boolean pair of syndication services where this article may go", "patternProperties": { ".*": { "type": "boolean" } }, "properties": { "external_distribution": { "description": "Necessary for fulfilling contractual agreements with third party clients", "type": "boolean" }, "search": { "description": "Necessary so that we can filter out all articles that editorial has deemed should not be discoverable via search", "type": "boolean" } }, "title": "Syndication", "type": "object" }, "trait_taxonomy_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Holds the collection of tags, categories, keywords, etc that describe content.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "associated_tasks": { "description": "A list of WebSked task IDs that this content was created or curated to satisfy.", "items": { "pattern": "^[0-9a-fA-F]{24}$", "type": "string" }, "maxItems": 200, "type": "array" }, "auxiliaries": { "description": "A list of auxiliaries. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/___utils_auxiliary_json" }, "type": "array" }, "keywords": { "description": "A list of keywords. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/___utils_keyword_json" }, "type": "array" }, "named_entities": { "description": "A list of named entities. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/___utils_named_entity_json" }, "type": "array" }, "primary_section": { "description": "A primary section object or reference to one. In the Arc ecosystem, a reference here is denormalized into a site from the arc-site-service.", "oneOf": [ { "$ref": "#/definitions/___utils_section_json" }, { "allOf": [ { "$ref": "#/definitions/___utils_reference_json" }, { "properties": { "referent": { "properties": { "type": { "enum": [ "section" ] } } } } } ] } ] }, "primary_site": { "description": "Deprecated in 0.10.9. (See `primary_section` instead.) A primary site object or reference to one. In the Arc ecosystem, a reference here is denormalized into a site from the arc-site-service.", "oneOf": [ { "$ref": "#/definitions/___utils_site_json" }, { "allOf": [ { "$ref": "#/definitions/___utils_reference_json" }, { "properties": { "referent": { "properties": { "type": { "enum": [ "site" ] } } } } } ] } ] }, "sections": { "description": "A list of site objects or references to them. In the Arc ecosystem, references in this list are denormalized into sites from the arc-site-service. In a multi-site context, sites will be denormalized against an organization's default website only.", "items": { "oneOf": [ { "$ref": "#/definitions/___utils_section_json" }, { "allOf": [ { "$ref": "#/definitions/___utils_reference_json" }, { "properties": { "referent": { "properties": { "type": { "enum": [ "section" ] } } } } } ] } ] }, "type": "array" }, "seo_keywords": { "description": "A list of user-editable manually entered keywords for search purposes. In the Arc ecosystem, these can be generated and saved in source CMS systems, editors, etc.", "items": { "type": "string" }, "type": "array" }, "sites": { "description": "Deprecated in 0.10.9. (See `sections` instead.) A list of site objects or references to them. In the Arc ecosystem, references in this list are denormalized into sites from the arc-site-service. In a multi-site context, sites will be denormalized against an organization's default website only.", "items": { "oneOf": [ { "$ref": "#/definitions/___utils_site_json" }, { "allOf": [ { "$ref": "#/definitions/___utils_reference_json" }, { "properties": { "referent": { "properties": { "type": { "enum": [ "site" ] } } } } } ] } ] }, "type": "array" }, "stock_symbols": { "description": "A list of stock symbols of companies related to this content. In the Arc ecosystem, these can be generated and saved in source CMS systems, editors, etc.", "items": { "type": "string" }, "type": "array" }, "tags": { "items": { "$ref": "#/definitions/___utils_tag_json" }, "type": "array" }, "topics": { "description": "A list of topics. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/___utils_topic_json" }, "type": "array" } }, "title": "Taxonomy", "type": "object" }, "trait_tracking_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "Tracking information, probably implementation-dependent", "title": "Tracking", "type": "object" }, "trait_vanity_credits_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Similar to the credits trait, but to be used only when ANS is being directly rendered to readers natively. For legal and technical reasons, the `credits` trait is preferred when converting ANS into feeds or other distribution formats. However, when present, `vanity_credits` allows more sophisticated credits presentation to override the default without losing that original data.", "patternProperties": { "^[a-zA-Z0-9_]*": { "items": { "anyOf": [ { "$ref": "#/definitions/___utils_author_json" }, { "$ref": "#/definitions/___utils_reference_json" } ], "type": "object" }, "type": "array" } }, "properties": { "by": { "description": "The primary author(s) of this document. For a story, is is the writer or reporter. For an image, it is the photographer.", "items": { "anyOf": [ { "$ref": "#/definitions/___utils_author_json" }, { "$ref": "#/definitions/___utils_reference_json" } ], "type": "object" }, "title": "By", "type": "array" }, "photos_by": { "description": "The photographer(s) of supplementary images included in this document, if it is a story. Note that if this document is an image, the photographer(s) should appear in the 'by' slot.", "items": { "anyOf": [ { "$ref": "#/definitions/___utils_author_json" }, { "$ref": "#/definitions/___utils_reference_json" } ], "type": "object" }, "title": "Photos by", "type": "array" } }, "title": "Vanity Credits trait", "type": "object" }, "trait_version_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The version of ANS that this object was serialized as, in major.minor.patch format. For top-level content objects, this is a required trait.", "enum": [ "0.10.9" ], "title": "Describes the ANS version of this object", "type": "string" }, "trait_website_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The _id of the website on which this document exists. This field is only available in Content API. If different from canonical_website, then this document was originally sourced from the canonical_website. Generated at fetch time by Content API.", "title": "Website", "type": "string" }, "trait_workflow_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that applies workflow information to a document or resource. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "note": { "description": "This note will be used for any task automatically generated via WebSked task triggers.", "type": "string" }, "status_code": { "description": "Code indicating the story's current workflow status. This number should match the values configured in WebSked.", "minimum": 1, "type": "integer" } }, "title": "Workflow information", "type": "object" } }, "description": "A list of people and groups attributed to this content, keyed by type of contribution. In the Arc ecosystem, references in this list will be denormalized into author objects from the arc-author-service.", "patternProperties": { "^[a-zA-Z0-9_]*": { "items": { "anyOf": [ { "$ref": "#/definitions/___utils_author_json" }, { "$ref": "#/definitions/___utils_reference_json" } ], "type": "object" }, "type": "array" } }, "properties": { "by": { "description": "The primary author(s) of this document. For a story, is is the writer or reporter. For an image, it is the photographer.", "items": { "anyOf": [ { "$ref": "#/definitions/___utils_author_json" }, { "$ref": "#/definitions/___utils_reference_json" } ], "type": "object" }, "title": "By", "type": "array" }, "photos_by": { "description": "The photographer(s) of supplementary images included in this document, if it is a story. Note that if this document is an image, the photographer(s) should appear in the 'by' slot.", "items": { "anyOf": [ { "$ref": "#/definitions/___utils_author_json" }, { "$ref": "#/definitions/___utils_reference_json" } ], "type": "object" }, "title": "Photos by", "type": "array" } }, "title": "Credit trait", "type": "object" }
wp_53_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "pets": { "type": "object", "properties": { "dog": { "type": "array", "items": { "type": "string" }, "minItems": 0 } } } }, "properties": { "pets": { "$ref": "#/definitions/pets" } }, "required": [ "pets" ] }
o41691
{ "properties": { "kdf": { "enum": [ "scrypt" ], "type": "string" }, "kdfparams": { "additionalProperties": false, "properties": { "dklen": { "minimum": 1, "type": "integer" }, "n": { "minimum": 1, "type": "integer" }, "p": { "minimum": 1, "type": "integer" }, "r": { "minimum": 1, "type": "integer" }, "salt": { "pattern": "^(([0-9]|[a-f]){2}){0,32}$", "type": "string" } }, "required": [ "r", "p", "n", "dklen", "salt" ], "type": "object" } }, "required": [ "kdf", "kdfparams" ], "type": "object" }
o48548
{ "properties": { "grades": { "description": "The list of courses and grades", "items": { "properties": { "course": { "description": "The name of the course", "type": "string" }, "credits": { "description": "The credits associated with the course", "type": "number" }, "grade": { "description": "The grade obtained in the course", "type": "string" } }, "required": [ "course", "grade", "credits" ], "type": "object" }, "type": "array" } }, "required": [ "grades" ], "type": "object" }
calculate_gpa_ff62a7e0
{ "additionalProperties": false, "description": "A begin_checkout GTM server-side event.", "properties": { "coupon": { "description": "The coupon name or code associated with the event.", "maxLength": 4096, "type": [ "string", "null" ] }, "currency": { "description": "Currency of the items associated with the event, in 3-letter ISO 4217 format. Is required, if value is set.", "maxLength": 3, "minLength": 3, "type": [ "string", "null" ] }, "items": { "description": "The items for the event.", "items": { "additionalProperties": false, "description": "An item object.", "properties": { "affiliation": { "description": "A product affiliation to designate a supplying company or brick and mortar store location", "maxLength": 4096, "type": [ "string", "null" ] }, "coupon": { "description": "The coupon name or code associated with the item.", "maxLength": 4096, "type": [ "string", "null" ] }, "currency": { "description": "The currency, in 3-letter ISO 4217 format.", "maxLength": 3, "minLength": 3, "type": [ "string", "null" ] }, "discount": { "description": "The monetary discount value associated with the item.", "minimum": 0, "type": [ "number", "null" ] }, "index": { "description": "The index of the item in a list.", "minimum": 0, "type": [ "integer", "null" ] }, "item_brand": { "description": "The brand of the item.", "maxLength": 4096, "type": [ "string", "null" ] }, "item_category": { "description": "The category of the item.", "maxLength": 4096, "type": [ "string", "null" ] }, "item_category2": { "description": "The second category hierarchy or additional taxonomy for the item.", "maxLength": 4096, "type": [ "string", "null" ] }, "item_category3": { "description": "The third category hierarchy or additional taxonomy for the item.", "maxLength": 4096, "type": [ "string", "null" ] }, "item_category4": { "description": "The fourth category hierarchy or additional taxonomy for the item.", "maxLength": 4096, "type": [ "string", "null" ] }, "item_category5": { "description": "The fifth category hierarchy or additional taxonomy for the item.", "maxLength": 4096, "type": [ "string", "null" ] }, "item_id": { "description": "The ID of the item.", "maxLength": 500, "type": [ "string", "null" ] }, "item_list_id": { "description": "The ID of the list in which the item was presented to the user.", "maxLength": 4096, "type": [ "string", "null" ] }, "item_list_name": { "description": "The name of the list in which the item was presented to the user.", "maxLength": 4096, "type": [ "string", "null" ] }, "item_name": { "description": "The name of the item.", "maxLength": 500, "type": [ "string", "null" ] }, "item_variant": { "description": "The item variant or unique code or description for additional item details or options.", "maxLength": 4096, "type": [ "string", "null" ] }, "location_id": { "description": "The location associated with the item.", "maxLength": 4096, "type": [ "string", "null" ] }, "price": { "description": "The monetary price of the item, in units of the specified currency parameter.", "minimum": 0, "type": [ "number", "null" ] }, "quantity": { "description": "Item quantity.", "minimum": 0, "type": [ "integer", "null" ] } }, "type": "object" }, "type": "array" }, "value": { "description": "The monetary value of the event.", "minimum": 0, "type": [ "number", "null" ] } }, "required": [ "items" ], "self": { "format": "jsonschema", "name": "begin_checkout", "vendor": "com.google.tag-manager.server-side", "version": "1-0-0" }, "type": "object" }
sp_82_Normalized
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "id": "http://docs.openstack.org/api/openstack-block-storage/v2/types#post", "type": "object", "properties": { "volume_type": { "id": "http://docs.openstack.org/api/openstack-block-storage/v2/types#post/volume_type", "type": "object", "documentation": "A partial representation of a volume type used in the creation process.", "properties": { "name": { "id": "http://docs.openstack.org/api/openstack-block-storage/v2/types#post/volume_type/name", "type": "string", "documentation": "The name of the volume type." }, "extra_specs": { "id": "http://docs.openstack.org/api/openstack-block-storage/v2/types#post/volume_type/extra_specs", "type": "object", "properties": { "capabilities": { "id": "http://docs.openstack.org/api/openstack-block-storage/v2/types#post/volume_type/extra_specs/capabilities", "type": "string" } } } }, "required": [] } }, "required": [ "volume_type" ] }
o69219
{ "description": "A MWF paragraph component's schema definition.", "properties": { "config": { "properties": { "type": { "enum": [ 1, 2, 3, 4 ], "type": "integer" } }, "required": [ "type" ], "type": "object" }, "content": { "properties": { "text": { "type": "string" } }, "type": "object" } }, "required": [ "config", "content" ], "title": "Paragraph", "type": "object" }
o85203
{ "title": "Holiday", "$schema": "http://json-schema.org/draft-04/schema#", "description": "A Federal holiday", "required": [ "_metadata", "holiday" ], "type": "object", "properties": { "_metadata": { "required": [ "request", "response" ], "type": "object", "properties": { "request": { "required": [ "ip", "params", "time", "user" ], "type": "object", "properties": { "ip": { "type": "string" }, "params": { "type": "null" }, "user": { "type": "null" }, "time": { "type": "string" } } }, "response": { "required": [ "time" ], "type": "object", "properties": { "time": { "type": "string" } } } } }, "holiday": { "required": [ "holiday_date", "holiday_description", "holiday_type", "id", "next_bus_date" ], "type": "object", "properties": { "next_bus_date": { "type": "string" }, "holiday_date": { "type": "string" }, "holiday_description": { "type": "string" }, "id": { "type": "integer" }, "holiday_type": { "type": "string" } } } } }
o62963
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "booking_reason": { "type": "string" }, "slots": { "type": "array", "description": "List of slots representing the start/end date of the bookings", "additionalProperties": false, "items": { "type": "object", "properties": { "start_date": { "description": "Unix timestamp representing the start date of the booking", "type": "integer" }, "end_date": { "description": "Unix timestamp representing the end date of the booking", "type": "integer" }, "iana": { "description": "IANA identifier of the booking owner", "type": "string" } }, "required": [ "start_date", "end_date", "iana" ] }, "minItems": 1 } }, "required": [ "slots" ] }
o12229
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "object", "properties": { "name": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "manufacturer": { "type": "string" }, "type": { "type": "string" }, "version": { "type": "object", "properties": { "class": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "search": { "anyOf": [ { "type": "array" }, { "type": "null" } ] } }, "required": [ "class", "search" ] } }, "required": [ "name", "manufacturer", "type", "version" ] } }
o60835
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape for which to calculate the area (e.g., square, circle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_76c8fc4e
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "properties": { "email": { "pattern": "^[\\w|-|.]+@[\\w]+\\.[A-Za-z]{2,4}$", "type": "string" }, "firstName": { "type": "string" }, "lastName": { "type": "string" }, "postedSlides": { "anyOf": [ { "type": "boolean" }, { "enum": [ "yes", "Yes", "no", "No" ], "type": "string" } ] }, "rating": { "type": "number" } }, "required": [ "email", "firstName", "lastName", "postedSlides", "rating" ], "type": "object" }
o81531
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Accounting period", "properties": { "end": { "_format": "date", "description": "Date your books or accounts are made up to or the end of your accounting period", "title": "End date", "type": "string" }, "start": { "_format": "date", "description": "Date your books or accounts start - the beginning of your accounting period", "title": "Start date", "type": "string" } }, "required": [ "start", "end" ], "title": "Accounting period", "type": "object" }
o17437
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "sslKey": { "oneOf": [ { "type": "string", "maxLength": 32767, "minLength": 50 }, { "type": "null" } ] }, "sslCert": { "oneOf": [ { "type": "string", "maxLength": 32767, "minLength": 50 }, { "type": "null" } ] }, "sslBundle": { "oneOf": [ { "type": "string", "maxLength": 32767, "minLength": 50 }, { "type": "null" } ] }, "version": { "oneOf": [ { "type": "string", "minLength": 1, "maxLength": 255 }, { "type": "null" } ] }, "domainName": { "type": "string", "maxLength": 1024, "minLength": 3 } }, "additionalProperties": false }
o9870
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Last Purchase Date", "description": "The date we most recently recorded a purchase for this user (user.customFields.lastPurchaseDate).", "type": "integer", "format": "timestamp" }
o72209
{ "$id": "https://json.schemastore.org/powerpages-web-template-manifest.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "examples": [ { "type": "functional", "displayName": "Card Template", "description": "renders the gallery card", "params": [ { "id": "name", "displayName": "Display name", "description": "Main heading of the web template" }, { "id": "count", "displayName": "Items per row", "description": "No of items to be displayed per row" }, { "id": "paramTable", "type": "table", "displayName": "Select table" } ] } ], "properties": { "type": { "type": "string", "title": "type", "description": "The web template type. Use 'functional' for custom site components and 'layout' for custom layouts.", "enum": ["functional", "layout"] }, "displayName": { "type": "string", "description": "The display name of the web template", "examples": ["Card Template"] }, "description": { "type": "string", "description": "The description of the web template", "examples": ["renders the gallery card"] }, "tables": { "type": "array", "description": "An array of table logical names that are used in the web template", "items": { "type": "string" } }, "params": { "type": "array", "title": "params", "description": "The editable properties of the web template. These will be customizable in Studio", "items": { "type": "object", "required": ["id"], "properties": { "id": { "type": "string", "title": "id", "description": "The id of the param. This correlates with the liquid tag's key for this property", "examples": ["name", "count", "specifiedTable"] }, "displayName": { "type": "string", "description": "The label displayed when editing a property in Studio. If no displayName is given, the label will fallback on the id", "examples": ["Display name", "Items per row", "Selected table"] }, "description": { "type": "string", "description": "The description to be displayed in the tooltip when editing a property in Studio. If no description is given, no tooltip will be displayed", "examples": [ "Main heading of the web template", "No of items to be displayed per row" ] }, "type": { "type": "string", "description": "Used to specify a property that correlates to a table's logical name", "enum": ["table"] } }, "examples": [ { "id": "name", "displayName": "Display name", "description": "Main heading of the web template" }, { "id": "count", "displayName": "Items per row" }, { "id": "specifiedTable", "type": "table", "displayName": "Select table" } ] }, "examples": [ [ { "id": "name", "displayName": "Display name", "description": "Main heading of the web template" }, { "id": "count", "displayName": "Items per row", "description": "No of items to be displayed per row" }, { "id": "specifiedTable", "type": "table", "displayName": "Select table" } ] ] } }, "required": ["type"], "title": "Root Schema", "type": "object" }
powerpages-web-template-manifest
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "bulk_publishing": { "type": "boolean" }, "links": { "type": "object", "additionalProperties": false, "properties": { "corporate_information_pages": { "$ref": "#/definitions/guid_list" }, "facet_groups": { "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.", "$ref": "#/definitions/guid_list" }, "facet_values": { "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups.", "$ref": "#/definitions/guid_list" }, "finder": { "description": "Powers links from content back to finders the content is surfaced on", "$ref": "#/definitions/guid_list" }, "government": { "description": "The government associated with this document", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "lead_organisations": { "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.", "$ref": "#/definitions/guid_list" }, "mainstream_browse_pages": { "description": "Powers the /browse section of the site. These are known as sections in some legacy apps.", "$ref": "#/definitions/guid_list" }, "meets_user_needs": { "description": "The user needs this piece of content meets.", "$ref": "#/definitions/guid_list" }, "ordered_related_items": { "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.", "$ref": "#/definitions/guid_list" }, "ordered_related_items_overrides": { "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation.", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "All organisations linked to this content item. This should include lead organisations.", "$ref": "#/definitions/guid_list" }, "original_primary_publishing_organisation": { "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.", "$ref": "#/definitions/guid_list" }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" }, "primary_publishing_organisation": { "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.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "suggested_ordered_related_items": { "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.", "$ref": "#/definitions/guid_list" }, "taxons": { "description": "Prototype-stage taxonomy label for this content item", "$ref": "#/definitions/guid_list" }, "topics": { "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps.", "$ref": "#/definitions/guid_list" } } }, "previous_version": { "type": "string" } }, "definitions": { "guid": { "type": "string", "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$" }, "guid_list": { "type": "array", "items": { "$ref": "#/definitions/guid" }, "_uniqueItems": true } } }
o21186
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v1_JobSpec": { "description": "JobSpec describes how the job execution will look like.", "properties": { "activeDeadlineSeconds": { "_format": "int64", "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", "type": "integer" }, "backoffLimit": { "_format": "int32", "description": "Specifies the number of retries before marking this job failed. Defaults to 6", "type": "integer" }, "completions": { "_format": "int32", "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/", "type": "integer" }, "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" }, "parallelism": { "_format": "int32", "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/", "type": "integer" }, "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": { "_format": "int32", "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.", "type": "integer" } }, "required": [ "template" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v2alpha1_CronJob": { "description": "CronJob represents the configuration of a single cron job.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": "string" }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "CronJob" ], "type": "string" }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v2alpha1_CronJobSpec", "description": "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v2alpha1_CronJobStatus", "description": "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "batch", "kind": "CronJob", "version": "v2alpha1" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v2alpha1_CronJobSpec": { "description": "CronJobSpec describes how the job execution will look like and when it will actually run.", "properties": { "concurrencyPolicy": { "description": "Specifies how to treat concurrent executions of a Job. Valid values are: - \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one", "type": "string" }, "failedJobsHistoryLimit": { "_format": "int32", "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.", "type": "integer" }, "jobTemplate": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v2alpha1_JobTemplateSpec", "description": "Specifies the job that will be created when executing a CronJob." }, "schedule": { "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.", "type": "string" }, "startingDeadlineSeconds": { "_format": "int64", "description": "Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.", "type": "integer" }, "successfulJobsHistoryLimit": { "_format": "int32", "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.", "type": "integer" }, "suspend": { "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.", "type": "boolean" } }, "required": [ "schedule", "jobTemplate" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v2alpha1_CronJobStatus": { "description": "CronJobStatus represents the current state of a cron job.", "properties": { "active": { "description": "A list of pointers to currently running jobs.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference" }, "type": "array" }, "lastScheduleTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Information when was the last time the job was successfully scheduled." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v2alpha1_JobTemplateSpec": { "description": "JobTemplateSpec describes the data a Job 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 of the jobs created from this template. 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_batch_v1_JobSpec", "description": "Specification of the desired behavior of the job. 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_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_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_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_ListMeta": { "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", "properties": { "continue": { "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.", "type": "string" }, "remainingItemCount": { "_format": "int64", "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.", "type": "integer" }, "resourceVersion": { "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "description": "CronJobList is a collection of cron jobs.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "batch/v2alpha1" ], "type": [ "string", "null" ] }, "items": { "description": "items is the list of CronJobs.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v2alpha1_CronJob" }, "type": [ "array", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "CronJobList" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "batch", "kind": "CronJobList", "version": "v2alpha1" } ] }
kb_147_Normalized
{ "properties": { "budget": { "description": "The maximum budget per night for the hotel", "type": "integer" }, "check_in_date": { "description": "The check-in date for hotel stay", "format": "date", "type": "string" }, "check_out_date": { "description": "The check-out date for hotel stay", "format": "date", "type": "string" }, "location": { "description": "The location for hotel search", "type": "string" } }, "required": [ "location", "check_in_date", "check_out_date" ], "type": "object" }
find_hotels_5e748096
{ "$schema": "http://json-schema.org/draft-04/schema", "title": "Git LFS HTTPS Lock Creation API Response", "type": "object", "properties": { "lock": { "type": "object", "properties": { "id": { "type": "string" }, "path": { "type": "string" }, "locked_at": { "type": "string" }, "owner": { "type": "object", "properties": { "name": { "type": "string" } } } }, "required": [ "id", "path", "locked_at" ] }, "message": { "type": "string" }, "request_id": { "type": "string" }, "documentation_url": { "type": "string" } }, "required": [ "lock" ] }
o43293
{ "additionalProperties": true, "description": "Schema for Segment alias event (via webhook), https://segment.com/docs/integrations/webhooks/#alias", "properties": { "from": { "type": "string" }, "to": { "type": "string" } }, "self": { "format": "jsonschema", "name": "alias", "vendor": "com.segment", "version": "1-0-0" }, "type": "object" }
sp_171_Normalized
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1_TokenReviewSpec": { "description": "TokenReviewSpec is a description of the token authentication request.", "properties": { "audiences": { "description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.", "items": { "type": "string" }, "type": "array" }, "token": { "description": "Token is the opaque bearer token.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1_TokenReviewStatus": { "description": "TokenReviewStatus is the result of the token authentication request.", "properties": { "audiences": { "description": "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is \"true\", the token is valid against the audience of the Kubernetes API server.", "items": { "type": "string" }, "type": "array" }, "authenticated": { "description": "Authenticated indicates that the token was associated with a known user.", "type": "boolean" }, "error": { "description": "Error indicates that the token couldn't be checked", "type": "string" }, "user": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1_UserInfo", "description": "User is the UserInfo associated with the provided token." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1_UserInfo": { "description": "UserInfo holds the information about the user needed to implement the user.Info interface.", "properties": { "extra": { "additionalProperties": { "items": { "type": "string" }, "type": "array" }, "description": "Any additional information provided by the authenticator.", "type": "object" }, "groups": { "description": "The names of groups this user is a part of.", "items": { "type": "string" }, "type": "array" }, "uid": { "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.", "type": "string" }, "username": { "description": "The name that uniquely identifies this user among all active users.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_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": "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "authentication.k8s.io/v1" ], "type": [ "string", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "TokenReview" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1_TokenReviewSpec", "description": "Spec holds information about the request being evaluated" }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1_TokenReviewStatus", "description": "Status is filled in by the server and indicates whether the request can be authenticated." } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "authentication.k8s.io", "kind": "TokenReview", "version": "v1" } ] }
kb_1070_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "O3D3xx Dimensioning model configuration", "type": "object", "properties": { "Name": { "type": "string" }, "PrivateType": { "type": "string", "default": "Dimensioning", "attributes": [ "private", "noexport" ] }, "Type": { "type": "string", "enum": [ "Dimensioning" ], "attributes": [ "readonly" ] }, "FlowAngle": { "type": "number" }, "UseFlowAngle": { "type": "boolean" }, "BackgroundTaught": { "type": "boolean", "attributes": [ "readonly", "noexport" ] }, "ROIs": { "type": "string", "attributes": [ "readonly" ] }, "ObjectType": { "type": "integer", "minimum": 0, "maximum": 1 }, "TeachData": { "type": "string", "attributes": [ "private", "noexport" ] }, "TeachROI": { "type": "string", "attributes": [ "private", "noexport" ] } }, "required": [ "Name", "Type", "FlowAngle", "UseFlowAngle", "ObjectType" ] }
o57649
{ "$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" }, "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": { "attachments": { "description": "An ordered list of asset links", "items": { "$ref": "#/definitions/publication_attachment_asset" }, "type": "array" }, "body": { "$ref": "#/definitions/body" }, "change_history": { "$ref": "#/definitions/change_history" }, "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": [ "body", "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" }, "publication_attachment_asset": { "oneOf": [ { "additionalProperties": false, "properties": { "accessible": { "type": "boolean" }, "alternative_format_contact_email": { "type": "string" }, "attachment_type": { "enum": [ "file" ], "type": "string" }, "command_paper_number": { "type": "string" }, "content_type": { "type": "string" }, "file_size": { "type": "integer" }, "filename": { "type": "string" }, "hoc_paper_number": { "type": "string" }, "id": { "type": "string" }, "isbn": { "type": "string" }, "locale": { "$ref": "#/definitions/locale" }, "number_of_pages": { "type": "integer" }, "parliamentary_session": { "type": "string" }, "preview_url": { "_format": "uri", "type": "string" }, "title": { "type": "string" }, "unique_reference": { "type": "string" }, "unnumbered_command_paper": { "type": "boolean" }, "unnumbered_hoc_paper": { "type": "boolean" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "attachment_type", "content_type", "id", "url" ], "type": "object" }, { "additionalProperties": false, "properties": { "attachment_type": { "enum": [ "html" ], "type": "string" }, "command_paper_number": { "type": "string" }, "hoc_paper_number": { "type": "string" }, "id": { "type": "string" }, "isbn": { "type": "string" }, "locale": { "$ref": "#/definitions/locale" }, "parliamentary_session": { "type": "string" }, "title": { "type": "string" }, "unique_reference": { "type": "string" }, "unnumbered_command_paper": { "type": "boolean" }, "unnumbered_hoc_paper": { "type": "boolean" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "attachment_type", "id", "url" ], "type": "object" }, { "additionalProperties": false, "properties": { "attachment_type": { "enum": [ "external" ], "type": "string" }, "command_paper_number": { "type": "string" }, "hoc_paper_number": { "type": "string" }, "id": { "type": "string" }, "isbn": { "type": "string" }, "locale": { "$ref": "#/definitions/locale" }, "parliamentary_session": { "type": "string" }, "title": { "type": "string" }, "unique_reference": { "type": "string" }, "unnumbered_command_paper": { "type": "boolean" }, "unnumbered_hoc_paper": { "type": "boolean" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "attachment_type", "id", "url" ], "type": "object" } ] }, "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": [ "statistical_data_set" ], "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" }, "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" }, "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", "description": "All organisations linked to this content item. This should include lead organisations." }, "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", "description": "The parent content item.", "maxItems": 1 }, "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_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" }, "topics": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "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": [ "statistical_data_set" ], "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" }
o21383
{ "$id": "https://json.schemastore.org/factorial-drupal-breakpoints-css-0.2.0.json", "$ref": "#/definitions/drupal-breakpoints-css", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "drupal-breakpoints-css": { "title": "Drupal breakpoints to CSS configuration", "description": "https://github.com/factorial-io/drupal-breakpoints-css", "type": "object", "additionalProperties": false, "properties": { "drupal": { "$ref": "#/definitions/drupal" }, "js": { "$ref": "#/definitions/js" }, "css": { "$ref": "#/definitions/css" }, "options": { "$ref": "#/definitions/options" }, "prettier": { "$ref": "#/definitions/prettier" } }, "required": ["drupal"] }, "drupal": { "title": "Drupal configuration", "description": "https://github.com/factorial-io/drupal-breakpoints-css", "type": "object", "additionalProperties": false, "properties": { "breakpointsPath": { "type": "string" }, "themeName": { "type": "string" } }, "required": ["breakpointsPath", "themeName"] }, "js": { "title": "JavaScript configuration", "description": "https://github.com/factorial-io/drupal-breakpoints-css", "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean" }, "path": { "type": "string" }, "type": { "enum": ["module", "commonjs"] } } }, "css": { "title": "CSS configuration", "description": "https://github.com/factorial-io/drupal-breakpoints-css", "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean" }, "path": { "type": "string" }, "element": { "type": "string" }, "customMedia": { "type": "boolean" }, "customProperty": { "type": "boolean" } } }, "options": { "title": "Toggle available extraction options", "description": "https://github.com/factorial-io/drupal-breakpoints-css", "type": "object", "additionalProperties": false, "properties": { "mediaQuery": { "type": "boolean" }, "resolution": { "type": "boolean" }, "minWidth": { "type": "boolean" }, "maxWidth": { "type": "boolean" } } }, "prettier": { "title": "Prettier options", "description": "https://github.com/factorial-io/drupal-breakpoints-css", "type": "object", "additionalProperties": false, "properties": { "configPath": { "type": "string" } } } } }
factorial-drupal-breakpoints-css-0
{ "additionalProperties": true, "description": "Schema for an Optimizely X summary context", "properties": { "experimentId": { "maximum": 9223372036854776000, "minimum": 0, "type": [ "integer", "null" ] }, "variation": { "maximum": 9223372036854776000, "minimum": 0, "type": [ "integer", "null" ] }, "variationName": { "maxLength": 255, "type": [ "string", "null" ] }, "visitorId": { "maxLength": 100, "type": [ "string", "null" ] } }, "self": { "format": "jsonschema", "name": "summary", "vendor": "com.optimizely.optimizelyx", "version": "1-0-0" }, "type": "object" }
sp_160_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "carrier": { "type": "string", "enum": [ "dhl", "ups", "dpd", "hermes", "gls" ], "description": "acronym of the carrier you want to use" }, "width": { "type": "number" }, "height": { "type": "number" }, "length": { "type": "number" }, "weight": { "type": "number" } }, "required": [ "carrier", "width", "height", "length", "weight" ], "additionalProperties": false }
o61082
{ "definitions": { "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" } }, "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", "null" ] }, "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", "null" ] } }, "type": "object" }
kb_626_Normalized
{ "description": "Execute an expression as a Workflow step.", "type": "object", "properties": { "class": { "type": "string" }, "expression": { "description": "The expression to execute. The expression must return a JSON object which\n\nmatches the output parameters of the ExpressionTool.", "anyOf": [ { "type": "string" }, { "type": "string", "enum": [ "ExpressionPlaceholder" ] } ] }, "outputs": { "description": "Defines the parameters representing the output of the process. May be\n\nused to generate and/or validate the output object.", "type": "array", "items": { "$ref": "#/definitions/ExpressionToolOutputParameter" } }, "id": { "description": "The unique identifier for this process object.", "type": "string" }, "inputs": { "description": "Defines the input parameters of the process. The process is ready to\n\nrun when all required input parameters are associated with concrete\n\nvalues. Input parameters include a schema for each parameter which is\n\nused to validate the input object. It may also be used to build a user\n\ninterface for constructing the input object.", "type": "array", "items": { "$ref": "#/definitions/InputParameter" } }, "requirements": { "description": "Declares requirements that apply to either the runtime environment or the\n\nworkflow engine that must be met in order to execute this process. If\n\nan implementation cannot satisfy all requirements, or a requirement is\n\nlisted which is not recognized by the implementation, it is a fatal\n\nerror and the implementation must not attempt to run the process,\n\nunless overridden at user option.", "type": "array", "items": { "$ref": "#/definitions/ProcessRequirement" } }, "hints": { "description": "Declares hints applying to either the runtime environment or the\n\nworkflow engine that may be helpful in executing this process. It is\n\nnot an error if an implementation cannot satisfy all hints, however\n\nthe implementation may report a warning.", "type": "array", "items": {} }, "label": { "description": "A short, human-readable label of this process object.", "type": "string" }, "doc": { "description": "A long, human-readable description of this process object.", "type": "string" }, "cwlVersion": { "$ref": "#/definitions/CWLVersion", "description": "CWL document version. Always required at the document root. Not\n\nrequired for a Process embedded inside another Process." } }, "required": [ "class", "expression", "outputs", "inputs" ], "definitions": { "ExpressionToolOutputParameter": { "type": "object", "properties": { "type": { "description": "Specify valid types of data that may be assigned to this parameter.", "anyOf": [ { "type": "string", "enum": [ "File" ] }, { "type": "string", "enum": [ "Directory" ] }, { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "string" ] }, { "$ref": "#/definitions/OutputRecordSchema" }, { "$ref": "#/definitions/OutputEnumSchema" }, { "$ref": "#/definitions/OutputArraySchema" }, { "type": "string" }, { "type": "array", "items": { "anyOf": [ { "type": "string", "enum": [ "File" ] }, { "type": "string", "enum": [ "Directory" ] }, { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "string" ] }, { "$ref": "#/definitions/OutputRecordSchema" }, { "$ref": "#/definitions/OutputEnumSchema" }, { "$ref": "#/definitions/OutputArraySchema" }, { "type": "string" } ] } } ] }, "id": { "description": "The unique identifier for this parameter object.", "type": "string" }, "outputBinding": { "$ref": "#/definitions/OutputBinding", "description": "Describes how to handle the outputs of a process." }, "secondaryFiles": { "description": "Only valid when `type: File` or is an array of `items: File`.\n\n\n\nDescribes files that must be included alongside the primary file(s).\n\n\n\nIf the value is an expression, the value of `self` in the expression\n\nmust be the primary input or output File to which this binding applies.\n\n\n\nIf the value is a string, it specifies that the following pattern\n\nshould be applied to the primary file:\n\n\n\n1. If string begins with one or more caret `^` characters, for each\n\ncaret, remove the last file extension from the path (the last\n\nperiod `.` and all following characters). If there are no file\n\nextensions, the path is unchanged.\n\n2. Append the remainder of the string to the end of the file path.", "anyOf": [ { "type": "string" }, { "type": "string", "enum": [ "ExpressionPlaceholder" ] }, { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "type": "string", "enum": [ "ExpressionPlaceholder" ] } ] } } ] }, "format": { "description": "Only valid when `type: File` or is an array of `items: File`.\n\n\n\nFor input parameters, this must be one or more IRIs of concept nodes\n\nthat represents file formats which are allowed as input to this\n\nparameter, preferrably defined within an ontology. If no ontology is\n\navailable, file formats may be tested by exact match.\n\n\n\nFor output parameters, this is the file format that will be assigned to\n\nthe output parameter.", "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } }, { "type": "string", "enum": [ "ExpressionPlaceholder" ] } ] }, "streamable": { "description": "Only valid when `type: File` or is an array of `items: File`.\n\n\n\nA value of `true` indicates that the file is read or written\n\nsequentially without seeking. An implementation may use this flag to\n\nindicate whether it is valid to stream file contents using a named\n\npipe. Default: `false`.", "type": "boolean" }, "doc": { "description": "A documentation string for this type, or an array of strings which should be concatenated.", "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "label": { "description": "A short, human-readable label of this object.", "type": "string" } }, "required": [ "id" ] }, "OutputRecordSchema": { "type": "object", "properties": { "fields": { "description": "Defines the fields of the record.", "type": "array", "items": { "$ref": "#/definitions/OutputRecordField" } }, "type": { "description": "Must be `record`", "type": "string", "enum": [ "record" ] }, "label": { "description": "A short, human-readable label of this object.", "type": "string" } }, "required": [ "type" ] }, "OutputRecordField": { "type": "object", "properties": { "outputBinding": { "$ref": "#/definitions/OutputBinding" }, "type": { "description": "The field type", "anyOf": [ { "type": "string", "enum": [ "File" ] }, { "type": "string", "enum": [ "Directory" ] }, { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "string" ] }, { "$ref": "#/definitions/OutputRecordSchema" }, { "$ref": "#/definitions/OutputEnumSchema" }, { "$ref": "#/definitions/OutputArraySchema" }, { "type": "string" }, { "type": "array", "items": { "anyOf": [ { "type": "string", "enum": [ "File" ] }, { "type": "string", "enum": [ "Directory" ] }, { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "string" ] }, { "$ref": "#/definitions/OutputRecordSchema" }, { "$ref": "#/definitions/OutputEnumSchema" }, { "$ref": "#/definitions/OutputArraySchema" }, { "type": "string" } ] } } ] }, "name": { "description": "The name of the field", "type": "string" }, "doc": { "description": "A documentation string for this field", "type": "string" } }, "required": [ "type", "name" ] }, "OutputBinding": { "type": "object", "properties": {} }, "OutputEnumSchema": { "type": "object", "properties": { "outputBinding": { "$ref": "#/definitions/OutputBinding" }, "type": { "description": "Must be `enum`", "type": "string", "enum": [ "enum" ] }, "symbols": { "description": "Defines the set of valid symbols.", "type": "array", "items": { "type": "string" } }, "label": { "description": "A short, human-readable label of this object.", "type": "string" } }, "required": [ "type", "symbols" ] }, "OutputArraySchema": { "type": "object", "properties": { "outputBinding": { "$ref": "#/definitions/OutputBinding" }, "items": { "description": "Defines the type of the array elements.", "anyOf": [ { "type": "string", "enum": [ "File" ] }, { "type": "string", "enum": [ "Directory" ] }, { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "string" ] }, { "$ref": "#/definitions/OutputRecordSchema" }, { "$ref": "#/definitions/OutputEnumSchema" }, { "$ref": "#/definitions/OutputArraySchema" }, { "type": "string" }, { "type": "array", "items": { "anyOf": [ { "type": "string", "enum": [ "File" ] }, { "type": "string", "enum": [ "Directory" ] }, { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "string" ] }, { "$ref": "#/definitions/OutputRecordSchema" }, { "$ref": "#/definitions/OutputEnumSchema" }, { "$ref": "#/definitions/OutputArraySchema" }, { "type": "string" } ] } } ] }, "type": { "description": "Must be `array`", "type": "string", "enum": [ "array" ] }, "label": { "description": "A short, human-readable label of this object.", "type": "string" } }, "required": [ "items", "type" ] }, "InputParameter": { "type": "object", "properties": { "id": { "description": "The unique identifier for this parameter object.", "type": "string" }, "inputBinding": { "$ref": "#/definitions/InputBinding", "description": "Describes how to handle the inputs of a process and convert them\n\ninto a concrete form for execution, such as command line parameters." }, "default": { "description": "The default value for this parameter if not provided in the input\n\nobject." }, "type": { "description": "Specify valid types of data that may be assigned to this parameter.", "anyOf": [ { "type": "string", "enum": [ "File" ] }, { "type": "string", "enum": [ "Directory" ] }, { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "string" ] }, { "$ref": "#/definitions/InputRecordSchema" }, { "$ref": "#/definitions/InputEnumSchema" }, { "$ref": "#/definitions/InputArraySchema" }, { "type": "string" }, { "type": "array", "items": { "anyOf": [ { "type": "string", "enum": [ "File" ] }, { "type": "string", "enum": [ "Directory" ] }, { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "string" ] }, { "$ref": "#/definitions/InputRecordSchema" }, { "$ref": "#/definitions/InputEnumSchema" }, { "$ref": "#/definitions/InputArraySchema" }, { "type": "string" } ] } } ] }, "secondaryFiles": { "description": "Only valid when `type: File` or is an array of `items: File`.\n\n\n\nDescribes files that must be included alongside the primary file(s).\n\n\n\nIf the value is an expression, the value of `self` in the expression\n\nmust be the primary input or output File to which this binding applies.\n\n\n\nIf the value is a string, it specifies that the following pattern\n\nshould be applied to the primary file:\n\n\n\n1. If string begins with one or more caret `^` characters, for each\n\ncaret, remove the last file extension from the path (the last\n\nperiod `.` and all following characters). If there are no file\n\nextensions, the path is unchanged.\n\n2. Append the remainder of the string to the end of the file path.", "anyOf": [ { "type": "string" }, { "type": "string", "enum": [ "ExpressionPlaceholder" ] }, { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "type": "string", "enum": [ "ExpressionPlaceholder" ] } ] } } ] }, "format": { "description": "Only valid when `type: File` or is an array of `items: File`.\n\n\n\nFor input parameters, this must be one or more IRIs of concept nodes\n\nthat represents file formats which are allowed as input to this\n\nparameter, preferrably defined within an ontology. If no ontology is\n\navailable, file formats may be tested by exact match.\n\n\n\nFor output parameters, this is the file format that will be assigned to\n\nthe output parameter.", "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } }, { "type": "string", "enum": [ "ExpressionPlaceholder" ] } ] }, "streamable": { "description": "Only valid when `type: File` or is an array of `items: File`.\n\n\n\nA value of `true` indicates that the file is read or written\n\nsequentially without seeking. An implementation may use this flag to\n\nindicate whether it is valid to stream file contents using a named\n\npipe. Default: `false`.", "type": "boolean" }, "doc": { "description": "A documentation string for this type, or an array of strings which should be concatenated.", "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "label": { "description": "A short, human-readable label of this object.", "type": "string" } }, "required": [ "id" ] }, "InputBinding": { "type": "object", "properties": { "loadContents": { "description": "Only valid when `type: File` or is an array of `items: File`.\n\n\n\nRead up to the first 64 KiB of text from the file and place it in the\n\n\"contents\" field of the file object for use by expressions.", "type": "boolean" } } }, "InputRecordSchema": { "type": "object", "properties": { "fields": { "description": "Defines the fields of the record.", "type": "array", "items": { "$ref": "#/definitions/InputRecordField" } }, "type": { "description": "Must be `record`", "type": "string", "enum": [ "record" ] }, "label": { "description": "A short, human-readable label of this object.", "type": "string" } }, "required": [ "type" ] }, "InputRecordField": { "type": "object", "properties": { "inputBinding": { "$ref": "#/definitions/InputBinding" }, "label": { "description": "A short, human-readable label of this process object.", "type": "string" }, "type": { "description": "The field type", "anyOf": [ { "type": "string", "enum": [ "File" ] }, { "type": "string", "enum": [ "Directory" ] }, { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "string" ] }, { "$ref": "#/definitions/InputRecordSchema" }, { "$ref": "#/definitions/InputEnumSchema" }, { "$ref": "#/definitions/InputArraySchema" }, { "type": "string" }, { "type": "array", "items": { "anyOf": [ { "type": "string", "enum": [ "File" ] }, { "type": "string", "enum": [ "Directory" ] }, { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "string" ] }, { "$ref": "#/definitions/InputRecordSchema" }, { "$ref": "#/definitions/InputEnumSchema" }, { "$ref": "#/definitions/InputArraySchema" }, { "type": "string" } ] } } ] }, "name": { "description": "The name of the field", "type": "string" }, "doc": { "description": "A documentation string for this field", "type": "string" } }, "required": [ "type", "name" ] }, "InputEnumSchema": { "type": "object", "properties": { "inputBinding": { "$ref": "#/definitions/InputBinding" }, "type": { "description": "Must be `enum`", "type": "string", "enum": [ "enum" ] }, "symbols": { "description": "Defines the set of valid symbols.", "type": "array", "items": { "type": "string" } }, "label": { "description": "A short, human-readable label of this object.", "type": "string" } }, "required": [ "type", "symbols" ] }, "InputArraySchema": { "type": "object", "properties": { "inputBinding": { "$ref": "#/definitions/InputBinding" }, "items": { "description": "Defines the type of the array elements.", "anyOf": [ { "type": "string", "enum": [ "File" ] }, { "type": "string", "enum": [ "Directory" ] }, { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "string" ] }, { "$ref": "#/definitions/InputRecordSchema" }, { "$ref": "#/definitions/InputEnumSchema" }, { "$ref": "#/definitions/InputArraySchema" }, { "type": "string" }, { "type": "array", "items": { "anyOf": [ { "type": "string", "enum": [ "File" ] }, { "type": "string", "enum": [ "Directory" ] }, { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "string" ] }, { "$ref": "#/definitions/InputRecordSchema" }, { "$ref": "#/definitions/InputEnumSchema" }, { "$ref": "#/definitions/InputArraySchema" }, { "type": "string" } ] } } ] }, "type": { "description": "Must be `array`", "type": "string", "enum": [ "array" ] }, "label": { "description": "A short, human-readable label of this object.", "type": "string" } }, "required": [ "items", "type" ] }, "ProcessRequirement": { "description": "A process requirement declares a prerequisite that may or must be fulfilled\n\nbefore executing a process. See [`Process.hints`](#process) and\n\n[`Process.requirements`](#process).\n\n\n\nProcess requirements are the primary mechanism for specifying extensions to\n\nthe CWL core specification.", "type": "object", "properties": {} }, "CWLVersion": { "type": "string", "enum": [ "v1.0" ] } }, "$schema": "http://json-schema.org/draft-04/schema#" }
o69214
{ "properties": { "attendees": { "description": "The attendees of the event", "items": { "type": "string" }, "type": "array" }, "end_time": { "description": "The end time of the event", "format": "date-time", "type": "string" }, "location": { "description": "The location of the event", "type": "string" }, "start_time": { "description": "The start time of the event", "format": "date-time", "type": "string" }, "title": { "description": "The title of the event", "type": "string" } }, "required": [ "title", "start_time", "end_time" ], "type": "object" }
create_calendar_event_256ec386
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "description": "A unique identifier for the asset_file.json" }, "type": { "type": "string", "description": "The json_api type for any asset_file.json", "pattern": "^asset_files$" }, "attributes": { "type": "object", "properties": { "meta_attributes": { "type": "object", "description": "Description for meta_attributes" }, "updated_at": { "type": "string", "description": "Description for updated_at" }, "created_at": { "type": "string", "description": "Description for created_at" }, "deleted_at": { "type": "null", "description": "Description for deleted_at" }, "name": { "type": "string", "description": "Description for name" }, "reference": { "type": "string", "description": "Description for reference" }, "asset_file": { "type": "string", "description": "Description for asset_file" }, "file_content_filename": { "type": "string", "description": "Description for file_content_filename" }, "file_content_content_type": { "type": "string", "description": "Description for file_content_content_type" }, "file_content_size": { "type": "number", "description": "Description for file_content_size" }, "image_height": { "type": "number", "description": "Description for image_height" }, "image_width": { "type": "number", "description": "Description for image_width" }, "s3_url": { "type": "string", "description": "Description for s3_url" } } }, "relationships": { "type": "object", "properties": { "asset_folder": { "type": "object", "properties": { "links": { "type": "object", "properties": { "self": { "type": "string" }, "related": { "type": "string" } }, "additionalProperties": false }, "data": { "oneOf": [ { "type": "object", "description": "The id and type form a pointer into the 'included' top level document property", "properties": { "id": { "type": "string" }, "type": { "type": "string" } }, "additionalProperties": false }, { "type": "array", "items": { "type": "object", "description": "The id and type form a pointer into the 'included' top level document property", "properties": { "id": { "type": "string" }, "type": { "type": "string" } }, "additionalProperties": false } } ] }, "meta": { "type": "object", "additionalProperties": true } } } } }, "links": { "type": "object", "properties": { "self": { "type": "string" } }, "additionalProperties": false }, "meta": { "type": "object", "additionalProperties": false } }, "definitions": {} }
o75282
{ "properties": { "has_digits": { "description": "Whether the password should contain digits", "type": "boolean" }, "has_lowercase": { "description": "Whether the password should contain lowercase letters", "type": "boolean" }, "has_special_characters": { "description": "Whether the password should contain special characters", "type": "boolean" }, "has_uppercase": { "description": "Whether the password should contain uppercase letters", "type": "boolean" }, "length": { "description": "The length of the password", "type": "integer" } }, "required": [ "length" ], "type": "object" }
generate_password_d68d3a4c
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "status": { "type": "string", "enum": [ "active", "inactive" ] }, "description": { "type": "string", "maxLength": 32767 }, "certificate": { "type": "string", "maxLength": 32767, "minLength": 50 }, "filterType": { "oneOf": [ { "type": "string", "enum": [ "all", "whitelist", "blacklist" ] }, { "type": "string", "enum": [ "none" ] } ] }, "pubTopics": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 1024 } }, "subTopics": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 1024 } } }, "additionalProperties": false }
o9774
{ "definitions": { "patient": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "dob": { "description": "The patients date of birth", "example": "2012-01-01T12:00:00Z", "format": "date-time", "type": [ "string" ] }, "email": { "description": "The patients email", "example": "[email protected]", "type": [ "string" ] }, "first_name": { "description": "The first name of the patient", "example": "Gorby", "type": [ "string" ] }, "guid": { "description": "unique identifier of patient", "example": "adsgjh2352462cah23jh23asd4avb", "format": "uuid", "type": [ "string" ] }, "id": { "description": "internal ID of the patient", "example": 4, "type": [ "integer" ] }, "identity": { "$ref": "#/definitions/patient/definitions/guid" }, "last_name": { "description": "The last name of the patient", "example": "Puff", "type": [ "string" ] }, "middle_name": { "description": "The middle name of the patient", "example": "Puffy", "type": [ "string" ] }, "nickname": { "description": "The patients preferred nickname", "example": "Ser Gorbechov Puff Puff the Third", "type": [ "string" ] } }, "description": "Resource for creating a patient.", "links": [ { "description": "Create a new patient.", "href": "/patients", "method": "POST", "rel": "create", "schema": { "properties": { "guid": { "$ref": "#/definitions/patient/definitions/guid" } }, "type": [ "object" ] }, "title": "Create" }, { "description": "Search for a patient via first or last name", "href": "/patients/actions/autocomplete", "method": "GET", "rel": "instances", "schema": { "properties": { "practice_id": { "description": "The practice_id to narrow the query down by", "example": 4, "type": [ "integer" ] }, "query": { "description": "part of the patients first, last, middle, or nickname, at least 3 characters", "example": "Gorb", "type": [ "string" ] } }, "required": [ "practice_id", "query" ] }, "title": "Autocomplete" } ], "properties": { "dob": { "$ref": "#/definitions/patient/definitions/dob" }, "email": { "$ref": "#/definitions/patient/definitions/email" }, "first_name": { "$ref": "#/definitions/patient/definitions/first_name" }, "guid": { "$ref": "#/definitions/patient/definitions/guid" }, "id": { "$ref": "#/definitions/patient/definitions/id" }, "last_name": { "$ref": "#/definitions/patient/definitions/last_name" }, "middle_name": { "$ref": "#/definitions/patient/definitions/middle_name" }, "nickname": { "$ref": "#/definitions/patient/definitions/nickname" } }, "title": "Patient Resource", "type": [ "object" ] } }, "description": "Patients API v3", "links": [ { "href": "https://production.icisapp.com/api/patients/v3", "rel": "self" } ], "properties": { "patient": { "$ref": "#/definitions/patient" } }, "title": "Patients API v3", "type": [ "object" ] }
o7517
{ "$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" }, "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" }, "change_history": { "$ref": "#/definitions/change_history" }, "image": { "$ref": "#/definitions/image" } }, "required": [ "body", "image" ], "type": "object" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "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" }, "govuk_request_id": { "type": [ "string", "null" ] }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "guid_list": { "items": { "$ref": "#/definitions/guid" }, "type": "array", "_uniqueItems": true }, "image": { "additionalProperties": false, "properties": { "alt_text": { "type": "string" }, "caption": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "credit": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "high_resolution_url": { "_format": "uri", "description": "URL to a high resolution version of the image, for use by third parties such as Twitter, Facebook or Slack. Used by the machine readable metadata component. Don't use this on user-facing web pages, as it might be very large.", "type": "string" }, "url": { "_format": "uri", "description": "URL to the image. The image should be in a suitable resolution for display on the page.", "type": "string" } }, "required": [ "url" ], "type": "object" }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "payload_version": { "description": "Counter to indicate when the payload was generated", "type": "integer" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "route": { "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } }, "required": [ "path", "type" ], "type": "object" }, "routes": { "items": { "$ref": "#/definitions/route" }, "minItems": 1, "type": "array" }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] }, "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" }, "content_purpose_document_supertype": { "description": "DEPRECATED. Use `content_purpose_subgroup`.", "type": "string" }, "content_purpose_subgroup": { "description": "Document subgroup grouping documents by purpose. Narrows down the purpose defined in content_purpose_supergroup.", "type": "string" }, "content_purpose_supergroup": { "description": "Document supergroup grouping documents by a purpose", "type": "string" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "take_part" ], "type": "string" }, "email_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "expanded_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" }, "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" }, "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", "description": "All organisations linked to this content item. This should include lead organisations." }, "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", "description": "The parent content item.", "maxItems": 1 }, "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_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" }, "topics": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "government_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "govuk_request_id": { "$ref": "#/definitions/govuk_request_id" }, "links": { "additionalProperties": false, "properties": { "facet_groups": { "$ref": "#/definitions/guid_list", "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/guid_list", "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/guid_list", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/guid_list", "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." }, "mainstream_browse_pages": { "$ref": "#/definitions/guid_list", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/guid_list", "description": "The user needs this piece of content meets." }, "ordered_related_items": { "$ref": "#/definitions/guid_list", "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/guid_list", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/guid_list", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/guid_list", "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/guid_list", "description": "The parent content item.", "maxItems": 1 }, "policy_areas": { "$ref": "#/definitions/guid_list", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/guid_list", "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 }, "suggested_ordered_related_items": { "$ref": "#/definitions/guid_list", "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/guid_list", "description": "Prototype-stage taxonomy label for this content item" }, "topics": { "$ref": "#/definitions/guid_list", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "navigation_document_supertype": { "description": "Document type grouping powering the new taxonomy-based navigation pages", "type": "string" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "payload_version": { "$ref": "#/definitions/payload_version" }, "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": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "redirects": { "additionalItems": false, "items": {}, "type": "array" }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "enum": [ "take_part" ], "type": "string" }, "search_user_need_document_supertype": { "description": "Document supertype grouping core and government documents", "type": "string" }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" }, "user_journey_document_supertype": { "description": "Document type grouping powering analytics of user journeys", "type": "string" }, "user_need_document_supertype": { "description": "DEPRECATED. Use `content_purpose_document_supertype`.", "type": "string" }, "withdrawn_notice": { "$ref": "#/definitions/withdrawn_notice" } }, "required": [ "analytics_identifier", "base_path", "content_id", "description", "details", "document_type", "email_document_supertype", "expanded_links", "first_published_at", "government_document_supertype", "govuk_request_id", "links", "locale", "navigation_document_supertype", "payload_version", "phase", "public_updated_at", "publishing_app", "redirects", "rendering_app", "routes", "schema_name", "title", "update_type", "user_journey_document_supertype" ], "type": "object" }
o21396
{ "properties": { "cuisine": { "description": "The cuisine type user prefers", "type": "string" }, "dietary_restrictions": { "description": "The user's dietary restrictions", "items": { "type": "string" }, "type": "array" }, "ingredients": { "description": "The ingredients available for cooking", "items": { "type": "string" }, "type": "array" }, "meal_type": { "description": "The type of meal (breakfast, lunch, dinner)", "type": "string" } }, "required": [ "cuisine", "ingredients" ], "type": "object" }
get_recipe_11750e82
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_RollingUpdateDeployment": { "description": "Spec to control the desired behavior of rolling update.", "properties": { "maxSurge": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods." }, "maxUnavailable": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "description": "DeploymentStrategy describes how to replace existing pods with new ones.", "properties": { "rollingUpdate": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_RollingUpdateDeployment", "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate." }, "type": { "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.", "type": [ "string", "null" ] } }, "type": "object" }
kb_283_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" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_4717c896
{ "$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": [ "EiffelTestExecutionRecipeCollectionCreatedEvent" ] }, "version": { "type": "string", "enum": [ "4.0.0" ], "default": "4.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": { "authorIdentity": { "type": "string" }, "integrityProtection": { "type": "object", "properties": { "signature": { "type": "string" }, "alg": { "type": "string", "enum": [ "HS256", "HS384", "HS512", "RS256", "RS384", "RS512", "ES256", "ES384", "ES512", "PS256", "PS384", "PS512" ] }, "publicKey": { "type": "string" } }, "required": [ "signature", "alg" ], "additionalProperties": false }, "sequenceProtection": { "type": "array", "items": { "type": "object", "properties": { "sequenceName": { "type": "string" }, "position": { "type": "integer" } }, "additionalProperties": false, "required": [ "sequenceName", "position" ] } } }, "additionalProperties": false, "required": [ "authorIdentity" ] } }, "required": [ "id", "type", "version", "time" ], "additionalProperties": false }, "data": { "type": "object", "properties": { "selectionStrategy": { "type": "object", "properties": { "tracker": { "type": "string" }, "id": { "type": "string" }, "uri": { "type": "string" } }, "required": [ "id" ], "additionalProperties": false }, "batchesUri": { "type": "string" }, "batches": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "priority": { "type": "integer" }, "recipes": { "type": "array", "items": { "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}$" }, "testCase": { "type": "object", "properties": { "tracker": { "type": "string" }, "id": { "type": "string" }, "uri": { "type": "string" } }, "required": [ "id" ], "additionalProperties": false }, "constraints": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": {} }, "required": [ "key", "value" ], "additionalProperties": false } } }, "required": [ "id", "testCase" ], "additionalProperties": false } }, "dependencies": { "type": "array", "items": { "type": "object", "properties": { "dependent": { "type": "string" }, "dependency": { "type": "string" } }, "required": [ "dependent", "dependency" ], "additionalProperties": false } } }, "required": [ "priority", "recipes" ], "additionalProperties": false } }, "customData": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": {} }, "required": [ "key", "value" ], "additionalProperties": false } } }, "required": [ "selectionStrategy" ], "additionalProperties": false }, "links": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "target": { "type": "string" } }, "required": [ "type", "target" ], "additionalProperties": false } } }, "required": [ "meta", "data", "links" ], "additionalProperties": false }
o5413
{ "properties": { "category": { "description": "The category or type of events to retrieve", "type": "string" }, "date_range": { "properties": { "end_date": { "description": "The end date of the event range", "type": "string" }, "start_date": { "description": "The start date of the event range", "type": "string" } }, "type": "object" }, "location": { "description": "The city or region to get events from", "type": "string" } }, "required": [ "location" ], "type": "object" }
get_local_events_16cae7a1
{ "additionalProperties": false, "description": "Schema for a context generated by the YAUAA enrichment after parsing the user agent", "properties": { "agentBuild": { "maxLength": 100, "type": "string" }, "agentClass": { "description": "See https://yauaa.basjes.nl/README-Output.html", "enum": [ "Browser", "Browser Webview", "Mobile App", "Robot", "Robot Mobile", "Cloud Application", "Email Client", "Voice", "Special", "Testclient", "Hacker", "Unknown" ] }, "agentInformationEmail": { "_format": "email", "type": "string" }, "agentInformationUrl": { "type": "string" }, "agentLanguage": { "maxLength": 50, "type": "string" }, "agentLanguageCode": { "maxLength": 20, "type": "string" }, "agentName": { "description": "Example: Chrome.", "maxLength": 100, "type": "string" }, "agentNameVersion": { "maxLength": 200, "type": "string" }, "agentNameVersionMajor": { "maxLength": 120, "type": "string" }, "agentSecurity": { "enum": [ "Weak security", "Strong security", "Unknown", "Hacker" ], "type": "string" }, "agentUuid": { "type": "string" }, "agentVersion": { "maxLength": 100, "type": "string" }, "agentVersionMajor": { "maxLength": 20, "type": "string" }, "anonymized": { "type": "string" }, "carrier": { "type": "string" }, "deviceBrand": { "description": "Example: Google", "maxLength": 50, "type": "string" }, "deviceClass": { "description": "See https://yauaa.basjes.nl/README-Output.html", "enum": [ "Desktop", "Anonymized", "Unknown", "UNKNOWN", "Mobile", "Tablet", "Phone", "Watch", "Virtual Reality", "eReader", "Set-top box", "TV", "Game Console", "Handheld Game Console", "Voice", "Robot", "Robot Mobile", "Spy", "Hacker" ] }, "deviceCpu": { "maxLength": 50, "type": "string" }, "deviceCpuBits": { "maxLength": 20, "type": "string" }, "deviceFirmwareVersion": { "maxLength": 100, "type": "string" }, "deviceName": { "description": "Example: Google Nexus 6", "maxLength": 100, "type": "string" }, "deviceVersion": { "maxLength": 100, "type": "string" }, "facebookCarrier": { "type": "string" }, "facebookDeviceClass": { "maxLength": 1024, "type": "string" }, "facebookDeviceName": { "maxLength": 1024, "type": "string" }, "facebookDeviceVersion": { "type": "string" }, "facebookFBOP": { "type": "string" }, "facebookFBSS": { "type": "string" }, "facebookOperatingSystemName": { "type": "string" }, "facebookOperatingSystemVersion": { "type": "string" }, "gSAInstallationID": { "type": "string" }, "hackerAttackVector": { "type": "string" }, "hackerToolkit": { "type": "string" }, "iECompatibilityNameVersion": { "maxLength": 50, "type": "string" }, "iECompatibilityNameVersionMajor": { "maxLength": 70, "type": "string" }, "iECompatibilityVersion": { "maxLength": 100, "type": "string" }, "iECompatibilityVersionMajor": { "maxLength": 50, "type": "string" }, "koboAffiliate": { "type": "string" }, "koboPlatformId": { "type": "string" }, "layoutEngineBuild": { "maxLength": 100, "type": "string" }, "layoutEngineClass": { "description": "See https://yauaa.basjes.nl/README-Output.html", "enum": [ "Browser", "Mobile App", "Hacker", "Robot", "Unknown" ] }, "layoutEngineName": { "maxLength": 100, "type": "string" }, "layoutEngineNameVersion": { "maxLength": 150, "type": "string" }, "layoutEngineNameVersionMajor": { "maxLength": 120, "type": "string" }, "layoutEngineVersion": { "maxLength": 50, "type": "string" }, "layoutEngineVersionMajor": { "maxLength": 20, "type": "string" }, "networkType": { "type": "string" }, "operatingSystemClass": { "description": "See https://yauaa.basjes.nl/README-Output.html", "enum": [ "Desktop", "Mobile", "Cloud", "Embedded", "Game Console", "Hacker", "Anonymized", "Unknown" ] }, "operatingSystemName": { "description": "Examples: Linux, Android.", "maxLength": 100, "type": "string" }, "operatingSystemNameVersion": { "maxLength": 150, "type": "string" }, "operatingSystemVersion": { "maxLength": 50, "type": "string" }, "operatingSystemVersionBuild": { "maxLength": 100, "type": "string" }, "webviewAppName": { "type": "string" }, "webviewAppNameVersionMajor": { "maxLength": 50, "type": "string" }, "webviewAppVersion": { "type": "string" }, "webviewAppVersionMajor": { "maxLength": 50, "type": "string" } }, "required": [ "deviceClass" ], "self": { "format": "jsonschema", "name": "yauaa_context", "vendor": "nl.basjes", "version": "1-0-0" }, "type": "object" }
sp_408_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "nifti" ], "type": "object", "properties": { "nifti": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } } } }, "config": { "required": [ "save_derivatives", "save_outputs", "measurement" ], "type": "object", "properties": { "save_derivatives": { "default": false, "type": "boolean" }, "save_outputs": { "default": false, "type": "boolean" }, "measurement": { "default": "auto-detect", "enum": [ "auto-detect", "functional", "anatomy_t1w", "anatomy_t2w" ], "type": "string" } } } }, "title": "Invocation manifest for MRIQC: No-reference image quality metrics for quality assessment of MRI (v0.9.4)" }
o41331
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "chains", "object" ], "properties": { "object": { "type": "object", "required": [ "blockchain_index", "chains", "creation_timestamp", "data", "db_id", "initial_request_timestamp", "object_id" ], "properties": { "blockchain_index": { "type": "integer" }, "chains": { "type": "array", "minItems": 1 }, "creation_timestamp": { "type": "integer" }, "data": { "type": "string" }, "db_id": { "type": "integer" }, "initial_request_timestamp": { "type": "integer" }, "object_id": { "type": "string" } } }, "chains": { "type": "array", "minItems": 1 } } }
o9305
{ "id": "https://cdn.brytecore.com/packages/schemas/telephone.json", "$schema": "http://json-schema.org/draft-04/schema#", "description": "A set of telephone numbers", "type": "object", "properties": { "mobile": { "type": [ "string", "null" ] }, "work": { "type": [ "string", "null" ] }, "home": { "type": [ "string", "null" ] }, "fax": { "type": [ "string", "null" ] }, "direct": { "type": [ "string", "null" ] } } }
o2463
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string" }, "canonicalReleaseId": { "type": "string" }, "name": { "type": "string" } }, "required": [ "id", "canonicalReleaseId", "name" ] }
o42024
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "has_next": { "type": "boolean" }, "limit": { "type": "integer" }, "offset": { "type": "integer" }, "version_count_in_result": { "type": "integer" }, "total_version_count": { "type": "integer" }, "secure_data_version_summaries": { "type": "array", "items": { "type:": "object", "properties": { "id": { "type": "string" }, "sdbox_id": { "type": "string" }, "path": { "type": "string" }, "action": { "type": "string" }, "type": { "type": "string" }, "size_in_bytes": { "type": "integer" }, "version_created_by": { "type": "string" }, "version_created_ts": { "type": "string" }, "action_principal": { "type": "string" }, "action_ts": { "type": "string" } }, "required": [ "id", "sdbox_id", "path", "action", "type", "size_in_bytes", "version_created_by", "version_created_ts", "action_principal", "action_ts" ] } } }, "required": [ "has_next", "next_offset", "limit", "offset", "version_count_in_result", "total_version_count", "secure_data_version_summaries" ] }
o11795
{ "title": "fabric info", "$schema": "http://json-schema.org/draft-06/schema#", "type": "object", "additionalProperties": false, "required": [ "fabric_fq_name", "management_subnets", "loopback_subnets", "fabric_subnets", "fabric_asn_pool", "device_auth", "node_profiles", "device_count" ], "properties": { "fabric_fq_name": { "type": "array", "items": { "type": "string" } }, "fabric_display_name": { "type": "string" }, "management_subnets": { "type": "array", "items": { "type": "object", "description": "List of the management network subnets for the fabric", "additionalProperties": false, "required": [ "cidr", "gateway" ], "properties": { "cidr": { "type": "string", "pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$" }, "gateway": { "type": "string", "format": "ipv4" } } } }, "loopback_subnets": { "type": "array", "items": { "type": "string", "description": "List of the subnet prefixes that fabric device loopback ips can be allocated.", "pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$" } }, "fabric_subnets": { "type": "array", "items": { "type": "string", "description": "List of the subnet prefixes that could be carved out for the p2p networks between fabric devices.", "pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$" } }, "fabric_asn_pool": { "type": "array", "items": { "title": "eBGP ASN Pool for fabric underlay network", "type": "object", "description": "List of the ASN pools that could be used to configure the eBGP peers for the IP fabric", "properties": { "asn_min": { "type": "integer" }, "asn_max": { "type": "integer" } }, "required": [ "asn_min", "asn_max" ] } }, "overlay_ibgp_asn": { "type": "integer", "title": "iBGP ASN for Contrail overlay network", "default": 64512 }, "device_auth": { "title": "Device Auth", "type": "object", "additionalProperties": false, "required": [ "root_password" ], "properties": { "root_password": { "type": "string" } } }, "node_profiles": { "type": "array", "items": { "title": "Node profile", "type": "object", "description": "List of node profiles to be used by the fabric.", "additionalProperties": false, "properties": { "node_profile_name": { "type": "string" }, "serial_nums": { "type": "array", "description": "Optional list of serial numbers of fabric devices that we want to associate with this node profile.", "items": { "type": "string" } } }, "required": [ "node_profile_name" ] } }, "device_count": { "title": "Number of fabric devices", "type": "integer", "description": "Total number of devices in the fabric that needs to be zero-touch provisioned" } } }
o39200
{ "$id": "https://json.schemastore.org/vtesttree-schema.json", "$ref": "#/definitions/51e8/full", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "51e8": { "full": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Json schema for vtesttree.yaml files.", "type": "object", "required": ["version"], "oneOf": [ { "allOf": [ { "properties": { "version": { "const": "1.0.0" } } }, { "$ref": "#/definitions/7d33/full" } ] }, { "allOf": [ { "properties": { "version": { "const": "2.0.0" } } }, { "$ref": "#/definitions/407e/full" } ] } ] } }, "7d33": { "full": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Json schema for vtesttree.yaml files.", "type": "object", "additionalProperties": false, "required": ["version"], "properties": { "version": { "$ref": "#/definitions/2493/full" }, "test-tree": { "$ref": "#/definitions/3bf3/full" } } } }, "407e": { "full": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Json schema for vtesttree.yaml files.", "type": "object", "additionalProperties": false, "required": ["version"], "properties": { "version": { "$ref": "#/definitions/d088/full" }, "test-tree": { "$ref": "#/definitions/2956/full" } } } }, "2493": { "full": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Version", "description": "Json schema version for the vtesttree.yaml file. Acceptance criteria: equal major version, less/equal minor and patch version.", "const": "1.0.0", "type": "string", "examples": ["1.0.0"] } }, "3bf3": { "full": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Test tree", "description": "Definition of a test tree consisting of test groups, CAPL test cases and CAPL test sequences.", "type": "array", "items": { "$ref": "#/definitions/2512/full" } } }, "d088": { "full": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Version", "description": "Json schema version for the vtesttree.yaml file. Acceptance criteria: equal major version, less/equal minor and patch version.", "const": "2.0.0", "type": "string", "examples": ["2.0.0"] } }, "2956": { "full": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Test tree", "description": "Definition of a test tree consisting of test fixtures, CAPL test cases and CAPL test sequences.", "type": "array", "items": { "$ref": "#/definitions/98a6/full" } } }, "2512": { "full": { "description": "Element of a test tree or test group.", "oneOf": [ { "$ref": "#/definitions/f22c/full" }, { "$ref": "#/definitions/20d0/full" }, { "$ref": "#/definitions/7728/full" } ] } }, "98a6": { "full": { "description": "Element of a test tree or test fixture.", "oneOf": [ { "$ref": "#/definitions/f22c/full" }, { "$ref": "#/definitions/6ad0/full" }, { "$ref": "#/definitions/ee14/full" } ] } }, "f22c": { "full": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "CAPL test case", "description": "Definition of a call to a CAPL test case.", "type": "object", "required": ["capl-test-case"], "additionalProperties": false, "properties": { "capl-test-case": { "type": "string", "description": "Function name of the CAPL test case." }, "id": { "type": "string", "description": "Identifier of the CAPL test case." }, "title": { "type": "string", "description": "Title of the CAPL test case." }, "description": { "type": "string", "description": "Description of the CAPL test case." }, "params": { "$ref": "#/definitions/fd91/full" } } } }, "20d0": { "full": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "CAPL test sequence", "description": "Definition of a call to a CAPL test sequence.", "type": "object", "required": ["capl-test-sequence"], "additionalProperties": false, "properties": { "capl-test-sequence": { "type": "string", "description": "Function name of the CAPL test sequence." }, "title": { "type": "string", "description": "Title of the CAPL test sequence." }, "params": { "$ref": "#/definitions/fd91/full" } } } }, "7728": { "full": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Test group", "description": "Definition of a test group containing other test groups, CAPL test cases and CAPL test sequences.", "type": "object", "required": ["test-group"], "additionalProperties": false, "properties": { "test-group": { "type": "string", "description": "Name of the test group." }, "description": { "type": "string", "description": "Description of the test group." }, "elements": { "type": "array", "items": { "$ref": "#/definitions/2512/full" } } } } }, "6ad0": { "full": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "CAPL test sequence", "description": "Definition of a call to a CAPL test sequence.", "type": "object", "required": ["capl-test-sequence"], "additionalProperties": false, "properties": { "capl-test-sequence": { "type": "string", "description": "Function name of the CAPL test sequence." }, "title": { "type": "string", "description": "Title of the CAPL test sequence." }, "params": { "$ref": "#/definitions/fd91/full" } } } }, "ee14": { "full": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Test fixture", "description": "Definition of a test fixture containing other test fixtures, CAPL test cases and CAPL test sequences.", "type": "object", "required": ["test-fixture"], "additionalProperties": false, "properties": { "test-fixture": { "type": "string", "description": "Name of the test fixture." }, "description": { "type": "string", "description": "Description of the test fixture." }, "elements": { "type": "array", "items": { "$ref": "#/definitions/98a6/full" } } } } }, "fd91": { "full": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "CAPL parameter list", "description": "List of parameter values for a CAPL test case or CAPL test sequence.", "type": "array", "items": { "$ref": "#/definitions/8692/full" } } }, "8692": { "full": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "CAPL parameter", "description": "Parameter value for a CAPL test case or CAPL test sequence.", "anyOf": [ { "title": "Numeric Value", "type": "number" }, { "title": "String Value", "type": "string" } ] } } }, "title": "Json schema for vtesttree.yaml files.", "type": "object" }
vtesttree-schema
{ "additionalProperties": false, "description": "Zone Transfer Request", "properties": { "transfer_request": { "additionalProperties": false, "properties": { "created_at": { "description": "Date and time of Request creation", "format": "date-time", "readOnly": true, "type": "string" }, "description": { "description": "Description for the Request", "maxLength": 160, "type": [ "string", "null" ] }, "id": { "description": "Zone Transfer Request identifier", "pattern": "^([0-9a-fA-F]){8}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){12}$", "readOnly": true, "type": "string" }, "key": { "description": "Password used to complete the transfer", "maxLength": 160, "type": "string" }, "links": { "additionalProperties": false, "properties": { "self": { "format": "url", "type": "string" } }, "type": "object" }, "project_id": { "description": "Project identifier", "immutable": true, "maxLength": 36, "type": [ "string", "null" ] }, "status": { "description": "Zone Status", "enum": [ "ACTIVE", "PENDING", "DELETED", "ERROR", "COMPLETE" ], "readOnly": true, "type": "string" }, "target_project_id": { "description": "Tenant identifier", "maxLength": 160, "type": [ "string", "null" ] }, "updated_at": { "description": "Date and time of last Request modification", "format": "date-time", "readOnly": true, "type": [ "string", "null" ] }, "zone_id": { "description": "Zone identifier", "pattern": "^([0-9a-fA-F]){8}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){12}$", "readOnly": true, "type": "string" }, "zone_name": { "description": "Zone Name for the Request", "maxLength": 255, "readOnly": true, "type": [ "string", "null" ] } }, "required": [ "zone_id" ], "type": "object" } }, "required": [ "transfer_request" ], "title": "zone_transfer_request" }
o55357
{ "properties": { "destination": { "properties": { "latitude": { "description": "The latitude of the destination location", "type": "number" }, "longitude": { "description": "The longitude of the destination location", "type": "number" } }, "required": [ "latitude", "longitude" ], "type": "object" }, "source": { "properties": { "latitude": { "description": "The latitude of the source location", "type": "number" }, "longitude": { "description": "The longitude of the source location", "type": "number" } }, "required": [ "latitude", "longitude" ], "type": "object" } }, "required": [ "source", "destination" ], "type": "object" }
calculate_route_distance_fe15b2f9
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "required": [ "type", "properties" ], "properties": { "type": { "type": "string", "enum": [ "FeatureCollection" ] }, "properties": { "type": "object", "additionalProperties": false, "properties": { "sensor": { "type": "string", "description": "the name of an existing sensor resource" }, "name": { "type": "string" }, "description": { "type": "string" } } } } }
o39176
{ "$comment": "https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser", "$id": "https://json.schemastore.org/github-issue-config.json", "$schema": "http://json-schema.org/draft-07/schema#", "properties": { "blank_issues_enabled": { "description": "Specify whether allow blank issue creation\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser", "type": "boolean" }, "contact_links": { "title": "contact links", "description": "Contact links\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser", "type": "array", "minItems": 1, "items": { "type": "object", "required": ["name", "url", "about"], "properties": { "name": { "description": "A link title\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser", "type": "string", "minLength": 1, "examples": ["Sample name"] }, "url": { "description": "A link URL\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser", "type": "string", "pattern": "^https?://", "examples": ["https://sample/url"] }, "about": { "description": "A link description\nhttps://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser", "type": "string", "minLength": 1, "examples": ["Sample description"] } }, "additionalProperties": false } }, "additionalProperties": false }, "title": "GitHub issue template chooser config file schema", "type": "object" }
github-issue-config
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "extensions": { "type": "array", "description": "Extension points", "items": { "properties": { "type": { "type": "string" }, "order": { "type": "number" }, "title": { "type": "string" }, "options": { "type": "array", "items": { "properties": { "title": { "type": "string" }, "category": { "type": "string" } } } } }, "if": { "properties": { "type": { "const": "action" } } }, "then": { "properties": { "bindings": { "type": "array", "items": { "required": [ "shortcut" ], "properties": { "shortcut": { "type": "string", "pattern": "^[\\S]+(\\s[\\S]+)?$" }, "platform": { "type": "string" }, "keybindSets": { "type": "array", "items": { "type": "string", "enum": [ "devToolsDefault", "vsCode" ] } } } } } }, "anyOf": [ { "required": [ "title" ] }, { "required": [ "options" ], "properties": { "options": { "minItems": 1, "items": { "required": [ "title" ] } } } } ], "required": [ "category" ] } } }, "dependencies": { "type": "array", "items": { "type": "string" } }, "scripts": { "type": "array", "items": { "type": "string" } }, "modules": { "type": "array", "items": { "type": "string" } }, "resources": { "type": "array", "items": { "type": "string" } }, "skip_compilation": { "type": "array", "items": { "type": "string" } }, "experiment": { "type": "string" } }, "definitions": {} }
o3385
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "string": { "type": "string", "default": "" }, "object": { "type": "object", "additionalProperties": false, "properties": { "numA": { "type": "number", "default": 0 }, "numB": { "type": "number", "default": 0 } }, "required": [ "numA" ] } } }
o63981
{ "id": "http://schemas.triniti.io/json-schema/gdbots/pbjx/envelope/1-0-1.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-1" }, "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}$", "pbj": { "type": "uuid", "rule": "single" } }, "ok": { "type": "boolean", "default": true, "pbj": { "type": "boolean", "rule": "single" } }, "code": { "type": "integer", "default": 0, "minimum": 0, "maximum": 65535, "pbj": { "type": "small-int", "rule": "single" } }, "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 ], "pbj": { "type": "int-enum", "rule": "single" } }, "etag": { "type": "string", "pattern": "^[\\w\\.:-]+$", "pbj": { "type": "string", "rule": "single" } }, "error_name": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "string", "rule": "single" } }, "error_message": { "type": "string", "minLength": 0, "maxLength": 65535, "pbj": { "type": "text", "rule": "single" } }, "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, "pbj": { "type": "message-ref", "rule": "single" } }, "message": { "type": "object", "pbj": { "type": "message", "rule": "single" } }, "derefs": { "type": "object", "patternProperties": { "^[a-zA-Z_]{1}[\\w\\.:-]+$": { "type": "object" } }, "additionalProperties": false, "description": "Some pbjx operations (normally requests) can include \"dereferenced\" messages on the envelope to prevent the consumer from needing to make multiple HTTP requests. It is up to the consumer to make use of the dereferenced messages if/when they are provided.", "pbj": { "type": "message", "rule": "map" } } }, "required": [ "_schema", "envelope_id" ], "additionalProperties": false }
o82570
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle (if applicable)", "type": "number" }, "height": { "description": "The height of the triangle (if applicable)", "type": "number" }, "length": { "description": "The length of the rectangle (if applicable)", "type": "number" }, "radius": { "description": "The radius of the circle (if applicable)", "type": "number" }, "width": { "description": "The width of the rectangle (if applicable)", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of shape (circle, rectangle, triangle, etc.)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_851f4fbc
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "id": "physics_object", "properties": { "jet_type": { "enum": [ "AK4PF", "AK5PF", "AK6PF", "AK7PF", "AK8PF", "AK4Calo", "AK5Calo", "AK6Calo", "AK7Calo", "AK8Calo", "KT4PF", "KT5PF", "KT6PF", "KT7PF", "KT8PF", "KT4Calo", "KT5Calo", "KT6Calo", "KT7Calo", "KT8Calo" ], "type": "string", "title": "Jet type" }, "muon_type": { "enum": [ "PFMuon", "GlobalMuon", "TrackerMuon" ], "type": "string", "title": "Muon type" }, "photon_type": { "enum": [ "Photon", "Conversion" ], "type": "string", "title": "Photon type" }, "pt_cut": { "type": "number", "title": "pt cut" }, "sel_criteria": { "enum": [ "tight", "medium", "loose", "other" ], "type": "string", "title": "Selection Criteria" }, "met_type": { "enum": [ "PFMET", "CaloMET" ], "type": "string", "title": "MET type" }, "track_type": { "enum": [ "Heavy-Ion", "pp" ], "type": "string", "title": "Track type" }, "object": { "enum": [ "", "electron", "muon", "tau", "jet", "bjet", "photon", "track", "vertex", "MET", "HT" ], "type": "string", "title": "Object" }, "number": { "type": "object", "properties": { "number": { "type": "number", "title": "Number" }, "sign": { "default": "=", "enum": [ "<", ">", "=", "<=", ">=" ], "type": "string", "title": "<, >, =, <=, >=" } }, "title": "" }, "eta_cut": { "type": "number", "title": "eta cut" }, "pt_cut_max": { "type": "number", "title": "pt cut max" }, "electron_type": { "enum": [ "GsfElectron" ], "type": "string", "title": "Electron type" }, "eta_cut_max": { "type": "number", "title": "eta cut max" }, "tau_type": { "enum": [ "PFTau" ], "type": "string", "title": "Tau type" }, "eta_cut_min": { "type": "number", "title": "eta cut min" }, "pt_cut_min": { "type": "number", "title": "pt cut min" } } }
o66152
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricValueStatus": { "description": "MetricValueStatus holds the current value for a metric", "properties": { "averageUtilization": { "_format": "int32", "description": "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.", "type": "integer" }, "averageValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "averageValue is the current value of the average of the metric across all relevant pods (as a quantity)" }, "value": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "value is the current value of the metric (as a quantity)." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "description": "ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", "properties": { "current": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricValueStatus", "description": "current contains the current value for the given metric" }, "name": { "description": "Name is the name of the resource in question.", "type": [ "string", "null" ] } }, "required": [ "name", "current" ], "type": "object" }
kb_834_Normalized
{ "properties": { "point1": { "properties": { "lat": { "description": "The latitude of point1", "type": "number" }, "lng": { "description": "The longitude of point1", "type": "number" } }, "required": [ "lat", "lng" ], "type": "object" }, "point2": { "properties": { "lat": { "description": "The latitude of point2", "type": "number" }, "lng": { "description": "The longitude of point2", "type": "number" } }, "required": [ "lat", "lng" ], "type": "object" } }, "required": [ "point1", "point2" ], "type": "object" }
calculate_distance_7dba2565
{ "properties": { "kafka": { "description": "Rest proxy kafka service configuration", "properties": { "bootstrap_servers": { "default": "broker.confluent-kafka.l4lb.thisdcos.directory:9092", "description": "The name of the kafka bootstrapserver. Broker vip (for TLS it is broker-tls.confluent-kafka.l4lb.thisdcos.directory:9093) or comma separated list of broker dns names (like in the kerberos case). Note slahes in a kafka service name have to be removed.", "title": "Kafka bootstrap servers", "type": "string" }, "client_sasl_kerberos_service_name": { "default": "kafka", "description": "The Kerberos principal name that Kafka runs as. This can be defined either in Kafka's JAAS config or in Kafka's config.", "title": "Kafka client sasl kerberos service name", "type": "string" }, "client_sasl_mechanism": { "default": "GSSAPI", "description": "SASL mechanism used for client connections. This may be any mechanism for which a security provider is available. GSSAPI is the default mechanism.", "title": "Kafka client sasl mechanism", "type": "string" }, "client_security_protocol": { "default": "PLAINTEXT", "description": "Protocol used to communicate with brokers. Valid values are: PLAINTEXT, SSL, SASL_PLAINTEXT, SASL_SSL", "title": "Kafka client security protocol", "type": "string" }, "kerberos_enabled": { "default": false, "description": "Enable kerberos", "type": "boolean" }, "kerberos_jaas_secret": { "default": "jaas", "description": "Kerberos jaas secret containing jaas config", "title": "Kerberos jaas secret", "type": "string" }, "kerberos_keytab_secret": { "default": "__dcos_base64___keytab", "description": "Kerberos keytab secret containing keytab", "title": "Kerberos keytab secret", "type": "string" }, "kerberos_krb5_secret": { "default": "krb5", "description": "Kerberos krb5 secret containing krb5 config", "title": "Kerberos krb5 secret", "type": "string" }, "zookeeper_connect": { "default": "master.mesos:2181/dcos-service-confluent-kafka", "description": "... . Note slahes in a kafka service name have to be removed, all excpet the first get replaced by two underscores.", "title": "Zookeeper connect", "type": "string" } }, "required": [ "bootstrap_servers", "zookeeper_connect" ], "type": "object" }, "rest-proxy": { "description": "Rest proxy service configuration properties", "properties": { "access-control-allow-methods": { "default": "", "description": "Set value to Jetty Access-Control-Allow-Origin header for specified methods", "type": "string" }, "access-control-allow-origin": { "default": "", "description": "Set value for Jetty Access-Control-Allow-Origin header", "type": "string" }, "ciphers": { "default": "TLS_RSA_WITH_AES_128_GCM_SHA256,TLS_RSA_WITH_AES_128_CBC_SHA256,TLS_RSA_WITH_AES_256_GCM_SHA384,TLS_RSA_WITH_AES_256_CBC_SHA256,TLS_DHE_RSA_WITH_AES_128_GCM_SHA256,TLS_DHE_RSA_WITH_AES_128_CBC_SHA256,TLS_DHE_RSA_WITH_AES_256_GCM_SHA384,TLS_DHE_RSA_WITH_AES_256_CBC_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384", "description": "Comma-separated list of JSSE Cipher Suite Names", "type": "string" }, "cpus": { "default": 2, "description": "CPU shares to allocate to each rest-proxy instance.", "minimum": 2, "type": "number" }, "heap": { "default": 768, "description": "JVM heap allocation (in MB) for rest-proxy task; should be ~256MB less than total memory for the instance.", "minimum": 256, "type": "number" }, "instances": { "default": 1, "description": "Number of instances to run.", "minimum": 1, "type": "integer" }, "keystore_secret": { "default": "", "description": "Keystore secret.", "title": "Keystore secret", "type": "string" }, "listener_protocol": { "default": "http", "description": "Rest proxy listener protocol, http or https.", "title": "Rest proxy listener protocol", "type": "string" }, "mem": { "default": 1024, "description": "Memory (MB) to allocate to each rest-proxy instance.", "minimum": 512, "type": "number" }, "name": { "default": "rest-proxy", "description": "The name of the rest proxy service instance", "title": "Rest proxy service name", "type": "string" }, "role": { "default": "*", "description": "Deploy rest-proxy only on nodes with this role.", "type": "string" }, "ssl_client_auth": { "default": false, "description": "Used for HTTPS. Whether or not to require the HTTPS client to authenticate via the server's trust store.", "type": "boolean" }, "user": { "default": "nobody", "description": "The user that the service will run as.", "title": "User", "type": "string" }, "virtual_network_enabled": { "default": false, "description": "Enable virtual networking", "type": "boolean" }, "virtual_network_name": { "default": "dcos", "description": "The name of the virtual network to join", "type": "string" }, "virtual_network_plugin_labels": { "default": [], "description": "Labels to pass to the virtual network plugin (e.g., [{\"key\": \"key_1\", \"value\": \"value_1\"}, {\"key\": \"key_2\", \"value\": \"value_2\"}])", "items": { "properties": { "key": { "default": "", "type": "string" }, "value": { "default": "", "type": "string" } }, "type": "object" }, "type": "array" } }, "required": [ "name", "cpus", "mem", "instances" ], "type": "object" }, "schema-registry": { "description": "Rest proxy schema registry configuration", "properties": { "url": { "default": "http://schema-registry.marathon.l4lb.thisdcos.directory:8081", "description": "The base URL for the schema registry that should be used by the Avro serializer.", "title": "Schema registry url", "type": "string" } }, "required": [ "url" ], "type": "object" } }, "type": "object" }
o60297
{ "additionalProperties": false, "definitions": { "executor": { "additionalProperties": false, "properties": { "name": { "description": "This property indicates the executor name.", "title": "Executor name.", "type": "string" }, "path": { "_comment": "Add the pattern to match with the 'path'.", "description": "This property indicates the executor path relative to its URL.", "title": "Executor path.", "type": "string" }, "port": { "description": "This property indicates the port number open on this executor for the incoming connections.", "maximum": 65535, "minimum": 0, "title": "Connection port number.", "type": "number" }, "protocol": { "description": "This property indicates the protocol name to use for a connection with this Executor.", "enum": [ "ws", "http" ], "title": "Protocol name." }, "url": { "description": "This property indicates the executor URL to connect with it.", "oneOf": [ { "format": "hostname" }, { "format": "ipv4" }, { "format": "ipv6" } ], "title": "Executor URL.", "type": "string" }, "value": { "description": "This property indicates the option value.", "title": "Executor value.", "type": "string" } }, "required": [ "protocol", "url", "path", "port" ], "type": "object" }, "language": { "additionalProperties": false, "properties": { "name": { "description": "This property indicates the language name.", "title": "Language name.", "type": "string" }, "solvers": { "description": "This property indicates all supporting solvers for this language.", "items": { "$ref": "#/definitions/solver" }, "minItems": 1, "title": "Supporting solvers.", "type": "array" }, "syntax-highlighter": { "additionalProperties": false, "description": "This property indicates the syntax highlighter path corresponding to this language.", "properties": { "description": { "description": "This property indicates the syntax-highlighter description.", "title": "Syntax-Highlighter description.", "type": "string" }, "name": { "description": "This property indicates the syntax-highlighter name.", "title": "Syntax-Highlighter name.", "type": "string" }, "path": { "description": "This property indicates the syntax-highlighter file path.", "title": "Syntax-Highlighter path.", "type": "string" } }, "required": [ "name", "path" ], "title": "Syntax-Highlighter path.", "type": "object" }, "value": { "description": "This property indicates the language value used in communication with other services.", "title": "Language value.", "type": "string" } }, "required": [ "name", "value", "solvers" ], "type": "object" }, "solver": { "additionalProperties": false, "properties": { "executors": { "description": "This property indicates all supporting executors for this solver.", "items": { "$ref": "#/definitions/executor" }, "minItems": 1, "title": "Supporting executors.", "type": "array" }, "name": { "description": "This property indicates the solver name.", "title": "Solver name.", "type": "string" }, "options": { "description": "This property indicates the options supported by the solver.", "items": { "additionalProperties": false, "properties": { "description": { "description": "This property contains the description of the option.", "title": "Option description.", "type": "string" }, "name": { "description": "This property indicates the option name.", "title": "Option name.", "type": "string" }, "value": { "description": "This property indicates the command line argument passed to the solver.", "title": "Option value.", "type": "string" }, "word_argument": { "description": "This property indicates if this type of argument requires the second argument or it's just a word argument (this is just a flag).", "title": "Word argument.", "type": "boolean" } }, "required": [ "name", "value", "word_argument", "description" ], "type": "object" }, "minItems": 1, "title": "Solver option", "type": "array" }, "value": { "description": "This property indicates the solver value used in communication with other services.", "title": "Solver value.", "type": "string" } }, "required": [ "name", "value", "executors", "options" ], "type": "object" } }, "properties": { "languages": { "description": "This property indicates all the supported languages by the services avalable on the LoIDE Web Application.", "items": { "$ref": "#/definitions/language" }, "minItems": 1, "title": "Supported languages.", "type": "array" } }, "required": [ "languages" ], "self": { "format": "jsonschema", "name": "services", "vendor": "unical", "version": "1-0-0" } }
o4237
{ "definitions": { "AccountChangeAccountHolderType": { "properties": { "attachmentUuids": { "$ref": "#/definitions/AttachmentUuidsType" }, "authorizedByApplicant": { "$ref": "#/definitions/YesOrNoType" }, "authorizedByApplicantDate": { "$ref": "#/definitions/MMDDYYDateType" }, "authorizedBySpouse": { "$ref": "#/definitions/YesOrNoType" }, "birthDate": { "$ref": "#/definitions/MMDDYYDateType" }, "citizenship": { "$ref": "#/definitions/CitizenshipType" }, "gender": { "$ref": "#/definitions/GenderType" }, "mailingAddress": { "$ref": "#/definitions/AddressType" }, "name": { "$ref": "#/definitions/NameType" }, "phn": { "$ref": "#/definitions/PHNType" }, "requestedLastName": { "$ref": "#/definitions/SubNameType" }, "residenceAddress": { "$ref": "#/definitions/AddressType" }, "selectedAddRemove": { "$ref": "#/definitions/YesOrNoType" }, "selectedAddressChange": { "$ref": "#/definitions/YesOrNoType" }, "selectedPersonalInfoChange": { "$ref": "#/definitions/YesOrNoType" }, "selectedStatusChange": { "$ref": "#/definitions/YesOrNoType" }, "telephone": { "$ref": "#/definitions/TelephoneType" } }, "required": [ "name", "gender", "birthDate", "phn", "residenceAddress", "authorizedByApplicant", "authorizedByApplicantDate", "selectedAddressChange", "selectedPersonalInfoChange", "selectedAddRemove", "selectedStatusChange" ], "type": "object" }, "AccountChangeApplicationType": { "properties": { "accountHolder": { "$ref": "#/definitions/AccountChangeAccountHolderType" }, "children": { "$ref": "#/definitions/AccountChangeChildrenType" }, "spouses": { "$ref": "#/definitions/AccountChangeSpousesType" } }, "required": [ "accountHolder" ], "type": "object" }, "AccountChangeChildType": { "properties": { "adoptionDate": { "$ref": "#/definitions/MMDDYYDateType" }, "attachmentUuids": { "$ref": "#/definitions/AttachmentUuidsType" }, "birthDate": { "$ref": "#/definitions/MMDDYYDateType" }, "cancellationDate": { "$ref": "#/definitions/MMDDYYDateType" }, "cancellationReason": { "$ref": "#/definitions/CancellationReasonType" }, "citizenship": { "$ref": "#/definitions/CitizenshipType" }, "dateStudiesBegin": { "$ref": "#/definitions/MMDDYYDateType" }, "dateStudiesFinish": { "$ref": "#/definitions/MMDDYYDateType" }, "departDateSchoolOutside": { "$ref": "#/definitions/MMDDYYDateType" }, "gender": { "$ref": "#/definitions/GenderType" }, "isExistingBeneficiary": { "$ref": "#/definitions/YesOrNoType" }, "livedInBC": { "$ref": "#/definitions/LivedInBCType" }, "mailingAddress": { "$ref": "#/definitions/AddressType" }, "name": { "$ref": "#/definitions/NameType" }, "operationAction": { "$ref": "#/definitions/OperationActionType" }, "outsideBC": { "$ref": "#/definitions/OutsideBCType" }, "outsideBCinFuture": { "$ref": "#/definitions/OutsideBCType" }, "phn": { "$ref": "#/definitions/PHNType" }, "previousCoverage": { "$ref": "#/definitions/PreviousCoverageType" }, "schoolAddress": { "$ref": "#/definitions/AddressType" }, "schoolName": { "$ref": "#/definitions/SchoolNameType" }, "willBeAway": { "$ref": "#/definitions/WillBeAwayType" } }, "required": [ "name", "birthDate", "operationAction", "gender", "phn" ], "type": "object" }, "AccountChangeChildrenType": { "properties": { "child": { "$ref": "#/definitions/AccountChangeChildType" } }, "type": "array" }, "AccountChangeSpouseType": { "properties": { "attachmentUuids": { "$ref": "#/definitions/AttachmentUuidsType" }, "birthDate": { "$ref": "#/definitions/MMDDYYDateType" }, "cancellationDate": { "$ref": "#/definitions/MMDDYYDateType" }, "cancellationReason": { "$ref": "#/definitions/CancellationReasonType" }, "citizenship": { "$ref": "#/definitions/CitizenshipType" }, "gender": { "$ref": "#/definitions/GenderType" }, "livedInBC": { "$ref": "#/definitions/LivedInBCType" }, "mailingAddress": { "$ref": "#/definitions/AddressType" }, "marriageDate": { "$ref": "#/definitions/MMDDYYDateType" }, "name": { "$ref": "#/definitions/NameType" }, "outsideBC": { "$ref": "#/definitions/OutsideBCType" }, "outsideBCinFuture": { "$ref": "#/definitions/OutsideBCType" }, "phn": { "$ref": "#/definitions/PHNType" }, "previousCoverage": { "$ref": "#/definitions/PreviousCoverageType" }, "previousLastName": { "$ref": "#/definitions/SubNameType" }, "willBeAway": { "$ref": "#/definitions/WillBeAwayType" } }, "required": [ "name", "birthDate", "gender", "phn" ], "type": "object" }, "AccountChangeSpousesType": { "properties": { "addedSpouse": { "$ref": "#/definitions/AccountChangeSpouseType" }, "removedSpouse": { "$ref": "#/definitions/AccountChangeSpouseType" }, "updatedSpouse": { "$ref": "#/definitions/AccountChangeSpouseType" } }, "type": "object" }, "AddressType": { "properties": { "addressLine1": { "$ref": "#/definitions/SubAddressLineType" }, "addressLine2": { "$ref": "#/definitions/SubAddressLineType" }, "addressLine3": { "$ref": "#/definitions/SubAddressLineType" }, "city": { "$ref": "#/definitions/CityType" }, "country": { "$ref": "#/definitions/CountryType" }, "postalCode": { "$ref": "#/definitions/PostalCodeType" }, "provinceOrState": { "$ref": "#/definitions/ProvinceOrStateType" } }, "required": [ "addressLine1", "city", "postalCode", "provinceOrState", "country" ], "type": "object" }, "AssistanceApplicantType": { "properties": { "attachmentUuids": { "$ref": "#/definitions/AttachmentUuidsType" }, "birthDate": { "$ref": "#/definitions/MMDDYYDateType" }, "financials": { "$ref": "#/definitions/FinancialsType" }, "gender": { "$ref": "#/definitions/GenderType" }, "mailingAddress": { "$ref": "#/definitions/AddressType" }, "name": { "$ref": "#/definitions/NameType" }, "phn": { "$ref": "#/definitions/PHNType" }, "powerOfAttorney": { "$ref": "#/definitions/YesOrNoType" }, "sin": { "$ref": "#/definitions/SINType" }, "telephone": { "$ref": "#/definitions/TelephoneType" } }, "required": [ "name", "birthDate", "mailingAddress", "financials", "phn", "sin", "powerOfAttorney" ], "type": "object" }, "AssistanceApplicationType": { "properties": { "applicant": { "$ref": "#/definitions/AssistanceApplicantType" }, "authorizedByApplicant": { "$ref": "#/definitions/YesOrNoType" }, "authorizedByApplicantDate": { "$ref": "#/definitions/MMDDYYDateType" }, "authorizedBySpouse": { "$ref": "#/definitions/YesOrNoType" }, "spouse": { "$ref": "#/definitions/AssistanceSpouseType" } }, "required": [ "applicant", "authorizedByApplicant", "authorizedByApplicantDate", "authorizedBySpouse" ], "type": "object" }, "AssistanceSpouseType": { "properties": { "attachmentUuids": { "$ref": "#/definitions/AttachmentUuidsType" }, "birthDate": { "$ref": "#/definitions/MMDDYYDateType" }, "name": { "$ref": "#/definitions/NameType" }, "phn": { "$ref": "#/definitions/PHNType" }, "sin": { "$ref": "#/definitions/SINType" }, "spouseDeduction": { "type": "number" }, "spouseSixtyFiveDeduction": { "type": "number" } }, "required": [ "name", "birthDate", "phn", "sin" ], "type": "object" }, "AssistanceYearType": { "enum": [ "CurrentPA", "PreviousTwo", "MultiYear" ], "type": "string" }, "AttachmentType": { "properties": { "attachmentDocumentType": { "type": "string" }, "attachmentOrder": { "type": "string" }, "attachmentUuid": { "type": "string" }, "contentType": { "$ref": "#/definitions/ContentType" }, "description": { "type": "string" } }, "required": [ "contentType", "attachmentDocumentType", "attachmentUuid" ], "type": "object" }, "AttachmentUuidsType": { "items": { "type": "string" }, "minItems": 1, "type": "array" }, "AttachmentsType": { "items": { "attachment": { "$ref": "#/definitions/AttachmentType" } }, "type": "array" }, "BasicInfoType": { "properties": { "attachmentUuids": { "$ref": "#/definitions/AttachmentUuidsType" }, "birthDate": { "$ref": "#/definitions/MMDDYYDateType" }, "gender": { "$ref": "#/definitions/GenderType" }, "name": { "$ref": "#/definitions/NameType" } }, "required": [ "name", "birthDate" ], "type": "object" }, "CancellationReasonType": { "maxLength": 50, "type": "string" }, "CitizenshipStatus": { "properties": { "attachmentUuids": { "$ref": "#/definitions/AttachmentUuidsType" }, "citizenshipType": { "$ref": "#/definitions/CitizenshipType" } }, "required": [ "citizenshipType", "attachmentUuids" ], "type": "object" }, "CitizenshipType": { "enum": [ "CanadianCitizen", "PermanentResident", "WorkPermit", "StudyPermit", "Diplomat", "ReligiousWorker", "VisitorPermit" ], "type": "string" }, "CityType": { "maxLength": 25, "minLength": 1, "type": "string" }, "ContentType": { "enum": [ "image/jpeg", "application/pdf" ], "type": "string" }, "CountryType": { "maxLength": 30, "minLength": 1, "type": "string" }, "DependentType": { "properties": { "attachmentUuids": { "$ref": "#/definitions/AttachmentUuidsType" }, "birthDate": { "$ref": "#/definitions/MMDDYYDateType" }, "dateStudiesFinish": { "$ref": "#/definitions/MMDDYYDateType" }, "departDateSchoolOutside": { "$ref": "#/definitions/MMDDYYDateType" }, "gender": { "$ref": "#/definitions/GenderType" }, "name": { "$ref": "#/definitions/NameType" }, "residency": { "$ref": "#/definitions/ResidencyType" }, "schoolAddress": { "$ref": "#/definitions/AddressType" }, "schoolName": { "$ref": "#/definitions/SchoolNameType" } }, "required": [ "name", "gender", "birthDate", "schoolName", "schoolAddress", "residency", "attachmentUuids", "dateStudiesFinish", "departDateSchoolOutside" ], "type": "object" }, "EnrolmentApplicantType": { "properties": { "attachmentUuids": { "$ref": "#/definitions/AttachmentUuidsType" }, "authorizedByApplicant": { "$ref": "#/definitions/YesOrNoType" }, "authorizedByApplicantDate": { "$ref": "#/definitions/MMDDYYDateType" }, "authorizedBySpouse": { "$ref": "#/definitions/YesOrNoType" }, "birthDate": { "$ref": "#/definitions/MMDDYYDateType" }, "gender": { "$ref": "#/definitions/GenderType" }, "mailingAddress": { "$ref": "#/definitions/AddressType" }, "name": { "$ref": "#/definitions/NameType" }, "residenceAddress": { "$ref": "#/definitions/AddressType" }, "residency": { "$ref": "#/definitions/ResidencyType" }, "telephone": { "$ref": "#/definitions/TelephoneType" } }, "required": [ "name", "gender", "birthDate", "residenceAddress", "residency", "attachmentUuids", "authorizedByApplicant", "authorizedByApplicantDate", "authorizedBySpouse" ], "type": "object" }, "EnrolmentApplicationType": { "properties": { "applicant": { "$ref": "#/definitions/EnrolmentApplicantType" }, "children": { "$ref": "#/definitions/EnrolmentChildrenType" }, "dependents": { "$ref": "#/definitions/EnrolmentDependentsType" }, "spouse": { "$ref": "#/definitions/PersonType" } }, "required": [ "applicant" ], "type": "object" }, "EnrolmentChildrenType": { "items": { "child": { "$ref": "#/definitions/PersonType" } }, "type": "array" }, "EnrolmentDependentsType": { "items": { "child": { "$ref": "#/definitions/DependentType" } }, "type": "array" }, "FinancialsType": { "properties": { "adjustedNetIncome": { "type": "number" }, "assistanceYear": { "$ref": "#/definitions/AssistanceYearType" }, "childCareExpense": { "type": "number" }, "childDeduction": { "type": "number" }, "deductions": { "type": "number" }, "disabilityDeduction": { "type": "number" }, "disabilitySavingsPlan": { "type": "number" }, "netIncome": { "type": "number" }, "numChildren": { "type": "number" }, "numDisabled": { "type": "number" }, "numberOfTaxYears": { "$ref": "#/definitions/NumberOfTaxYearsType" }, "sixtyFiveDeduction": { "type": "number" }, "spouseDeduction": { "type": "number" }, "spouseNetIncome": { "type": "number" }, "spouseSixtyFiveDeduction": { "type": "number" }, "taxYear": { "$ref": "#/definitions/YearType" }, "totalDeductions": { "type": "number" }, "totalNetIncome": { "type": "number" }, "uccb": { "type": "number" } }, "required": [ "taxYear", "assistanceYear", "numberOfTaxYears", "netIncome", "totalNetIncome", "sixtyFiveDeduction", "deductions", "childDeduction", "totalDeductions", "adjustedNetIncome" ], "type": "object" }, "GenderType": { "pattern": "^[MF]$", "type": "string" }, "GroupNumberType": { "pattern": "^[0-9]*$", "type": "string" }, "InstitutionNameType": { "maxLength": 50, "type": "string" }, "LivedInBCType": { "properties": { "hasLivedInBC": { "$ref": "#/definitions/YesOrNoType" }, "isPermanentMove": { "$ref": "#/definitions/YesOrNoType" }, "prevHealthNumber": { "$ref": "#/definitions/PrevHealthNumberType" }, "prevProvinceOrCountry": { "$ref": "#/definitions/PrevProvinceOrCountryType" }, "recentBCMoveDate": { "$ref": "#/definitions/MMDDYYDateType" }, "recentCanadaMoveDate": { "$ref": "#/definitions/MMDDYYDateType" } }, "required": [ "hasLivedInBC" ], "type": "object" }, "MMDDYYDateType": { "pattern": "^[12][0-9]{3}-[01][0-9]-[0-9]{2}$", "type": "string" }, "NameType": { "properties": { "firstName": { "$ref": "#/definitions/SubNameType" }, "lastName": { "$ref": "#/definitions/SubNameType" }, "secondName": { "$ref": "#/definitions/SubNameType" } }, "required": [ "firstName", "lastName" ], "type": "object" }, "NumberOfTaxYearsType": { "pattern": "^[1-7]$", "type": "string" }, "OperationActionType": { "enum": [ "Add", "Remove", "Update" ], "type": "string" }, "OutsideBCType": { "properties": { "beenOutsideBCMoreThan": { "$ref": "#/definitions/YesOrNoType" }, "departureDate": { "$ref": "#/definitions/MMDDYYDateType" }, "destination": { "type": "string" }, "familyMemberReason": { "type": "string" }, "returnDate": { "$ref": "#/definitions/MMDDYYDateType" } }, "required": [ "beenOutsideBCMoreThan" ], "type": "object" }, "PHNType": { "pattern": "^[1-9]([0-9]{9})$", "type": "string" }, "PersonType": { "properties": { "attachmentUuids": { "$ref": "#/definitions/AttachmentUuidsType" }, "birthDate": { "$ref": "#/definitions/MMDDYYDateType" }, "gender": { "$ref": "#/definitions/GenderType" }, "name": { "$ref": "#/definitions/NameType" }, "residency": { "$ref": "#/definitions/ResidencyType" } }, "required": [ "name", "gender", "birthDate", "attachmentUuids", "residency" ], "type": "object" }, "PostalCodeType": { "maxLength": 25, "minLength": 5, "type": "string" }, "PrevHealthNumberType": { "maxLength": 50, "type": "string" }, "PrevProvinceOrCountryType": { "maxLength": 25, "type": "string" }, "PreviousCoverageType": { "properties": { "hasPreviousCoverage": { "$ref": "#/definitions/YesOrNoType" }, "prevPHN": { "$ref": "#/definitions/PHNType" } }, "required": [ "hasPreviousCoverage" ], "type": "object" }, "ProvinceOrStateType": { "maxLength": 25, "minLength": 1, "type": "string" }, "ResidencyType": { "properties": { "citizenshipStatus": { "$ref": "#/definitions/CitizenshipStatus" }, "livedInBC": { "$ref": "#/definitions/LivedInBCType" }, "outsideBC": { "$ref": "#/definitions/OutsideBCType" }, "outsideBCinFuture": { "$ref": "#/definitions/OutsideBCType" }, "previousCoverage": { "$ref": "#/definitions/PreviousCoverageType" }, "willBeAway": { "$ref": "#/definitions/WillBeAwayType" } }, "required": [ "citizenshipStatus", "previousCoverage", "livedInBC", "outsideBC", "willBeAway" ], "type": "object" }, "SINType": { "pattern": "^[0-9]([0-9]{8})$", "type": "string" }, "SchoolAddressType": { "maxLength": 50, "type": "string" }, "SchoolNameType": { "maxLength": 50, "type": "string" }, "SubAddressLineType": { "maxLength": 25, "type": "string" }, "SubNameType": { "maxLength": 30, "type": "string" }, "SupplementaryBenefitsApplicationType": { "properties": { "adjustedNetIncome": { "description": "Adjusted Net Income", "type": "number" }, "applicantAddressLine1": { "description": "Applicant Address Line 1", "maxLength": 25, "type": "string" }, "applicantAddressLine2": { "description": "Applicant Address Line 2", "maxLength": 25, "type": "string" }, "applicantAddressLine3": { "description": "Applicant Address Line 3", "maxLength": 25, "type": "string" }, "applicantAttendantCareExpense": { "description": "Applicant Attendant Care Expense", "type": "number" }, "applicantBirthdate": { "$ref": "#/definitions/MMDDYYDateType", "description": "Birthdate of Applicant" }, "applicantCity": { "description": "Applicant City", "maxLength": 25, "type": "string" }, "applicantCountry": { "description": "Applicant Country", "maxLength": 25, "type": "string" }, "applicantFirstName": { "description": "Applicant First Name", "maxLength": 30, "type": "string" }, "applicantGender": { "description": "Gender of Applicant", "pattern": "^[MF]$", "type": "string" }, "applicantLastName": { "description": "Applicant Last Name", "maxLength": 30, "type": "string" }, "applicantPHN": { "$ref": "#/definitions/PHNType", "description": "PHN of Applicant" }, "applicantPostalCode": { "description": "PostalCode of Applicant", "pattern": "^[V][0-9][ABCEGHJ-NPRSTV-Z][0-9][ABCEGHJ-NPRSTV-Z][0-9]$", "type": "string" }, "applicantProvinceOrState": { "description": "Applicant Province or State", "maxLength": 25, "type": "string" }, "applicantSIN": { "$ref": "#/definitions/SINType", "description": "SIN of Applicant" }, "applicantSecondName": { "description": "Applicant Middle Name", "maxLength": 30, "type": "string" }, "applicantTelephone": { "$ref": "#/definitions/TelephoneType", "description": "Telephone of Applicant" }, "assistanceYear": { "description": "Assistance Year", "pattern": "^[1-2]{1}[0-9]{3}$", "type": "string" }, "authorizedByApplicant": { "$ref": "#/definitions/YesOrNoType", "description": "Applicant authorization" }, "authorizedByApplicantDate": { "$ref": "#/definitions/MMDDYYDateType", "description": "Date of authorization" }, "authorizedBySpouse": { "$ref": "#/definitions/YesOrNoType", "description": "Spouse authorization" }, "childAttendantCareExpense": { "description": "Child Attendant Care Expense", "type": "number" }, "childCareExpense": { "description": "Child Care Expense", "type": "number" }, "childDeduction": { "description": "Child Deduction", "type": "number" }, "deductions": { "description": "Deductions", "type": "number" }, "disabilityDeduction": { "description": "Disability Deduction", "type": "number" }, "netIncomeLastYear": { "description": "Net Income Last Year", "type": "number" }, "numChildren": { "description": "Number of Children", "type": "number" }, "numDisabled": { "description": "Number of Disabled persons in care", "type": "number" }, "numberOfTaxYears": { "description": "Number of Tax Years", "type": "number" }, "powerOfAttorney": { "$ref": "#/definitions/YesOrNoType", "description": "Power of attorney" }, "reportedUCCBenefit": { "description": "Reported UCC Benefit Line 117", "type": "number" }, "sixtyFiveDeduction": { "description": "Sixty Five years age deduction", "type": "number" }, "spouseAttendantCareExpense": { "description": "Spouse Attendant Care Expense", "type": "number" }, "spouseBirthdate": { "$ref": "#/definitions/MMDDYYDateType", "description": "Birthdate of Spouse" }, "spouseDSPAmount": { "description": "Spouse DSP Amount Line 125", "type": "number" }, "spouseDeduction": { "description": "Spouse Deduction", "type": "number" }, "spouseFirstName": { "description": "Spouse First Name", "maxLength": 30, "type": "string" }, "spouseIncomeLine236": { "description": "Spouse Income line 236", "type": "number" }, "spouseLastName": { "description": "Spouse Last Name", "maxLength": 30, "type": "string" }, "spousePHN": { "$ref": "#/definitions/PHNType", "description": "PHN of Spouse" }, "spouseSIN": { "$ref": "#/definitions/SINType", "description": "SIN of Spouse" }, "spouseSecondName": { "description": "Spouse Middle Name", "maxLength": 30, "type": "string" }, "spouseSixtyFiveDeduction": { "description": "Spouse 65 years old deduction", "type": "number" }, "taxYear": { "description": "Tax Year", "pattern": "^[1-2]{1}[0-9]{3}$", "type": "string" }, "totalDeductions": { "description": "Total Deductions", "type": "number" }, "totalNetIncome": { "description": "Total Net Income", "type": "number" } }, "required": [ "applicantFirstName", "applicantLastName", "applicantBirthdate", "applicantPHN", "applicantSIN", "applicantAddressLine1", "applicantCity", "applicantProvinceOrState", "applicantCountry", "applicantPostalCode", "authorizedByApplicant", "authorizedByApplicantDate", "powerOfAttorney", "assistanceYear", "taxYear", "numberOfTaxYears", "adjustedNetIncome", "childDeduction", "deductions", "sixtyFiveDeduction", "totalDeductions", "totalNetIncome", "netIncomeLastYear" ], "type": "object" }, "TelephoneType": { "pattern": "^[2-9]([0-9]{9})$", "type": "string" }, "WillBeAwayType": { "properties": { "armedDischargeDate": { "$ref": "#/definitions/MMDDYYDateType" }, "armedForceInstitutionName": { "$ref": "#/definitions/InstitutionNameType" }, "isFullTimeStudent": { "$ref": "#/definitions/YesOrNoType" }, "isInBCafterStudies": { "$ref": "#/definitions/YesOrNoType" } }, "required": [ "isFullTimeStudent" ], "type": "object" }, "YearType": { "pattern": "^[1-2]([0-9]{3})$", "type": "string" }, "YesOrNoType": { "pattern": "^[YN]{1}$", "type": "string" } }, "properties": { "accountChangeApplication": { "$ref": "#/definitions/AccountChangeApplicationType" }, "assistanceApplication": { "$ref": "#/definitions/AssistanceApplicationType" }, "attachments": { "$ref": "#/definitions/AttachmentsType" }, "enrolmentApplication": { "$ref": "#/definitions/EnrolmentApplicationType" }, "supplementaryBenefitsApplication": { "$ref": "#/definitions/SupplementaryBenefitsApplicationType" }, "uuid": { "type": "string" } }, "required": [ "uuid", "attachments" ], "title": "Application", "type": "object", "version": "1.0.2" }
o25423
{ "properties": { "latitude_1": { "description": "The latitude of the first coordinate", "type": "number" }, "latitude_2": { "description": "The latitude of the second coordinate", "type": "number" }, "longitude_1": { "description": "The longitude of the first coordinate", "type": "number" }, "longitude_2": { "description": "The longitude of the second coordinate", "type": "number" } }, "required": [ "latitude_1", "longitude_1", "latitude_2", "longitude_2" ], "type": "object" }
calculate_distance_731540d9
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "email": { "type": "string", "format": "email", "maxLength": 1024 }, "role": { "type": "string", "enum": [ "admin", "edit", "view" ] }, "inviteDate": { "type": "string", "format": "date-time" }, "ttl": { "type": "number" }, "hasExpired": { "type": "boolean" } } } }
o6237
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "edgeDeploymentId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "deviceId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "deviceName": { "type": "string", "minLength": 1, "maxLength": 255 }, "flowId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "flowName": { "type": "string", "minLength": 1, "maxLength": 255 }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "currentVersion": { "type": [ "string", "null" ], "minLength": 1, "maxLength": 255 }, "desiredVersion": { "type": [ "string", "null" ], "minLength": 1, "maxLength": 255 }, "logs": { "type": "array", "items": { "type": "object", "properties": { "sourceType": { "type": "string", "enum": [ "flow", "user", "device", "apiToken", "notebook" ] }, "sourceId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "date": { "type": "string", "format": "date-time" }, "changeType": { "type": "string", "enum": [ "current", "desired" ] }, "newValue": { "type": [ "string", "null" ], "minLength": 1, "maxLength": 255 }, "previousValue": { "type": [ "string", "null" ], "minLength": 1, "maxLength": 255 }, "attemptedValue": { "type": [ "string", "null" ], "minLength": 1, "maxLength": 255 }, "error": { "type": "string" } } } } } }
o9852
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "typescript": { "description": "Is project written in Typescript or not", "type": "boolean" }, "exceptionHandlerNamespace": { "description": "Http server exception handler namespace", "type": "string" }, "assetsDriver": { "description": "The driver to use for assets bundling", "type": "string", "enum": ["encore", "vite", "fake"] }, "preloads": { "type": "array", "uniqueItems": true, "items": { "oneOf": [ { "type": "string" }, { "type": "object", "properties": { "file": { "type": "string" }, "environment": { "type": "array", "items": { "type": "string", "enum": ["web", "console", "test", "repl"] } }, "optional": { "type": "boolean" } }, "required": ["file"], "additionalProperties": false } ] } }, "metaFiles": { "type": "array", "items": { "uniqueItems": true, "oneOf": [ { "type": "string" }, { "type": "object", "properties": { "pattern": { "type": "string" }, "reloadServer": { "type": "boolean" } }, "required": ["pattern"] } ] } }, "commands": { "type": "array", "items": { "type": "string" } }, "providers": { "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "aceProviders": { "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "testProviders": { "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "directories": { "type": "object", "properties": { "config": { "type": "string" }, "public": { "type": "string" }, "contracts": { "type": "string" }, "providers": { "type": "string" }, "database": { "type": "string" }, "migrations": { "type": "string" }, "seeds": { "type": "string" }, "resources": { "type": "string" }, "views": { "type": "string" }, "start": { "type": "string" }, "tmp": { "type": "string" }, "tests": { "type": "string" } }, "additionalProperties": { "type": "string" } }, "commandsAliases": { "type": "object", "patternProperties": { "^.*$": { "type": "string" } } }, "aliases": { "type": "object", "patternProperties": { "^.*$": { "type": "string" } } }, "namespaces": { "type": "object", "properties": { "models": { "type": "string" }, "exceptions": { "type": "string" }, "middleware": { "type": "string" }, "httpControllers": { "type": "string" }, "eventListeners": { "type": "string" }, "redisListeners": { "type": "string" }, "validators": { "type": "string" } }, "additionalProperties": { "type": "string" } }, "tests": { "type": "object", "properties": { "suites": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "files": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "timeout": { "type": "number" } }, "required": ["name", "files"] } }, "timeout": { "type": "number" }, "forceExit": { "type": "boolean" } }, "required": ["suites"] } }, "required": ["typescript", "providers"] }
adonisrc
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Configuration for a JGroups channel.", "type": "object", "javaType": "com.xiantrimble.dropwizard.jgroups.config.ChannelConfiguration", "required": [ "stack" ], "properties": { "name": { "type": "string" }, "stack": { "type": "array", "items": { "type": "object", "description": "Protocol configuration with the additional properties providing the named properties.", "javaType": "com.xiantrimble.dropwizard.jgroups.config.Protocol", "properties": { "protocol": { "type": "string", "description": "The name of the protocol, with the same resolution rules as in the standard JGroups configuration." } } } } } }
o33831
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "dependency-type": { "type": "string", "enum": ["direct", "indirect", "all", "production", "development"], "x-intellij-enum-metadata": { "direct": { "description": "All explicitly defined dependencies." }, "indirect": { "description": "Dependencies of direct dependencies (also known as sub-dependencies, or transient dependencies)." }, "all": { "description": "All explicitly defined dependencies. For bundler, pip, composer, cargo, also the dependencies of direct dependencies." }, "production": { "description": "Only dependencies in the 'Product dependency group'." }, "development": { "description": "Only dependencies in the 'Development dependency group'." } } }, "update-types": { "type": "array", "items": { "type": "string", "enum": [ "version-update:semver-major", "version-update:semver-minor", "version-update:semver-patch" ] } }, "insecure-external-code-execution": { "type": "string", "enum": ["allow", "deny"] }, "versioning-strategy": { "type": "string", "enum": [ "lockfile-only", "auto", "widen", "increase", "increase-if-necessary" ], "x-intellij-enum-metadata": { "lockfile-only": { "description": "Only create pull requests to update lockfiles updates. Ignore any new versions that would require package manifest changes." }, "auto": { "description": "Follow the default strategy described above." }, "widen": { "description": "Relax the version requirement to include both the new and old version, when possible." }, "increase": { "description": "Always increase the version requirement to match the new version." }, "increase-if-necessary": { "description": "Increase the version requirement only when required by the new version." } } }, "package-ecosystem": { "type": "string", "enum": [ "bundler", "cargo", "composer", "docker", "elm", "gitsubmodule", "github-actions", "gomod", "gradle", "maven", "mix", "npm", "nuget", "pip", "pub", "terraform" ] }, "schedule-day": { "type": "string", "enum": [ "monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday" ] }, "schedule-interval": { "type": "string", "enum": ["daily", "weekly", "monthly"] }, "update": { "type": "object", "properties": { "allow": { "description": "Customize which updates are allowed", "type": "array", "items": { "type": "object", "properties": { "dependency-name": { "type": "string" }, "dependency-type": { "$ref": "#/definitions/dependency-type" } } } }, "assignees": { "description": "Assignees to set on pull requests", "type": "array", "items": { "type": "string" }, "minimum": 1 }, "commit-message": { "description": "Commit message preferences", "type": "object", "properties": { "prefix": { "type": "string" }, "prefix-development": { "type": "string" }, "include": { "type": "string", "enum": ["scope"], "default": "scope" } } }, "directory": { "description": "Location of package manifests", "type": "string", "default": "/" }, "ignore": { "description": "Ignore certain dependencies or versions", "type": "array", "items": { "type": "object", "properties": { "dependency-name": { "type": "string" }, "update-types": { "$ref": "#/definitions/update-types" }, "versions": { "type": "array", "items": { "type": "string" } } } } }, "insecure-external-code-execution": { "description": "Allow or deny code execution in manifest files", "$ref": "#/definitions/insecure-external-code-execution" }, "labels": { "description": "Labels to set on pull requests", "type": "array", "items": { "type": "string" }, "default": ["dependencies"] }, "milestone": { "description": "Milestone to set on pull requests", "anyOf": [ { "type": "string" }, { "type": "integer" } ] }, "open-pull-requests-limit": { "description": "Limit number of open pull requests for version updates", "type": "integer", "default": 5 }, "package-ecosystem": { "description": "Package manager to use", "$ref": "#/definitions/package-ecosystem" }, "pull-request-branch-name": { "description": "Pull request branch name preferences", "type": "object", "properties": { "separator": { "description": "Change separator for PR branch name", "type": "string", "default": "/", "enum": ["-", "_", "/"] } }, "required": ["separator"] }, "rebase-strategy": { "description": "Disable automatic rebasing", "type": "string", "enum": ["auto", "disabled"], "default": "auto" }, "reviewers": { "type": "array", "items": { "type": "string" }, "description": "Reviewers to set on pull requests", "minimum": 1 }, "schedule": { "description": "Schedule preferences", "type": "object", "properties": { "interval": { "$ref": "#/definitions/schedule-interval" }, "day": { "$ref": "#/definitions/schedule-day", "description": "Specify an alternative day to check for updates" }, "time": { "type": "string", "description": "Specify an alternative time of day to check for updates (format: hh:mm)" }, "timezone": { "type": "string", "description": "The time zone identifier must be from the Time Zone database maintained by IANA", "default": "05:00 UTC" } } }, "target-branch": { "type": "string", "description": "Branch to create pull requests against" }, "vendor": { "description": "Update vendored or cached dependencies", "type": "boolean" }, "versioning-strategy": { "description": "How to update manifest version requirements", "$ref": "#/definitions/versioning-strategy" } }, "required": ["package-ecosystem", "directory", "schedule"] }, "registry": { "type": "object", "title": "registries", "description": "The top-level registries key is optional. It allows you to specify authentication details that Dependabot can use to access private package registries.", "additionalProperties": false, "patternProperties": { ".*": { "type": "object", "additionalProperties": false, "properties": { "type": { "description": "Identifies the type of registry.", "enum": [ "composer-repository", "docker-registry", "git", "hex-organization", "hex-repository", "maven-repository", "npm-registry", "nuget-feed", "python-index", "rubygems-server", "terraform-registry" ] }, "url": { "description": "The URL to use to access the dependencies in this registry. The protocol is optional. If not specified, https:// is assumed. Dependabot adds or ignores trailing slashes as required.", "type": "string" }, "username": { "description": "The username that Dependabot uses to access the registry.", "type": "string" }, "password": { "description": "A reference to a Dependabot secret containing the password for the specified user.", "type": "string" }, "key": { "description": "A reference to a Dependabot secret containing an access key for this registry.", "type": "string" }, "token": { "description": "A reference to a Dependabot secret containing an access token for this registry.", "type": "string" }, "replaces-base": { "description": "For registries with type: python-index, if the boolean value is true, pip resolves dependencies by using the specified URL rather than the base URL of the Python Package Index (by default https://pypi.org/simple).", "type": "boolean" }, "organization": { "description": "", "type": "string" }, "repo": { "description": "", "type": "string" }, "auth-key": { "description": "", "type": "string" }, "public-key-fingerprint": { "description": "", "type": "string" } }, "required": ["type"] } } } }, "id": "https://json.schemastore.org/dependabot-2.0.json", "properties": { "version": { "anyOf": [ { "type": "string", "default": "2" }, { "type": "integer", "default": 2 } ] }, "enable-beta-ecosystems": { "description": "Enable ecosystems that have beta-level support", "type": "boolean" }, "updates": { "type": "array", "items": { "title": "Package Ecosystem", "description": "Element for each one package manager that you want GitHub Dependabot to monitor for new versions", "$ref": "#/definitions/update" } }, "registries": { "type": "object", "$ref": "#/definitions/registry" } }, "required": ["version", "updates"], "title": "GitHub Dependabot v2 config", "type": "object" }
dependabot-2
{ "title": "Invocation manifest for HCP: Diffusion Preprocessing Pipeline", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "config": { "type": "object", "properties": { "DWIName": { "type": "string", "default": "Diffusion" }, "FREESURFER_LICENSE": { "type": "string" }, "AnatomyRegDOF": { "type": "integer", "default": 6, "enum": [ 6, 12 ] }, "dry-run": { "type": "boolean", "default": false }, "save-on-error": { "type": "boolean", "default": false } }, "required": [ "DWIName", "AnatomyRegDOF", "dry-run", "save-on-error" ] }, "inputs": { "type": "object", "properties": { "StructZip": { "type": "object", "properties": { "type": { "enum": [ "archive" ] } } }, "FreeSurferLicense": { "type": "object", "properties": {} }, "DWIPositiveData": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "DWIPositiveBvec": { "type": "object", "properties": { "type": { "enum": [ "bvec" ] } } }, "DWIPositiveBval": { "type": "object", "properties": { "type": { "enum": [ "bval" ] } } }, "DWINegativeData": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "DWINegativeBvec": { "type": "object", "properties": { "type": { "enum": [ "bvec" ] } } }, "DWINegativeBval": { "type": "object", "properties": { "type": { "enum": [ "bval" ] } } }, "DWIPositiveData2": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "DWIPositiveBvec2": { "type": "object", "properties": { "type": { "enum": [ "bvec" ] } } }, "DWIPositiveBval2": { "type": "object", "properties": { "type": { "enum": [ "bval" ] } } }, "DWINegativeData2": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "DWINegativeBvec2": { "type": "object", "properties": { "type": { "enum": [ "bvec" ] } } }, "DWINegativeBval2": { "type": "object", "properties": { "type": { "enum": [ "bval" ] } } }, "DWIPositiveData3": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "DWIPositiveBvec3": { "type": "object", "properties": { "type": { "enum": [ "bvec" ] } } }, "DWIPositiveBval3": { "type": "object", "properties": { "type": { "enum": [ "bval" ] } } }, "DWINegativeData3": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "DWINegativeBvec3": { "type": "object", "properties": { "type": { "enum": [ "bvec" ] } } }, "DWINegativeBval3": { "type": "object", "properties": { "type": { "enum": [ "bval" ] } } }, "DWIPositiveData4": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "DWIPositiveBvec4": { "type": "object", "properties": { "type": { "enum": [ "bvec" ] } } }, "DWIPositiveBval4": { "type": "object", "properties": { "type": { "enum": [ "bval" ] } } }, "DWINegativeData4": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "DWINegativeBvec4": { "type": "object", "properties": { "type": { "enum": [ "bvec" ] } } }, "DWINegativeBval4": { "type": "object", "properties": { "type": { "enum": [ "bval" ] } } }, "GradientCoeff": { "type": "object", "properties": {} } }, "required": [ "StructZip", "DWIPositiveData", "DWIPositiveBvec", "DWIPositiveBval", "DWINegativeData", "DWINegativeBvec", "DWINegativeBval" ] } }, "required": [ "config", "inputs" ] }
o41291