json_schema
stringlengths 43
1.28M
| unique_id
stringlengths 2
41
|
---|---|
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://smapi.io/schemas/content-patcher.json",
"title": "Content Patcher content pack",
"description": "Content Patcher content file for mods",
"@documentationUrl": "https://github.com/Pathoschild/StardewMods/tree/develop/ContentPatcher#readme",
"type": "object",
"properties": {
"Format": {
"title": "Format version",
"description": "The format version. You should always use the latest version to enable the latest features and avoid obsolete behavior.",
"type": "string",
"const": "1.15.0",
"@errorMessages": {
"const": "Incorrect value '@value'. This should be set to the latest format version, currently '1.15.0'."
}
},
"ConfigSchema": {
"title": "Config schema",
"description": "Defines the config.json format, to support more complex mods.",
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"AllowValues": {
"title": "Allowed values",
"description": "The values the player can provide, as a comma-delimited string. If omitted, any value is allowed.\nTip: for a boolean flag, use \"true, false\".",
"type": "string"
},
"AllowBlank": {
"title": "Allow blank",
"description": "Whether the field can be left blank. If false or omitted, blank fields will be replaced with the default value.",
"type": "boolean"
},
"AllowMultiple": {
"title": "Allow multiple values",
"description": "Whether the player can specify multiple comma-delimited values. Default false.",
"type": "boolean"
},
"Default": {
"title": "Default value",
"description": "The default values when the field is missing. Can contain multiple comma-delimited values if AllowMultiple is true. If omitted, blank fields are left blank.",
"type": "string"
},
"additionalProperties": false
},
"allOf": [
{
"if": {
"properties": {
"AllowBlank": {
"const": false
}
}
},
"then": {
"required": [
"Default"
]
}
}
],
"@errorMessages": {
"const": "If 'AllowBlank' is false, the 'Default' field is required."
}
}
},
"DynamicTokens": {
"title": "Dynamic tokens",
"description": "Custom tokens that you can use.",
"type": "array",
"items": {
"type": "object",
"properties": {
"Name": {
"title": "Name",
"description": "The name of the token to use for tokens & conditions.",
"type": "string"
},
"Value": {
"title": "Token value",
"description": "The value(s) to set. This can be a comma-delimited value to give it multiple values. If any block for a token name has multiple values, it will only be usable in conditions. This field supports tokens, including dynamic tokens defined before this entry.",
"type": "string"
},
"When": {
"title": "When",
"description": "Only set the value if the given conditions match. If not specified, always matches.",
"$ref": "#/definitions/Condition"
}
},
"required": [
"Name",
"Value"
],
"additionalProperties": false
}
},
"Changes": {
"title": "Changes",
"description": "The changes you want to make. Each entry is called a patch, and describes a specific action to perform: replace this file, copy this image into the file, etc. You can list any number of patches.",
"type": "array",
"items": {
"properties": {
"Action": {
"title": "Action",
"description": "The kind of change to make.",
"type": "string",
"enum": [
"Load",
"EditImage",
"EditData",
"EditMap"
]
},
"Target": {
"title": "Target asset",
"description": "The game asset you want to patch (or multiple comma-delimited assets). This is the file path inside your game's Content folder, without the file extension or language (like Animals/Dinosaur to edit Content/Animals/Dinosaur.xnb). This field supports tokens and capitalization doesn't matter. Your changes are applied in all languages unless you specify a language condition.",
"type": "string",
"not": {
"pattern": "^ *[cC][oO][nN][tT][eE][nN][tT]/|\\.[xX][nN][bB] *$|\\.[a-zA-Z][a-zA-Z]-[a-zA-Z][a-zA-Z](?:.xnb)? *$"
},
"@errorMessages": {
"not": {
"const": "Invalid target; it shouldn't include the 'Content/' folder, '.xnb' extension, or locale code."
}
}
},
"LogName": {
"title": "Patch log name",
"description": "A name for this patch shown in log messages. This is very useful for understanding errors; if not specified, will default to a name like 'entry #14 (EditImage Animals/Dinosaurs)'.",
"type": "string"
},
"Enabled": {
"title": "Enabled",
"description": "Whether to apply this patch. Default true. This fields supports immutable tokens (e.g. config tokens) if they return true/false.",
"anyOf": [
{
"type": "string",
"enum": [
"true",
"false"
]
},
{
"type": "string",
"pattern": "\\{\\{[^{}]+\\}\\}"
},
{
"type": "boolean"
}
],
"@errorMessages": {
"const": "Invalid value; must be true, false, or a single token which evaluates to true or false."
}
},
"FromFile": {
"title": "Source file",
"description": "The relative file path in your content pack folder to load instead (like 'assets/dinosaur.png'). This can be a .json (data), .png (image), .tbin or .tmx (map), or .xnb file. This field supports tokens and capitalization doesn't matter.",
"type": "string",
"allOf": [
{
"not": {
"pattern": "\b\\.\\.[/]"
}
},
{
"pattern": "\\.(json|png|tbin|tmx|xnb) *$"
}
],
"@errorMessages": {
"allOf": [
{
"const": "Invalid value; must not contain directory climbing (like '../')."
},
{
"const": "Invalid value; must be a file path ending with .json, .png, .tbin, .tmx, or .xnb."
}
]
}
},
"FromArea": {
"title": "Source area",
"description": "The part of the source image to copy. Defaults to the whole source image.",
"$ref": "#/definitions/Rectangle"
},
"ToArea": {
"title": "Destination area",
"description": "The part of the target image to replace. Defaults to the FromArea size starting from the top-left corner.",
"$ref": "#/definitions/Rectangle"
},
"PatchMode": {
"title": "Patch mode",
"description": "How to apply FromArea to ToArea. Defaults to Replace.",
"type": "string",
"enum": [
"Replace",
"Overlay"
],
"default": "Replace"
},
"Fields": {
"title": "Fields",
"description": "The individual fields you want to change for existing entries. This field supports tokens in field keys and values. The key for each field is the field index (starting at zero) for a slash-delimited string, or the field name for an object.",
"type": "object",
"additionalProperties": {
"type": "object"
}
},
"Entries": {
"title": "Entries",
"description": "The entries in the data file you want to add, replace, or delete. If you only want to change a few fields, use Fields instead for best compatibility with other mods. To add an entry, just specify a key that doesn't exist; to delete an entry, set the value to null (like \"some key\": null). This field supports tokens in entry keys and values.\nCaution: some XNB files have extra fields at the end for translations; when adding or replacing an entry for all locales, make sure you include the extra fields to avoid errors for non-English players.",
"type": "object",
"additionalProperties": {
"type": [
"object",
"string"
]
}
},
"MoveEntries": {
"title": "Move entries",
"description": "Change the entry order in a list asset like Data/MoviesReactions. (Using this with a non-list asset will cause an error, since those have no order.)",
"type": "array",
"items": {
"type": "object",
"properties": {
"ID": {
"title": "ID",
"description": "The ID of the entry to move",
"type": "string"
},
"BeforeID": {
"title": "Before ID",
"description": "Move entry so it's right before this ID",
"type": "string"
},
"AfterID": {
"title": "After ID",
"description": "Move entry so it's right after this ID",
"type": "string"
},
"ToPosition": {
"title": "To position",
"description": "Move entry so it's right at this position",
"enum": [
"Top",
"Bottom"
]
}
},
"anyOf": [
{
"required": [
"BeforeID"
]
},
{
"required": [
"AfterID"
]
},
{
"required": [
"ToPosition"
]
}
],
"dependencies": {
"BeforeID": {
"propertyNames": {
"enum": [
"ID",
"BeforeID"
]
}
},
"AfterID": {
"propertyNames": {
"enum": [
"ID",
"AfterID"
]
}
},
"ToPosition": {
"propertyNames": {
"enum": [
"ID",
"ToPosition"
]
}
}
},
"required": [
"ID"
],
"@errorMessages": {
"_anyOf": "You must specify one of 'AfterID', 'BeforeID', or 'ToPosition'.",
"anyOf": [
{
"const": "If 'BeforeID' is specified, only 'ID' and 'BeforeID' fields are valid."
},
{
"const": "If 'AfterID' is specified, only 'ID' and 'AfterID' fields are valid."
},
{
"const": "If 'ToPosition' is specified, only 'ID' and 'ToPosition' fields are valid."
}
]
}
}
},
"MapProperties": {
"title": "Map properties",
"description": "The map properties (not tile properties) to add, replace, or delete. To add an property, just specify a key that doesn't exist; to delete an entry, set the value to null (like \"some key\": null). This field supports tokens in property keys and values.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"MapTiles": {
"title": "Map tiles",
"description": "The individual map tiles to add, edit, or remove.",
"type": "array",
"items": {
"type": "object",
"properties": {
"Layer": {
"description": "The map layer name to change.",
"type": "string"
},
"Position": {
"description": "The tile coordinates to change. You can use the Debug Mode mod to see tile coordinates in-game.",
"$ref": "#/definitions/Position"
},
"SetTilesheet": {
"title": "Set tilesheet",
"description": "Sets the tilesheet ID for the tile index.",
"type": "string"
},
"SetIndex": {
"title": "Set tile index",
"description": "Sets the tile index in the tilesheet.",
"type": [
"string",
"number"
]
},
"SetProperties": {
"title": "Set tile properties",
"description": "The properties to set or remove. This is merged into the existing tile properties, if any. To remove a property, set its value to `null` (not \"null\" in quotes).",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"Remove": {
"description": "Whether to remove the current tile and all its properties on that layer. If combined with the other fields, a new tile is created from the other fields as if the tile didn't previously exist.",
"type": "boolean"
}
},
"required": [
"Layer",
"Position"
]
}
},
"When": {
"title": "When",
"description": "Only apply the patch if the given conditions match.",
"$ref": "#/definitions/Condition"
}
},
"allOf": [
{
"required": [
"Action"
]
},
{
"if": {
"properties": {
"Action": {
"const": "Load"
}
}
},
"then": {
"required": [
"FromFile"
],
"propertyNames": {
"enum": [
"Action",
"Target",
"LogName",
"Enabled",
"When",
"FromFile"
]
}
}
},
{
"if": {
"properties": {
"Action": {
"const": "EditImage"
}
}
},
"then": {
"required": [
"FromFile"
],
"propertyNames": {
"enum": [
"Action",
"Target",
"LogName",
"Enabled",
"When",
"FromFile",
"FromArea",
"ToArea",
"PatchMode"
]
}
}
},
{
"if": {
"properties": {
"Action": {
"const": "EditData"
}
}
},
"then": {
"propertyNames": {
"enum": [
"Action",
"Target",
"LogName",
"Enabled",
"When",
"FromFile",
"Fields",
"Entries",
"MoveEntries"
]
}
}
},
{
"if": {
"properties": {
"Action": {
"const": "EditMap"
}
}
},
"then": {
"properties": {
"FromFile": {
"description": "The relative path to the map in your content pack folder from which to copy (like assets/town.tbin). This can be a .tbin, .tmx, or .xnb file. This field supports tokens and capitalization doesn't matter.\nContent Patcher will handle tilesheets referenced by the FromFile map for you:\n - If a tilesheet isn't referenced by the target map, Content Patcher will add it for you (with a z_ ID prefix to avoid conflicts with hardcoded game logic). If the source map has a custom version of a tilesheet that's already referenced, it'll be added as a separate tilesheet only used by your tiles.\n - If you include the tilesheet file in your mod folder, Content Patcher will use that one automatically; otherwise it will be loaded from the game's Content/Maps folder."
},
"FromArea": {
"description": "The part of the source map to copy. Defaults to the whole source map."
},
"ToArea": {
"description": "The part of the target map to replace."
}
},
"propertyNames": {
"enum": [
"Action",
"Target",
"LogName",
"Enabled",
"When",
"FromFile",
"FromArea",
"ToArea",
"MapProperties",
"MapTiles"
]
}
}
}
],
"required": [
"Action",
"Target"
],
"@errorMessages": {
"const": "$transparent"
}
}
},
"$schema": {
"title": "Schema",
"description": "A reference to this JSON schema. Not part of the actual format, but useful for validation tools.",
"type": "string",
"const": "https://smapi.io/schemas/content-patcher.json"
}
},
"definitions": {
"Condition": {
"type": "object",
"additionalProperties": {
"type": [
"boolean",
"string"
]
}
},
"Position": {
"type": "object",
"properties": {
"X": {
"title": "X position",
"description": "The X position, measured in pixels for a texture or tiles for a map. This can contain tokens.",
"type": [
"integer",
"string"
],
"minimum:": 0
},
"Y": {
"title": "Y position",
"description": "The Y position, measured in pixels for a texture or tiles for a map. This can contain tokens.",
"type": [
"integer",
"string"
],
"minimum:": 0
}
},
"required": [
"X",
"Y"
],
"additionalProperties": false
},
"Rectangle": {
"type": "object",
"properties": {
"X": {
"title": "X position",
"description": "The X position of the area's top-left corner, measured in pixels for a texture or tiles for a map. This can contain tokens.",
"type": [
"integer",
"string"
],
"minimum:": 0
},
"Y": {
"title": "Y position",
"description": "The Y position of the area's top-left corner, measured in pixels for a texture or tiles for a map. This can contain tokens.",
"type": [
"integer",
"string"
],
"minimum:": 0
},
"Width": {
"title": "Width",
"description": "The width of the area, measured in pixels for a texture or tiles for a map. This can contain tokens.",
"type": [
"integer",
"string"
],
"minimum:": 0
},
"Height": {
"title": "Height",
"description": "The height of the area, measured in pixels for a texture or tiles for a map. This can contain tokens.",
"type": [
"integer",
"string"
],
"minimum:": 0
}
},
"required": [
"X",
"Y",
"Width",
"Height"
],
"additionalProperties": false
}
},
"required": [
"Format",
"Changes"
],
"additionalProperties": false
}
| o32451 |
{
"properties": {
"check_in_date": {
"description": "The check-in date in yyyy-mm-dd format",
"format": "date",
"type": "string"
},
"check_out_date": {
"description": "The check-out date in yyyy-mm-dd format",
"format": "date",
"type": "string"
},
"location": {
"description": "The location to search for hotels",
"type": "string"
},
"price_range": {
"description": "The price range (1-5)",
"type": "integer"
}
},
"required": [
"location",
"check_in_date",
"check_out_date"
],
"type": "object"
} | find_hotel_c7308d5e |
{
"additionalProperties": false,
"description": "Context Schema for a media player event",
"properties": {
"autoPlay": {
"description": "If playback should automatically begin as soon as enough media is available to do so without interruption",
"type": "boolean"
},
"buffered": {
"description": "An array of time ranges that have been buffered",
"items": {
"additionalProperties": false,
"description": "A time range object",
"properties": {
"end": {
"description": "The end of the time range",
"maximum": 9007199254740991,
"minimum": 0,
"type": "number"
},
"start": {
"description": "The beginning of the time range",
"maximum": 9007199254740991,
"minimum": 0,
"type": "number"
}
},
"type": "object"
},
"type": "array"
},
"controls": {
"description": "If the user agent should provide it's own set of controls",
"type": "boolean"
},
"crossOrigin": {
"description": "CORS settings value of the media player",
"maxLength": 255,
"type": [
"string",
"null"
]
},
"currentSrc": {
"_format": "uri",
"description": "The absolute URL of the media resource",
"maxLength": 65535,
"type": "string"
},
"defaultMuted": {
"description": "If audio is muted by default",
"type": "boolean"
},
"defaultPlaybackRate": {
"description": "The default media playback rate of the player",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "number"
},
"disableRemotePlayback": {
"description": "If the media element is allowed to have a remote playback UI",
"type": [
"boolean",
"null"
]
},
"error": {
"description": "An object of the latest error to occur, or null if no errors",
"type": [
"object",
"null"
]
},
"fileExtension": {
"description": "The media file format",
"maxLength": 255,
"minLength": 1,
"type": [
"string",
"null"
]
},
"fullscreen": {
"description": "If the video element is fullscreen",
"type": [
"boolean",
"null"
]
},
"htmlId": {
"description": "The HTML id of the element",
"maxLength": 65535,
"type": "string"
},
"mediaType": {
"description": "If the media is a video element, or audio",
"enum": [
"AUDIO",
"VIDEO"
],
"maxLength": 5,
"type": "string"
},
"networkState": {
"description": "The current state of the fetching of media over the network",
"enum": [
"NETWORK_EMPTY",
"NETWORK_IDLE",
"NETWORK_LOADING",
"NETWORK_NO_SOURCE"
],
"type": "string"
},
"pictureInPicture": {
"description": "If the video element is showing Picture-In-Picture",
"type": [
"boolean",
"null"
]
},
"played": {
"description": "An array of time ranges played",
"items": {
"additionalProperties": false,
"description": "A time range",
"properties": {
"end": {
"description": "The end of the time range",
"maximum": 9007199254740991,
"minimum": 0,
"type": "number"
},
"start": {
"description": "The beginning of the time range",
"maximum": 9007199254740991,
"minimum": 0,
"type": "number"
}
},
"type": "object"
},
"type": [
"array",
"null"
]
},
"preload": {
"description": "The 'preload' HTML attribute of the media",
"maxLength": 65535,
"type": "string"
},
"readyState": {
"description": "The readiness of the media",
"enum": [
"HAVE_NOTHING",
"HAVE_METADATA",
"HAVE_CURRENT_DATA",
"HAVE_FUTURE_DATA",
"HAVE_ENOUGH_DATA"
],
"type": "string"
},
"seekable": {
"description": "Seekable time range(s)",
"items": {
"additionalProperties": false,
"description": "A time range",
"properties": {
"end": {
"description": "The end of the time range",
"maximum": 9007199254740991,
"minimum": 0,
"type": "number"
},
"start": {
"description": "The beginning of the time range",
"maximum": 9007199254740991,
"minimum": 0,
"type": "number"
}
},
"type": "object"
},
"type": "array"
},
"seeking": {
"description": "If the media is in the process of seeking to a new position",
"type": "boolean"
},
"src": {
"_format": "uri",
"description": "The 'src' HTML attribute of the media element",
"maxLength": 65535,
"type": "string"
},
"textTracks": {
"description": "An array of TextTrack objects on the media element",
"items": {
"description": "A Text Track object",
"properties": {
"kind": {
"description": "The kind of text track this object represents",
"enum": [
"subtitles",
"captions",
"descriptions",
"chapters",
"metadata"
],
"type": "string"
},
"label": {
"description": "The given label for the text track",
"maxLength": 65535,
"type": "string"
},
"language": {
"description": "The locale of the text track, matching BCP-47 (https://www.rfc-editor.org/info/bcp47)",
"maxLength": 35,
"type": "string"
},
"mode": {
"description": "The mode the text track is in",
"enum": [
"disabled",
"hidden",
"showing"
],
"type": "string"
}
},
"type": "object"
},
"type": [
"array",
"null"
]
}
},
"required": [
"autoPlay",
"buffered",
"controls",
"currentSrc",
"defaultMuted",
"defaultPlaybackRate",
"error",
"htmlId",
"mediaType",
"networkState",
"preload",
"readyState",
"seekable",
"seeking"
],
"self": {
"format": "jsonschema",
"name": "media_element",
"vendor": "org.whatwg",
"version": "1-0-0"
},
"type": "object"
} | sp_418_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"description": "Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"enum": [
"v1"
],
"type": [
"string",
"null"
]
},
"data": {
"additionalProperties": {
"format": "byte",
"type": [
"string",
"null"
]
},
"description": "Data contains the secret data. Each key must consist of alphanumeric characters, '-', '_' or '.'. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4",
"type": [
"object",
"null"
]
},
"immutable": {
"description": "Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil. This is an alpha field enabled by ImmutableEphemeralVolumes feature gate.",
"type": [
"boolean",
"null"
]
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"Secret"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"stringData": {
"additionalProperties": {
"type": [
"string",
"null"
]
},
"description": "stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API.",
"type": [
"object",
"null"
]
},
"type": {
"description": "Used to facilitate programmatic handling of secret data.",
"type": [
"string",
"null"
]
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "",
"kind": "Secret",
"version": "v1"
}
]
} | kb_933_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The value returned by GET /_stats",
"items": {
"properties": {
"couchdb": {
"type": "object"
},
"httpd": {
"type": "object"
},
"httpd_request_methods": {
"type": "object"
},
"httpd_status_codes": {
"type": "object"
}
},
"required": [
"couchdb",
"httpd",
"httpd_request_methods",
"httpd_status_codes"
],
"type": "object"
},
"title": "CouchDB _stats",
"type": "array"
} | o60114 |
{
"definitions": {
"Translations": {
"additionalProperties": false,
"properties": {
"en": {
"type": "string"
},
"ru": {
"type": "string"
}
},
"required": [
"ru",
"en"
],
"type": "object"
}
},
"items": {
"additionalProperties": false,
"properties": {
"id": {
"minLength": 1,
"type": "string"
},
"translations": {
"$ref": "#/definitions/Translations"
}
},
"required": [
"id"
],
"type": "object"
},
"type": "array"
} | o27836 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"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"
} | kb_878_Normalized |
{
"definitions": {
"formula": {
"properties": {
"equation": {
"type": "string"
},
"variables": {
"minProperties": 1,
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/variable"
}
},
"type": "object"
}
},
"required": [
"equation",
"variables"
],
"type": "object"
},
"metric": {
"properties": {
"classification": {
"type": "string"
},
"dataType": {
"enum": [
"count",
"percentage",
"numeric",
"integer",
"time"
],
"type": "string"
},
"description": {
"type": "string"
},
"devices": {
"oneOf": [
{
"$ref": "#/definitions/stringArray"
},
{
"type": "null"
}
]
},
"displayName": {
"type": "string"
},
"formula": {
"$ref": "#/definitions/formula"
},
"max": {
"type": [
"string",
"number",
"null"
]
},
"min": {
"type": [
"string",
"number",
"null"
]
},
"notes": {
"type": "string"
},
"platforms": {
"type": "object"
},
"refs": {
"$ref": "#/definitions/stringArray"
},
"sigFigs": {
"oneOf": [
{
"$ref": "#/definitions/positiveInteger"
},
{
"type": "null"
}
]
},
"type": {
"enum": [
"raw",
"derived"
],
"type": "string"
},
"units": {
"type": [
"string",
"null"
]
}
},
"required": [
"displayName",
"units",
"max",
"min",
"sigFigs",
"dataType",
"type",
"formula",
"description",
"notes",
"platforms",
"devices",
"classification",
"refs"
],
"type": "object"
},
"positiveInteger": {
"minimum": 0,
"type": "integer"
},
"stringArray": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"variable": {
"properties": {
"description": {
"type": "string"
}
},
"required": [
"description"
],
"type": "object"
}
},
"description": "Schema for doc-metrix metric documentation.",
"minProperties": 1,
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/metric"
}
},
"type": "object"
} | o36591 |
{
"additionalProperties": false,
"properties": {
"additional_optional_text": {
"description": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442 \u0434\u043b\u044f \u043f\u0435\u0447\u0430\u0442\u043d\u043e\u0439 \u0444\u043e\u0440\u043c\u044b \u0434\u043b\u044f \u0432\u0432\u043e\u0434\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0435, \u0444\u0438\u043a\u0441\u0438\u0440\u0443\u044e\u0449\u0435\u043c \u0441\u0440\u043e\u043a\u0438 \u043d\u0430\u0447\u0430\u043b\u0430 \u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u0432 \u0441\u043b\u0443\u0447\u0430\u0435, \u043a\u043e\u0433\u0434\u0430 \u043f\u0440\u0430\u0432\u043e\u043d\u0430\u0440\u0443\u0448\u0435\u043d\u0438\u0435 \u2014 \u041d\u0435 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e \u0438\u0437\u0432\u0435\u0449\u0435\u043d\u0438\u0435 \u043e \u043d\u0430\u0447\u0430\u043b\u0435 \u0441\u0442\u0440\u043e\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430",
"type": "string"
},
"approvers": {
"items": {
"properties": {
"id_employee": {
"description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0441\u043e\u0433\u043b\u0430\u0441\u0443\u044e\u0449\u0435\u0433\u043e \u043b\u0438\u0446\u0430",
"type": "integer"
},
"is_complete": {
"description": "\u041f\u0440\u0438\u0437\u043d\u0430\u043a \u0441\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u043d\u0438\u044f",
"type": "boolean"
},
"resolution": {
"description": "\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435 \u0441\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u043d\u0438\u044f",
"type": "string"
},
"role": {
"oneOf": [
{
"description": "\u0421\u043e\u0433\u043b\u0430\u0441\u0430\u043d\u0442",
"pattern": "APPROVER"
},
{
"description": "\u041f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u0442",
"pattern": "SIGNER"
}
]
}
},
"type": "object"
},
"type": "array"
},
"assignee": {
"description": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c \u043f\u043e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443: \u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u043a\u0430 \u0432 \u0441\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0435 \"\u0421\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u043a\u0438\"",
"type": "integer"
},
"case_administrative_offence": {
"description": "\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u0414\u0435\u043b\u043e \u043e\u0431 \u0410\u041f, \u0432 \u0440\u0430\u043c\u043a\u0430\u0445 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0441\u043e\u0437\u0434\u0430\u0451\u0442\u0441\u044f \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
"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"
},
"date_create_original": {
"description": "\u0414\u0430\u0442\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
"format": "date-time",
"type": "string"
},
"effective_date": {
"description": "\u0414\u0430\u0442\u0430 \u0432\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u044f \u0432 \u0441\u0438\u043b\u0443 \u041f\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f",
"format": "date-time",
"type": "string"
},
"hearing": {
"description": "\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u0431\u0438\u0437\u043d\u0435\u0441-\u0441\u0443\u0449\u043d\u043e\u0441\u0442\u044c \u0420\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u0438\u0435",
"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"
},
"is_archived": {
"default": false,
"description": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u043f\u0435\u0440\u0435\u0434\u0430\u043d \u0432 \u0430\u0440\u0445\u0438\u0432",
"type": "boolean"
},
"is_deleted": {
"default": false,
"description": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u043f\u043e\u043c\u0435\u0447\u0435\u043d \u043d\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435",
"type": "boolean"
},
"no_number": {
"default": false,
"description": "\u041f\u0440\u0438\u0437\u043d\u0430\u043a \"\u0411\u0435\u0437 \u043d\u043e\u043c\u0435\u0440\u0430\"",
"type": "boolean"
},
"note": {
"description": "\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435",
"type": "string"
},
"number": {
"description": "\u041d\u043e\u043c\u0435\u0440 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430. \u0424\u043e\u0440\u043c\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u043e \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u043c\u0443 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0443",
"type": "string"
},
"optional_text": {
"description": "\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442 \u0434\u043b\u044f \u0432\u044b\u0432\u043e\u0434\u0430 \u0432 \u043f\u0435\u0447\u0430\u0442\u043d\u0443\u044e \u0444\u043e\u0440\u043c\u0443 \u0431\u043b\u043e\u043a\u0430 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0439 \u0434\u043b\u044f \u0432\u044b\u043d\u0435\u0441\u0435\u043d\u0438\u044f \u043f\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f",
"type": "string"
},
"penner": {
"description": "\u0421\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u044c (\u0430\u0432\u0442\u043e\u0440) \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430: \u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u043a\u0430 \u0432 \u0441\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0435 \"\u0421\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u043a\u0438\"",
"type": "integer"
},
"place": {
"description": "\u041c\u0435\u0441\u0442\u043e \u0441\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 - \u0430\u0434\u0440\u0435\u0441 \u0413\u0423\u0421\u041d",
"type": "string"
},
"signer": {
"properties": {
"empty_string": {
"description": "\u041f\u0440\u0438\u0437\u043d\u0430\u043a \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0443\u0441\u0442\u043e\u0439 \u0441\u0442\u0440\u043e\u043a\u0438 \u0434\u043b\u044f \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u0442\u0435",
"type": "boolean"
},
"full_name": {
"description": "\u0424\u0418\u041e \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u044f",
"type": "string"
},
"post": {
"description": "\u0414\u043e\u043b\u0436\u043d\u043e\u0441\u0442\u044c \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u044f",
"type": "string"
}
},
"type": "object"
},
"soft_copy": {
"description": "\u0421\u043f\u0438\u0441\u043e\u043a \u0441 \u043e\u0434\u043d\u0438\u043c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u043c \u0444\u0430\u0439\u043b\u043e\u043c. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c \u0432\u0435\u0437\u0434\u0435 \u043c\u0430\u0441\u0441\u0438\u0432 \u0434\u043b\u044f \u043f\u0440\u0438\u0435\u043c\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0442\u0438\u043f\u043e\u0432.",
"items": {
"properties": {
"guid": {
"description": "\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u0444\u0430\u0439\u043b",
"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": [
"guid"
],
"type": "object"
},
"maxItems": 1,
"type": "array"
},
"state": {
"default": "NEW",
"description": "\u0421\u0442\u0430\u0442\u0443\u0441 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
"oneOf": [
{
"description": "\u0421\u043e\u0437\u0434\u0430\u043d \u043f\u0440\u043e\u0435\u043a\u0442 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
"name": "\u041d\u043e\u0432\u044b\u0439",
"pattern": "NEW"
},
{
"description": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u0441\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u043d\u0438\u0438",
"name": "\u041d\u0430 \u0441\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u043d\u0438\u0438",
"pattern": "ON_APPROVAL"
},
{
"description": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u0438\u0438",
"name": "\u041d\u0430 \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u0438\u0438",
"pattern": "ON_SIGNING"
},
{
"description": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d \u043d\u0430 \u0434\u043e\u0440\u0430\u0431\u043e\u0442\u043a\u0443",
"name": "\u041d\u0430 \u0434\u043e\u0440\u0430\u0431\u043e\u0442\u043a\u0435",
"pattern": "ON_MODIFICATION"
},
{
"description": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0438\u0441\u043f\u043e\u043b\u043d\u0435\u043d",
"name": "\u0418\u0441\u043f\u043e\u043b\u043d\u0435\u043d",
"pattern": "EXECUTED"
},
{
"description": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u043e\u0442\u043c\u0435\u043d\u0451\u043d",
"name": "\u041e\u0442\u043c\u0435\u043d\u0451\u043d",
"pattern": "DEPRECATED"
},
{
"description": "\u041f\u043e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443 \u043f\u0440\u0438\u043d\u044f\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \"\u041e\u0442\u043a\u0430\u0437\"",
"name": "\u041e\u0442\u043a\u043b\u043e\u043d\u0451\u043d",
"pattern": "REJECTED"
}
],
"type": "string"
},
"stroyform_id": {
"description": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0432 \u0421\u0442\u0440\u043e\u0439\u0444\u043e\u0440\u043c",
"type": "string"
},
"title": {
"description": "\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
"title": "\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
"type": "string"
}
},
"title": "\u041f\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043e \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0438 \u0448\u0442\u0440\u0430\u0444\u0430",
"type": "object"
} | o12278 |
{
"properties": {
"food_items": {
"description": "The food items consumed",
"items": {
"properties": {
"calories": {
"description": "The calories per serving of the food item",
"type": "number"
},
"name": {
"description": "The name of the food item",
"type": "string"
},
"quantity": {
"description": "The quantity of the food item",
"type": "number"
}
},
"required": [
"name",
"quantity",
"calories"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"food_items"
],
"type": "object"
} | track_calories_93d75421 |
{
"properties": {
"AirPrint": {
"description": "List of printers",
"items": {
"description": "Airprint identifier",
"type": "object"
},
"type": "array"
},
"PayloadDescription": {
"default": "Configures AirPrint settings",
"description": "Description of the payload",
"type": "string"
},
"PayloadDisplayName": {
"default": "AirPrint",
"description": "Name of the payload",
"type": "string"
},
"PayloadIdentifier": {
"default": "com.apple.airprint",
"description": "A unique identifier for the payload, dot-delimited. Usually root PayloadIdentifier+subidentifier",
"type": "string"
},
"PayloadOrganization": {
"description": "This value describes the issuing organization of the profile, as displayed to the user",
"type": "string"
},
"PayloadType": {
"default": "com.apple.airprint",
"description": "The type of the payload, a reverse dns string",
"type": "string"
},
"PayloadUUID": {
"default": "",
"description": "Unique identifier for the payload (format 01234567-89AB-CDEF-0123-456789ABCDEF)",
"pattern": "^[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}$",
"type": "string"
},
"PayloadVersion": {
"default": 1,
"description": "The version of the whole configuration profile.",
"type": "number"
}
},
"title": "com.apple.airprint",
"type": "object"
} | o61594 |
{
"additionalProperties": false,
"description": "",
"properties": {
"hour": {
"minimum": 0,
"type": "integer"
},
"minute": {
"maximum": 59,
"minimum": 0,
"type": "integer"
},
"second": {
"maximum": 59,
"minimum": 0,
"type": "integer"
}
},
"title": "time",
"type": "object"
} | o28268 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Fluid for cubic EOS in CoolProp",
"items": {
"properties": {
"name": {
"description": "Name of the fluid",
"type": "string"
},
"CAS": {
"description": "CAS registry number of the fluid",
"type": "string"
},
"Tc": {
"description": "Critical temperature (K)",
"type": "number",
"minimum": 0.1,
"maximum": 20000
},
"pc": {
"description": "Critical pressure (Pa)",
"type": "number",
"minimum": 0,
"maximum": 500000000
},
"rhomolarc": {
"description": "Critical density (mol/m^3)",
"type": "number",
"minimum": 0.1,
"maximum": 2000000
},
"rhomolarc_units": {
"description": "Units of the critical density provided",
"enum": [
"mol/m^3",
"kg/m^3"
]
},
"acentric": {
"description": "Acentric factor (-)",
"type": "number",
"minimum": -10,
"maximum": 10
},
"molemass": {
"description": "Molar mass (kg/mol)",
"type": "number",
"minimum": 0,
"maximum": 1
},
"molemass_units": {
"description": "Units of the molar mass provided",
"enum": [
"kg/mol"
]
},
"pc_units": {
"description": "Units of the critical pressure",
"enum": [
"Pa"
]
},
"Tc_units": {
"description": "Units of the critical temperature",
"enum": [
"K"
]
},
"aliases": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 0
},
"alpha": {
"description": "The alpha function being used",
"properties": {
"type": {
"enum": [
"Twu",
"Mathias-Copeman",
"default"
]
},
"c": {
"type": "array",
"items": {
"type": "number"
},
"minItems": 3,
"maxItems": 3
}
}
}
},
"required": [
"name",
"CAS",
"Tc",
"Tc_units",
"pc",
"pc_units",
"acentric",
"molemass",
"molemass_units"
]
},
"type": "array"
} | o45806 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the shape (for triangle or rectangle)",
"type": "number"
},
"height": {
"description": "The height of the shape (for triangle or rectangle)",
"type": "number"
},
"radius": {
"description": "The radius of the shape (for circle)",
"type": "number"
}
},
"required": [
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The type of shape (e.g. triangle, rectangle, circle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_40fa2869 |
{
"copyright": [
"Copyright 2013 Red Hat, Inc. and/or its affiliates.",
"This file is part of lightblue.",
"This program is free software: you can redistribute it and/or modify",
"it under the terms of the GNU General Public License as published by",
"the Free Software Foundation, either version 3 of the License, or",
"(at your option) any later version.",
"This program is distributed in the hope that it will be useful,",
"but WITHOUT ANY WARRANTY; without even the implied warranty of",
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the",
"GNU General Public License for more details.",
"You should have received a copy of the GNU General Public License",
"along with this program. If not, see <http://www.gnu.org/licenses/>."
],
"id": "#fieldbinary",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"field": {
"type": "string"
},
"op": {
"enum": [
"$in",
"$nin",
"$not_in"
]
},
"values": {
"type": "array",
"minItems": 1,
"items": {
"type": "string"
},
"_uniqueItems": true
}
},
"required": [
"field",
"op",
"values"
],
"additionalProperties": false
} | o66308 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"id": "https://raw.githubusercontent.com/Microsoft/azure-pipelines-task-lib/master/tasks.schema.json",
"title": "Azure DevOps Tasks schema",
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"description": "A unique guid for this task",
"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}$"
},
"name": {
"type": "string",
"description": "Name with no spaces",
"pattern": "^[A-Za-z0-9\\-]+$"
},
"friendlyName": {
"type": "string",
"description": "Descriptive name (spaces allowed). Must be <= 40 chars"
},
"description": {
"type": "string",
"description": "Detailed description of what your task does"
},
"helpUrl": {
"type": "string"
},
"helpMarkDown": {
"type": "string"
},
"author": {
"type": "string"
},
"preview": {
"type": "boolean"
},
"deprecated": {
"type": "boolean",
"description": "Task is deprecated only when the latest version is marked as deprecated. Deprecated tasks appear at the end of searches under a section that is collapsed by default."
},
"showEnvironmentVariables": {
"type": "boolean",
"description": "Toggles showing the environment variable editor in the task editor UI. Allows passing environment variables to script based tasks."
},
"runsOn": {
"type": "array",
"items": {
"type": "string",
"enum": [
"Agent",
"MachineGroup",
"Server"
]
}
},
"visibility": {
"type": "array",
"items": {
"type": "string",
"enum": [
"Build",
"Release"
]
}
},
"category": {
"type": "string",
"description": "Where the task appears in Azure DevOps. Use the 'Azure *' categories for Azure DevOps and Azure DevOps Server 2019. Use the other categories for Team Foundation Server 2018 and below.",
"enum": [
"Build",
"Utility",
"Test",
"Package",
"Deploy",
"Azure Repos",
"Azure Boards",
"Azure Pipelines",
"Azure Test Plans",
"Azure Artifacts"
]
},
"groups": {
"type": "array",
"description": "Describes groups that task properties may be logically grouped by in the UI.",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"name",
"displayName"
],
"properties": {
"name": {
"type": "string"
},
"displayName": {
"type": "string"
},
"isExpanded": {
"type": "boolean"
},
"visibleRule": {
"type": "string",
"description": "Allow's you to define a rule which dictates when the group will be visible to a user, for example \"variableName = value\""
}
}
}
},
"demands": {
"type": "array",
"description": "Allows you to define a list of demands that a build agent requires to run this build task.",
"items": {
"type": "string"
}
},
"minimumAgentVersion": {
"type": "string",
"pattern": "^\\d+\\.\\d+(\\.\\d+)?$"
},
"version": {
"type": "object",
"additionalProperties": false,
"description": "Always update this when you release your task, so that the agents utilize the latest code.",
"required": [
"Major",
"Minor",
"Patch"
],
"properties": {
"Major": {
"type": "number"
},
"Minor": {
"type": "number"
},
"Patch": {
"type": "number"
}
}
},
"instanceNameFormat": {
"type": "string",
"description": "This is how the task will be displayed within the build step list - you can use variable values by using $(variablename)"
},
"inputs": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"name",
"label",
"type"
],
"properties": {
"name": {
"type": "string",
"description": "The variable name to use to store the user-supplied value",
"pattern": "^[A-Za-z][A-Za-z0-9]*$"
},
"label": {
"type": "string",
"description": "The text displayed to the user for the input label"
},
"type": {
"type": "string",
"description": "The type that dictates the control rendered to the user.",
"anyOf": [
{
"enum": [
"boolean",
"filePath",
"multiLine",
"pickList",
"radio",
"secureFile",
"string"
]
},
{
"type": "string",
"pattern": "^connectedService\\:.+$"
}
]
},
"defaultValue": {
"type": [
"string",
"boolean"
],
"description": "The default value to apply to this input."
},
"required": {
"type": "boolean",
"description": "Whether the input is a required field (default is false).",
"default": false
},
"helpMarkDown": {
"type": "string",
"description": "Help to be displayed when hovering over the help icon for the input. To display URLs use the format [Text To Display](http://Url)"
},
"groupName": {
"type": "string",
"description": "Setting this to the name of a group defined in 'groups' will place the input into that group."
},
"visibleRule": {
"type": "string",
"description": "Allow's you to define a rule which dictates when the input will be visible to a user, for example \"variableName = value\""
},
"properties": {
"type": "object",
"properties": {
"EditableOptions": {
"type": "string",
"enum": [
"True",
"False"
]
}
}
},
"options": {
"type": "object",
"additionalProperties": true
}
}
}
},
"dataSourceBindings": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"target": {
"type": "string"
},
"endpointId": {
"type": "string"
},
"dataSourceName": {
"type": "string"
},
"parameters": {
"type": "object"
},
"resultTemplate": {
"type": "string"
},
"endpointUrl": {
"type": "string"
},
"resultSelector": {
"type": "string"
}
}
}
},
"sourceDefinitions": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"target": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"selector": {
"type": "string"
},
"keySelector": {
"type": "string"
},
"authKey": {
"type": "string"
}
}
}
},
"prejobexecution": {
"type": "object",
"additionalProperties": false,
"description": "Execution options for this task (on Pre-Job stage)",
"properties": {
"Node10": {
"$ref": "#/definitions/executionObject"
},
"Node": {
"$ref": "#/definitions/executionObject"
},
"PowerShell3": {
"$ref": "#/definitions/executionObject"
},
"PowerShell": {
"$ref": "#/definitions/executionObject"
}
}
},
"execution": {
"type": "object",
"additionalProperties": false,
"description": "Execution options for this task",
"properties": {
"Node10": {
"$ref": "#/definitions/executionObject"
},
"Node": {
"$ref": "#/definitions/executionObject"
},
"PowerShell3": {
"$ref": "#/definitions/executionObject"
},
"PowerShell": {
"$ref": "#/definitions/executionObject"
}
}
},
"postjobexecution": {
"type": "object",
"additionalProperties": false,
"description": "Execution options for this task (on Post-Job stage)",
"properties": {
"Node10": {
"$ref": "#/definitions/executionObject"
},
"Node": {
"$ref": "#/definitions/executionObject"
},
"PowerShell3": {
"$ref": "#/definitions/executionObject"
},
"PowerShell": {
"$ref": "#/definitions/executionObject"
}
}
},
"messages": {
"type": "object"
},
"OutputVariables": {
"type": "array",
"description": "Describes output variables of task.",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "The variable name",
"pattern": "^[A-Za-z][A-Za-z0-9]*$"
},
"description": {
"type": "string",
"description": "Detailed description of the variable"
}
}
}
},
"$schema": {
"type": "string"
}
},
"definitions": {
"executionObject": {
"type": "object",
"additionalProperties": true,
"properties": {
"target": {
"type": "string",
"description": "The target file to be executed. You can use variables here in brackets e.g. $(currentDirectory)\filename.ps1"
},
"platforms": {
"type": "array",
"items": {
"enum": [
"windows"
]
}
}
}
}
}
} | o10499 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"Status": {
"type": "string"
},
"Name": {
"type": "string"
},
"Symbol": {
"type": "string"
},
"LastPrice": {
"type": "number"
},
"Change": {
"type": "number"
},
"ChangePercent": {
"type": "number"
},
"Timestamp": {
"type": "string"
},
"MSDate": {
"type": "number"
},
"MarketCap": {
"type": "object",
"javaType": "java.math.BigInteger"
},
"Volume": {
"type": "integer"
},
"ChangeYTD": {
"type": "number"
},
"ChangePercentYTD": {
"type": "number"
},
"High": {
"type": "integer"
},
"Low": {
"type": "number"
},
"Open": {
"type": "number"
}
},
"required": [
"Name",
"Symbol",
"LastPrice",
"Change",
"ChangePercent",
"Timestamp",
"MSDate",
"MarketCap",
"Volume",
"ChangeYTD",
"ChangePercentYTD",
"High",
"Low",
"Open"
]
} | o74556 |
{
"type": "array",
"decription": "Array of objects, each of which represents a search to be performed by the search layer.",
"items": {
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "Field to search."
},
"value": {
"type": "string",
"description": "Value to search."
},
"search_type": {
"enum": [
"WILDCARD",
"MATCH",
"VERSION"
],
"description": "Type of search to perform. See shelf.search.type.Type."
}
},
"required": [
"field",
"value",
"search_type"
]
},
"$schema": "http://json-schema.org/draft-04/schema#"
} | o64021 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"additionalProperties": {},
"description": "Tracking information, probably implementation-dependent",
"title": "Tracking",
"type": "object"
} | wp_95_Normalized |
{
"additionalProperties": false,
"description": "Schema for a bad row resulting from tracker protocol violations",
"properties": {
"failure": {
"additionalProperties": false,
"description": "Information regarding the tracker protocol violations",
"properties": {
"messages": {
"description": "List of failure messages associated with the tracker protocol violations",
"items": {
"anyOf": [
{
"additionalProperties": false,
"description": "Error which was internal to the adapter regarding its input data",
"properties": {
"expectation": {
"description": "Expectation which was not met",
"maxLength": 256,
"type": "string"
},
"field": {
"description": "Field which did not meet the adapter's expectations",
"maxLength": 64,
"type": "string"
},
"value": {
"description": "Stringified representation of the value which did not meet expectations",
"type": [
"string",
"null"
]
}
},
"required": [
"field",
"expectation"
],
"type": "object"
},
{
"additionalProperties": false,
"description": "String supplied for schema validation was not JSON",
"properties": {
"error": {
"description": "Json parsing issue",
"type": "string"
},
"field": {
"description": "Field which ended up not being json",
"maxLength": 64,
"type": "string"
},
"value": {
"description": "Stringified representation of the value which is not json",
"type": [
"string",
"null"
]
}
},
"required": [
"field",
"error"
],
"type": "object"
},
{
"additionalProperties": false,
"description": "Json supplied for schema validation was not self-describing",
"properties": {
"error": {
"description": "Issue which the json which makes it not self-describing",
"enum": [
"INVALID_SCHEMAVER",
"INVALID_IGLUURI",
"INVALID_DATA_PAYLOAD",
"INVALID_SCHEMA"
],
"type": "string"
},
"json": {
"description": "Supplied JSON which was not self-describing"
}
},
"required": [
"json",
"error"
],
"type": "object"
},
{
"additionalProperties": false,
"description": "Supplied JSON does not match the associated schema criterion",
"properties": {
"schemaCriterion": {
"description": "The schema criterion which was not respected",
"type": "string"
},
"schemaKey": {
"description": "Supplied schema key",
"type": "string"
}
},
"required": [
"schemaKey",
"schemaCriterion"
],
"type": "object"
},
{
"additionalProperties": false,
"description": "Supplied JSON did not validate against its schema (or schema was not found)",
"properties": {
"error": {
"anyOf": [
{
"additionalProperties": false,
"description": "Resolution error - schema could not be found in the specified repositories, defined by ResolutionError in the Iglu Client",
"properties": {
"error": {
"enum": [
"ResolutionError"
]
},
"lookupHistory": {
"items": {
"properties": {
"attempts": {
"description": "Number of attempts which have been made",
"minimum": 0,
"type": "integer"
},
"errors": {
"description": "Set of errors which happened for this repository",
"items": {
"properties": {
"error": {
"description": "Type of error (NotFound does not contain a message)",
"enum": [
"RepoFailure",
"ClientFailure",
"NotFound"
]
},
"message": {
"description": "Optional message in case of ClientFailure or RepoFailure",
"maxLength": 256,
"type": "string"
}
},
"required": [
"error"
],
"type": "object"
},
"minItems": 1,
"type": "array"
},
"lastAttempt": {
"_format": "date-time",
"description": "Timestamp of a last attempt being made",
"type": "string"
},
"repostitory": {
"description": "Name of the repostitory as written in resolver.json",
"type": "string"
}
},
"required": [
"repository",
"errors",
"attempts",
"lastAttempt"
],
"type": "object"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"error",
"lookupHistory"
]
},
{
"additionalProperties": false,
"description": "Data is invalid against resolved schema",
"properties": {
"dataReports": {
"items": {
"additionalProperties": false,
"properties": {
"keyword": {
"description": "JSON Schema Keywrod caused invalidation",
"type": [
"string",
"null"
]
},
"message": {
"description": "Human-readable message describing the issue with the schema",
"type": "string"
},
"path": {
"description": "JSON Path to an issue in the faulty JSON datum",
"type": [
"string",
"null"
]
},
"targets": {
"type": [
"array",
"null"
]
}
},
"required": [
"path",
"message",
"keyword",
"targets"
]
},
"minItems": 1,
"type": "array"
},
"error": {
"enum": [
"ValidationError"
]
}
},
"required": [
"dataReports"
]
},
{
"additionalProperties": false,
"description": "Schema is invalid and cannot be used to validate an instance",
"properties": {
"error": {
"enum": [
"ValidationError"
]
},
"schemaIssues": {
"description": "List of problems in resolved JSON schema",
"items": {
"additionalProperties": false,
"properties": {
"message": {
"description": "Human-readable message describing the issue with the schema",
"type": "string"
},
"path": {
"description": "JSON Path to an issue in the faulty JSON Schema",
"type": "string"
}
},
"required": [
"path",
"message"
],
"type": "object"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"error"
]
}
],
"description": "Iglu client error"
},
"schemaKey": {
"description": "The iglu schema coordinates to validate against",
"type": "string"
}
},
"type": "object"
}
]
},
"type": "array"
},
"timestamp": {
"_format": "date-time",
"description": "Timestamp at which the failure occurred",
"type": "string"
},
"vendor": {
"description": "Vendor of the adapter that processed this payload, here com.snowplowanalytics.snowplow",
"maxLength": 64,
"type": "string"
},
"version": {
"description": "Version of the adapter that processed this payload, here tp2",
"maxLength": 16,
"type": "string"
}
},
"required": [
"timestamp",
"vendor",
"version",
"messages"
],
"type": "object"
},
"payload": {
"additionalProperties": false,
"description": "The collector payload that resulted in tracker protocol violations",
"properties": {
"body": {
"description": "Body of this collector payload",
"type": [
"string",
"null"
]
},
"collector": {
"description": "Collector which produced this collector payload",
"maxLength": 32,
"type": "string"
},
"contentType": {
"description": "Content type of the payload as detected by the collector",
"maxLength": 256,
"type": [
"string",
"null"
]
},
"encoding": {
"description": "Encoding of the collector payload",
"maxLength": 32,
"type": "string"
},
"headers": {
"description": "List of the headers part of this collector payload",
"items": {
"maxLength": 8192,
"type": "string"
},
"type": [
"array",
"null"
]
},
"hostname": {
"description": "Hostname of the payload as detected by the collector",
"maxLength": 8192,
"type": [
"string",
"null"
]
},
"ipAddress": {
"description": "IP address of the payload as detected by the collector",
"maxLength": 128,
"type": [
"string",
"null"
]
},
"networkUserId": {
"_format": "uuid",
"description": "Network user id associated with this payload",
"type": [
"string",
"null"
]
},
"querystring": {
"description": "Query string of this collector payload",
"items": {
"additionalProperties": false,
"properties": {
"name": {
"description": "Name of the querystring parameter",
"maxLength": 512,
"type": "string"
},
"value": {
"description": "Possible value for the querystring parameter",
"maxLength": 512,
"type": [
"string",
"null"
]
}
},
"required": [
"name"
],
"type": "object"
},
"type": [
"array",
"null"
]
},
"refererUri": {
"description": "Referer of the payload as detected by the collector",
"maxLength": 8192,
"type": [
"string",
"null"
]
},
"timestamp": {
"_format": "date-time",
"description": "Timestamp at which the payload was collected",
"type": [
"string",
"null"
]
},
"useragent": {
"description": "User agent of the payload as detected by the collector",
"maxLength": 4096,
"type": [
"string",
"null"
]
},
"vendor": {
"description": "Vendor of the adapter that processed this payload, here com.snowplowanalytics.snowplow",
"maxLength": 64,
"type": "string"
},
"version": {
"description": "Version of the adapter that processed this payload, here always 'tp2' (maxLength 16 for compatibility)",
"maxLength": 16,
"type": "string"
}
},
"required": [
"vendor",
"version",
"collector",
"encoding"
],
"type": "object"
},
"processor": {
"additionalProperties": false,
"description": "Information about the piece of software responsible for the creation of tracker protocol violations",
"properties": {
"artifact": {
"description": "Artifact responsible for the creation of tracker protocol violations",
"maxLength": 512,
"type": "string"
},
"version": {
"description": "Version of the artifact responsible for the creation of tracker protocol violations",
"maxLength": 32,
"pattern": "^(\\d+\\.\\d+\\.\\d+.*)$",
"type": "string"
}
},
"required": [
"artifact",
"version"
],
"type": "object"
}
},
"required": [
"failure",
"payload",
"processor"
],
"self": {
"format": "jsonschema",
"name": "tracker_protocol_violations",
"vendor": "com.snowplowanalytics.snowplow.badrows",
"version": "1-0-0"
},
"type": "object"
} | sp_346_Normalized |
{
"$id": "https://json.schemastore.org/azure-devops-extension-manifest-1.0.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"Badge": {
"description": "A link to external metadata badge.",
"properties": {
"href": {
"description": "Link the user navigates to when selecting the badge.",
"type": "string"
},
"uri": {
"description": "The absolute URL of the badge image to be displayed.",
"type": "string"
},
"description": {
"description": "Description of the badge, to be displayed on hover.",
"type": "string"
}
},
"required": ["uri"],
"title": "badge",
"type": "object"
},
"Content": {
"description": "A content file that describes the extension to users.",
"properties": {
"path": {
"description": "The path to the file in the extension.",
"type": "string"
}
},
"required": ["path"],
"title": "content",
"type": "object"
},
"Contribution": {
"description": "An individual contribution made by an extension",
"properties": {
"constraints": {
"description": "List of constraints (filters) that should be applied to the availability of this contribution",
"items": {
"$ref": "#/definitions/ContributionConstraint"
},
"type": "array"
},
"description": {
"description": "Description of the contribution/type",
"type": "string"
},
"id": {
"description": "Fully qualified identifier of the contribution/type",
"type": "string"
},
"includes": {
"description": "Includes is a set of contributions that should have this contribution included in their targets list.",
"items": {
"type": "string"
},
"type": "array"
},
"properties": {
"description": "Properties/attributes of this contribution"
},
"restrictedTo": {
"description": "List of demanded claims in order for the user to see this contribution (like anonymous, public, member...).",
"items": {
"type": "string"
},
"type": "array"
},
"targets": {
"description": "The ids of the contribution(s) that this contribution targets. (parent contributions)",
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"description": "Id of the Contribution Type",
"type": "string"
},
"visibleTo": {
"description": "VisibleTo can be used to restrict whom can reference a given contribution/type. This value should be a list of publishers or extensions access is restricted too. Examples: \"ms\" - Means only the \"ms\" publisher can reference this. \"ms.vss-web\" - Means only the \"vss-web\" extension from the \"ms\" publisher can reference this.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": ["id", "targets", "type"],
"title": "contribution",
"type": "object"
},
"ContributionConstraint": {
"description": "Specifies a constraint that can be used to dynamically include/exclude a given contribution",
"properties": {
"group": {
"description": "An optional property that can be specified to group constraints together. All constraints within a group are AND'd together (all must be evaluate to True in order for the contribution to be included). Different groups of constraints are OR'd (only one group needs to evaluate to True for the contribution to be included).",
"type": "number"
},
"id": {
"description": "Fully qualified identifier of a shared constraint",
"type": "string"
},
"inverse": {
"description": "If true, negate the result of the filter (include the contribution if the applied filter returns false instead of true)",
"type": "boolean"
},
"name": {
"description": "Name of the IContributionFilter plugin",
"type": "string"
},
"properties": {
"description": "Properties that are fed to the contribution filter class"
},
"relationships": {
"description": "Constraints can be optionally be applied to one or more of the relationships defined in the contribution. If no relationships are defined then all relationships are associated with the constraint. This means the default behaviour will eliminate the contribution from the tree completely if the constraint is applied.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"ContributionLicensingBehaviorType": {
"description": "Represents different ways of including contributions based on licensing",
"enum": [0, 1, 2],
"type": "number"
},
"ContributionPropertyDescription": {
"description": "Description about a property of a contribution type",
"properties": {
"description": {
"description": "Description of the property",
"type": "string"
},
"name": {
"description": "Name of the property",
"type": "string"
},
"required": {
"description": "True if this property is required",
"type": "boolean"
},
"type": {
"$ref": "#/definitions/ContributionPropertyType",
"description": "The type of value used for this property"
}
},
"type": "object"
},
"ContributionPropertyType": {
"description": "The type of value used for a property",
"enum": [0, 1, 128, 16, 2, 256, 32, 4, 512, 64, 8],
"type": "number"
},
"ContributionType": {
"description": "A contribution type, given by a json schema",
"properties": {
"description": {
"description": "Description of the contribution/type",
"type": "string"
},
"id": {
"description": "Fully qualified identifier of the contribution/type",
"type": "string"
},
"indexed": {
"description": "Controls whether or not contributions of this type have the type indexed for queries. This allows clients to find all extensions that have a contribution of this type. NOTE: Only TrustedPartners are allowed to specify indexed contribution types.",
"type": "boolean"
},
"name": {
"description": "Friendly name of the contribution/type",
"type": "string"
},
"properties": {
"additionalProperties": {
"$ref": "#/definitions/ContributionPropertyDescription"
},
"description": "Describes the allowed properties for this contribution type",
"type": "object"
},
"visibleTo": {
"description": "VisibleTo can be used to restrict whom can reference a given contribution/type. This value should be a list of publishers or extensions access is restricted too. Examples: \"ms\" - Means only the \"ms\" publisher can reference this. \"ms.vss-web\" - Means only the \"vss-web\" extension from the \"ms\" publisher can reference this.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"ExtensionEventCallback": {
"description": "Base class for an event callback for an extension",
"properties": {
"uri": {
"description": "The uri of the endpoint that is hit when an event occurs",
"type": "string"
}
},
"type": "object"
},
"ExtensionEventCallbackCollection": {
"description": "Collection of event callbacks - endpoints called when particular extension events occur.",
"properties": {
"postDisable": {
"$ref": "#/definitions/ExtensionEventCallback",
"description": "Optional. Defines an endpoint that gets called via a POST request to notify that an extension disable has occurred."
},
"postEnable": {
"$ref": "#/definitions/ExtensionEventCallback",
"description": "Optional. Defines an endpoint that gets called via a POST request to notify that an extension enable has occurred."
},
"postInstall": {
"$ref": "#/definitions/ExtensionEventCallback",
"description": "Optional. Defines an endpoint that gets called via a POST request to notify that an extension install has completed."
},
"postUninstall": {
"$ref": "#/definitions/ExtensionEventCallback",
"description": "Optional. Defines an endpoint that gets called via a POST request to notify that an extension uninstall has occurred."
},
"postUpdate": {
"$ref": "#/definitions/ExtensionEventCallback",
"description": "Optional. Defines an endpoint that gets called via a POST request to notify that an extension update has occurred."
},
"preInstall": {
"$ref": "#/definitions/ExtensionEventCallback",
"description": "Optional. Defines an endpoint that gets called via a POST request to notify that an extension install is about to occur. Response indicates whether to proceed or abort."
},
"versionCheck": {
"$ref": "#/definitions/ExtensionEventCallback",
"description": "For multi-version extensions, defines an endpoint that gets called via an OPTIONS request to determine the particular version of the extension to be used"
}
},
"type": "object"
},
"ExtensionLicensing": {
"description": "How an extension should handle including contributions based on licensing",
"properties": {
"overrides": {
"description": "A list of contributions which deviate from the default licensing behavior",
"items": {
"$ref": "#/definitions/LicensingOverride"
},
"type": "array"
}
},
"type": "object"
},
"File": {
"properties": {
"path": {
"description": "Path to resource on disk, which can be relative to your root directory.",
"type": "string"
},
"addressable": {
"description": "(optional) Set to true if you want your file to be URL-addressable. Defaults to false.",
"type": "boolean"
},
"packagePath": {
"description": "(optional) Path to the resource within the package. Defaults to the relative path on disk from your root directory.",
"type": "string"
},
"contentType": {
"description": "(optional) MIME type of the file. Defaults to a best guess based on the file extension and OS settings.",
"type": "string"
},
"assetType": {
"description": "(optional) Specify the value of the Type attribute of the asset entry in the VSIX manifest. Can also be an array of strings, in which case multiple asset entries get added for this file. Defaults to the packagePath.",
"type": "string"
},
"lang": {
"description": "(optional) Language of this asset. Localized files are served based on the Accept-Language header. Leave blank to signify this file is in the default (or fallback) language. Localized versions of the same file should have the same assetType.",
"type": "string"
}
},
"required": ["path"],
"title": "file",
"type": "object"
},
"LicensingOverride": {
"description": "Maps a contribution to a licensing behavior",
"properties": {
"behavior": {
"$ref": "#/definitions/ContributionLicensingBehaviorType",
"description": "How the inclusion of this contribution should change based on licensing"
},
"id": {
"description": "Fully qualified contribution id which we want to define licensing behavior for",
"type": "string"
}
},
"type": "object"
},
"Link": {
"properties": {
"uri": {
"description": "The absolute URL of the link.",
"type": "string"
}
},
"title": "link",
"type": "object"
},
"Target": {
"properties": {
"id": {
"type": "string",
"enum": [
"Microsoft.VisualStudio.Services",
"Microsoft.TeamFoundation.Server",
"Microsoft.VisualStudio.Services.Integration",
"Microsoft.TeamFoundation.Server.Integration"
]
}
},
"required": ["id"],
"title": "target",
"type": "object"
}
},
"description": "Base class for extension properties which are shared by the extension manifest and the extension model",
"properties": {
"badges": {
"description": "Array of links to external metadata badges like TravisCI, Appveyor, and so on, from the approved badges sites.",
"type": "array",
"items": {
"$ref": "#/definitions/Badge"
}
},
"baseUri": {
"description": "Uri used as base for other relative uri's defined in extension",
"type": "string"
},
"branding": {
"description": "Dictionary of brand-related properties.",
"properties": {
"color": {
"description": "Primary color of the extension or publisher; can be a hex (#ff00ff), RGB (rgb(100,200,50)), or supported HTML color names (blue).",
"type": "string"
},
"theme": {
"description": "Complements the color; use dark for dark branding colors, or light for lighter branding colors.",
"type": "string",
"enum": ["dark", "light"]
}
},
"title": "branding",
"type": "object"
},
"categories": {
"description": "Array of strings representing the categories your extension belongs to. At least one category must be provided and there's no limit to how many categories you may include. Valid values: Azure Repos, Azure Boards, Azure Pipelines, Azure Test Plans, and Azure Artifacts.",
"type": "array",
"items": {
"type": "string",
"enum": [
"Azure Repos",
"Azure Boards",
"Azure Pipelines",
"Azure Test Plans",
"Azure Artifacts"
]
},
"minItems": 1
},
"constraints": {
"description": "List of shared constraints defined by this extension",
"items": {
"$ref": "#/definitions/ContributionConstraint"
},
"type": "array"
},
"content": {
"description": "Dictionary of content files that describe your extension to users.",
"properties": {
"details": {
"$ref": "#/definitions/Content"
}
},
"additionalProperties": {
"$ref": "#/definitions/Content"
},
"title": "content",
"type": "object"
},
"contributionTypes": {
"description": "List of contribution types defined by this extension",
"items": {
"$ref": "#/definitions/ContributionType"
},
"type": "array"
},
"contributions": {
"description": "List of contributions made by this extension",
"items": {
"$ref": "#/definitions/Contribution"
},
"type": "array"
},
"demands": {
"description": "List of explicit demands required by this extension",
"items": {
"type": "string"
},
"type": "array"
},
"description": {
"description": "A few sentences describing the extensions. Limited to 200 characters.",
"type": "string",
"maxLength": 200
},
"eventCallbacks": {
"$ref": "#/definitions/ExtensionEventCallbackCollection",
"description": "Collection of endpoints that get called when particular extension events occur"
},
"fallbackBaseUri": {
"description": "Secondary location that can be used as base for other relative uri's defined in extension",
"type": "string"
},
"files": {
"description": "The files section is where you reference any files you wish to include in your extension.",
"type": "array",
"items": {
"$ref": "#/definitions/File"
}
},
"icons": {
"description": "Dictionary of icons representing the extension.",
"type": "object",
"properties": {
"default": {
"description": "128x128 pixels",
"type": "string"
}
},
"additionalProperties": {
"type": "string"
}
},
"id": {
"description": "The extension's identifier.",
"type": "string"
},
"language": {
"description": "Language Culture Name set by the Gallery",
"type": "string"
},
"licensing": {
"$ref": "#/definitions/ExtensionLicensing",
"description": "How this extension behaves with respect to licensing"
},
"manifestVersion": {
"description": "Version of the extension manifest format/content. Should be 1.",
"type": "number"
},
"name": {
"description": "A short, human-readable name of the extension. Limited to 200 characters.",
"type": "string",
"maxLength": 200
},
"links": {
"description": "Dictionary of links that help users learn more about your extension, get support, and move.",
"type": "object",
"properties": {
"getstarted": {
"$ref": "#/definitions/Link"
},
"learn": {
"$ref": "#/definitions/Link"
},
"license": {
"$ref": "#/definitions/Link"
},
"privacypolicy": {
"$ref": "#/definitions/Link"
},
"support": {
"$ref": "#/definitions/Link"
}
},
"additionalProperties": {
"$ref": "#/definitions/Link"
}
},
"publisher": {
"description": "The identifier of the publisher. This identifier must match the identifier the extension is published under.",
"type": "string"
},
"repository": {
"description": "Dictionary of properties describing the source code repository for the extension.",
"type": "object",
"properties": {
"type": {
"description": "Type of repository. Example: git.",
"type": "string"
},
"uri": {
"description": "Absolute URL of the repository.",
"type": "string"
}
}
},
"restrictedTo": {
"description": "Default user claims applied to all contributions (except the ones which have been specified restrictedTo explicitly) to control the visibility of a contribution.",
"items": {
"type": "string"
},
"type": "array"
},
"scopes": {
"description": "List of all oauth scopes required by this extension",
"items": {
"type": "string"
},
"type": "array"
},
"screenshots": {
"description": "Array of images that couldn't be included in your content.",
"type": "array",
"items": {
"$ref": "#/definitions/Content"
}
},
"serviceInstanceType": {
"description": "The ServiceInstanceType(Guid) of the VSTS service that must be available to an account in order for the extension to be installed",
"type": "string"
},
"tags": {
"description": "Array of string tags to help users find your extension.",
"type": "array",
"items": {
"type": "string"
}
},
"targets": {
"description": "The products and services supported by your integration or extension.",
"type": "array",
"items": {
"$ref": "#/definitions/Target"
},
"minItems": 1
},
"version": {
"description": "A string specifying the version of an extension. Should be in the format major.minor.patch.",
"type": "string"
}
},
"type": "object"
}
| azure-devops-extension-manifest-1 |
{
"properties": {
"failedprobes": {
"readonly": true,
"type": "integer"
},
"lastresponse": {
"readonly": true,
"type": "string"
},
"monitor_name": {
"type": "string"
},
"monitor_state": {
"enum": [
"UP",
"DOWN",
"UNKNOWN",
"BUSY",
"OUT OF SERVICE",
"GOING OUT OF SERVICE",
"DOWN WHEN GOING OUT OF SERVICE",
"NS_EMPTY_STR",
"Unknown",
"DISABLED"
],
"readonly": true,
"type": "string"
},
"monitorcurrentfailedprobes": {
"readonly": true,
"type": "integer"
},
"monitortotalfailedprobes": {
"readonly": true,
"type": "integer"
},
"monitortotalprobes": {
"readonly": true,
"type": "integer"
},
"monstatcode": {
"readonly": true,
"type": "integer"
},
"monstate": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"monstatparam1": {
"readonly": true,
"type": "integer"
},
"monstatparam2": {
"readonly": true,
"type": "integer"
},
"monstatparam3": {
"readonly": true,
"type": "integer"
},
"responsetime": {
"readonly": true,
"type": "integer"
},
"servicename": {
"type": "string"
},
"totalfailedprobes": {
"readonly": true,
"type": "integer"
},
"weight": {
"type": "integer"
}
},
"title": "gslbservice_lbmonitor_binding",
"type": "object"
} | o30476 |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"properties": {
"bar": {
"type": "string",
"maxLength": 10
},
"baz": {
"type": "number",
"maxLength": 10
}
}
} | o25190 |
{
"properties": {
"Locationfile": {
"readonly": true,
"type": "string"
},
"Static": {
"readonly": true,
"type": "integer"
},
"builtin": {
"enum": [
"MODIFIABLE",
"DELETABLE",
"IMMUTABLE",
"PARTITION_ALL"
],
"readonly": true,
"type": "object"
},
"context": {
"enum": [
"geographic",
"custom"
],
"type": "string"
},
"custom": {
"readonly": true,
"type": "integer"
},
"custom6": {
"readonly": true,
"type": "integer"
},
"databasemode": {
"enum": [
"File",
"Internal",
"Not applicable"
],
"readonly": true,
"type": "string"
},
"entries": {
"readonly": true,
"type": "integer"
},
"entries6": {
"readonly": true,
"type": "integer"
},
"errors": {
"readonly": true,
"type": "integer"
},
"errors6": {
"readonly": true,
"type": "integer"
},
"feature": {
"enum": [
"WL",
"WebLogging",
"SP",
"SurgeProtection",
"LB",
"LoadBalancing",
"CS",
"ContentSwitching",
"CR",
"CacheRedirection",
"SC",
"SureConnect",
"CMP",
"CMPcntl",
"CompressionControl",
"PQ",
"PriorityQueuing",
"HDOSP",
"HttpDoSProtection",
"SSLVPN",
"AAA",
"GSLB",
"GlobalServerLoadBalancing",
"SSL",
"SSLOffload",
"SSLOffloading",
"CF",
"ContentFiltering",
"IC",
"IntegratedCaching",
"OSPF",
"OSPFRouting",
"RIP",
"RIPRouting",
"BGP",
"BGPRouting",
"REWRITE",
"IPv6PT",
"IPv6protocoltranslation",
"AppFw",
"ApplicationFirewall",
"RESPONDER",
"HTMLInjection",
"push",
"NSPush",
"NetScalerPush",
"AppFlow",
"CloudBridge",
"ISIS",
"ISISRouting",
"CH",
"CallHome",
"AppQoE",
"ContentAccelerator",
"SYSTEM",
"RISE",
"FEO",
"LSN",
"LargeScaleNAT",
"RDPProxy",
"Rep",
"Reputation",
"URLFiltering",
"VideoOptimization",
"ForwardProxy",
"SSLInterception",
"AdaptiveTCP",
"CQA",
"CI",
"ContentInspection",
"Bot"
],
"readonly": true,
"type": "string"
},
"flags": {
"readonly": true,
"type": "integer"
},
"flushing": {
"enum": [
"In progress",
"Idle"
],
"readonly": true,
"type": "string"
},
"format": {
"enum": [
"netscaler",
"ip-country",
"ip-country-isp",
"ip-country-region-city",
"ip-country-region-city-isp",
"geoip-country",
"geoip-region",
"geoip-city",
"geoip-country-org",
"geoip-country-isp",
"geoip-city-isp-org"
],
"readonly": true,
"type": "string"
},
"format6": {
"enum": [
"netscaler6",
"geoip-country6"
],
"readonly": true,
"type": "string"
},
"lines": {
"readonly": true,
"type": "integer"
},
"lines6": {
"readonly": true,
"type": "integer"
},
"loading": {
"enum": [
"In progress",
"Idle"
],
"readonly": true,
"type": "string"
},
"locationfile6": {
"readonly": true,
"type": "string"
},
"matchwildcardtoany": {
"enum": [
"YES",
"NO"
],
"readonly": true,
"type": "string"
},
"q1label": {
"type": "string"
},
"q2label": {
"type": "string"
},
"q3label": {
"type": "string"
},
"q4label": {
"type": "string"
},
"q5label": {
"type": "string"
},
"q6label": {
"type": "string"
},
"static6": {
"readonly": true,
"type": "integer"
},
"status": {
"readonly": true,
"type": "integer"
},
"warnings": {
"readonly": true,
"type": "integer"
},
"warnings6": {
"readonly": true,
"type": "integer"
}
},
"title": "locationparameter",
"type": "object"
} | o30212 |
{
"properties": {
"flat": {
"default": false,
"description": "Flag to indicate if a dir is created.",
"type": "boolean"
},
"name": {
"$default": {
"$source": "argv",
"index": 0
},
"description": "The name of the component to add the sandbox to.",
"type": "string"
},
"path": {
"description": "The path to create the sandbox.",
"format": "path",
"type": "string",
"visible": false
}
},
"required": [],
"title": "Angular Playground's Sandbox",
"type": "object"
} | o14406 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"config",
"inputs"
],
"type": "object",
"properties": {
"inputs": {
"required": [
"dwi_file",
"bvecs_file",
"subsampling_vec",
"bvals_file"
],
"type": "object",
"properties": {
"dwi_file": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
},
"bvecs_file": {
"type": "object",
"properties": {
"type": {
"enum": [
"bvec"
]
}
}
},
"subsampling_vec": {
"type": "object",
"properties": {
"type": {
"enum": [
"tabular data"
]
}
}
},
"bvals_file": {
"type": "object",
"properties": {
"type": {
"enum": [
"bval"
]
}
}
}
}
},
"config": {
"required": [
"sh_filename",
"mean_diffusion_length",
"spherical_harmonics_order"
],
"type": "object",
"properties": {
"sh_filename": {
"default": "sumas_sh_coeff.nii",
"type": "string",
"description": "Output filename of 4D spherical harmonic coefficient data."
},
"mean_diffusion_length": {
"default": 1.2,
"type": "number",
"description": "The mean diffusion length for reconstruction of GQI matrix."
},
"spherical_harmonics_order": {
"default": 8,
"type": "integer",
"description": "Maximum order of spherical harmonics."
}
}
}
},
"title": "Invocation manifest for HDFT Subsampled Diffusion Reconstruction"
} | o41498 |
{
"id": "http://schemas.gdbots.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}$"
},
"ok": {
"type": "boolean",
"default": true
},
"code": {
"type": "integer",
"default": 0,
"minimum": 0,
"maximum": 65535
},
"http_code": {
"type": "integer",
"default": 200,
"enum": [
0,
100,
101,
102,
200,
201,
202,
203,
204,
205,
206,
207,
208,
226,
300,
301,
302,
303,
304,
305,
306,
307,
308,
400,
401,
402,
403,
404,
405,
406,
407,
408,
409,
410,
411,
412,
413,
414,
415,
416,
417,
418,
422,
423,
424,
425,
426,
428,
429,
499,
431,
451,
500,
501,
502,
503,
504,
505,
506,
507,
508,
510,
511
]
},
"etag": {
"type": "string",
"pattern": "^[\\w\\.:-]+$"
},
"error_name": {
"type": "string",
"pattern": "^[\\w\\/\\.:-]+$"
},
"error_message": {
"type": "string",
"minLength": 0,
"maxLength": 65535
},
"message_ref": {
"type": "object",
"properties": {
"curie": {
"type": "string",
"pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$",
"minLength": 0,
"maxLength": 146
},
"id": {
"type": "string",
"pattern": "^[A-Za-z0-9:_\\-]+$",
"minLength": 0,
"maxLength": 255
},
"tag": {
"type": "string",
"pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$",
"minLength": 0,
"maxLength": 255
}
},
"required": [
"curie",
"id"
],
"additionalProperties": false
},
"message": {
"type": "object"
},
"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."
}
},
"required": [
"_schema",
"envelope_id"
],
"additionalProperties": false
} | o42889 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"config",
"inputs"
],
"type": "object",
"properties": {
"inputs": {
"required": [
"dtiInit_Archive"
],
"type": "object",
"properties": {
"dtiInit_Archive": {
"type": "object",
"properties": {
"type": {
"enum": [
"archive"
]
}
}
}
}
},
"config": {
"required": [
"cleanIter",
"imresample",
"track_algorithm",
"computeCSD",
"fiberWeighting",
"qmr_meatadata_age",
"track_minLengthThreshMm",
"qmr_metadata_sex",
"savefigs",
"track_faThresh",
"maxDist",
"track_whichAlgorithm",
"clip2rois",
"track_offsetJitter",
"track_nfibers",
"cutoffUpper",
"cleanClippedFibers",
"numberOfNodes",
"cleanFibers",
"qmr_runcontrolcomp",
"track_faMaskThresh",
"track_wPuncture",
"maxLen",
"computenorms",
"track_angleThresh",
"track_seedVoxelOffset_1",
"normalization",
"qmr_metadata_bvalue",
"cutoffLower",
"track_stepSizeMm",
"track_whichInterp",
"track_maxLengthThreshMm",
"qmr_metadata_age_comp",
"qmr_metadata_ndirs",
"track_seedVoxelOffset_2"
],
"type": "object",
"properties": {
"cleanIter": {
"default": 5,
"type": "integer",
"description": "Maximum number of iterations of the cleaning algorithm."
},
"imresample": {
"default": 0,
"type": "integer",
"description": "For aditional images that are passed into afq you can set a resolution to resample those images to before computing tract profiles (e.g., [2 2 2])"
},
"track_algorithm": {
"default": "mrdiffusion",
"type": "string",
"description": "Do fiber tracking with mrdiffusion by default. The other option is 'mrtrix' if it is installed and the data is HARDI."
},
"computeCSD": {
"default": 0,
"type": "integer",
"description": "Whether or not to compute constrained spherical deconvolution using mrtrix. 0 means don't use mrtrix. 1 means use mrtrix with the default lmax (4). Otherwise you can set the lmax by with a scaler."
},
"fiberWeighting": {
"default": 1,
"type": "integer",
"description": "Set the amount of weighting that will be applied when calculating tract profiles. 0 means that each fiber contributes equally. 1 means that we apply gaussian weighting where each fibers contribution to the measurement at a node is weighted by its gaussian distance from the tract core. Values greater than 1 mean that the core of the tract is weighted more heavily and fibers futher from the core are weighted less heavily (faster fall off than a gaussian). See AFQ_ComputeTractProperties."
},
"qmr_meatadata_age": {
"default": 0,
"type": "integer",
"description": "Age of subject in years."
},
"track_minLengthThreshMm": {
"default": 50,
"type": "integer",
"description": "Discard Fibers shorter than this threshold in mm."
},
"track_angleThresh": {
"default": 30,
"type": "integer",
"description": "Stopping criteria angle between steps >30 degrees."
},
"qmr_metadata_sex": {
"default": "unknown",
"type": "string",
"description": "Sex of subject. ('male', 'female', 'unknown')"
},
"qmr_runcontrolcomp": {
"default": 1,
"type": "integer",
"description": "Compare subject to control dataset. For a description of the control dataset, see 'Lifespan maturation and degeneration of human brain white matter' J.D. Yeatman, B.A. Wandell and A. Mezer (2014) NATURE COMMUNICATIONS | 5:4932 | DOI: 10.1038/ncomms5932."
},
"track_faThresh": {
"default": 0.2,
"type": "number",
"description": "Stopping criteria FA<0.2"
},
"maxDist": {
"default": 5,
"type": "integer",
"description": "Remove fibers that are more than 'maxDist' standard deviations from the core of the tract. (Default = 5 standard deviations). cleanFibers must be set to 1."
},
"clip2rois": {
"default": 1,
"type": "integer",
"description": "Should we analyze the whole length of the fiber group or just the central portion spanning between 2 ROIs. (1=YES, 0=NO)"
},
"track_offsetJitter": {
"default": 0,
"type": "number",
"description": "Offset Jitter is the standard deviation of a a random jitter applied to the seeds (in voxel units). E.g., offsetJitter=0.1 will jitter each seedVoxelOffset by a random amount with mean 0 and sigma 0.1. This adds some randomness to each seed point. Each seed point is move randomly by randn*.1mm"
},
"track_nfibers": {
"default": 500000,
"type": "integer",
"description": "Number of fibers to track. This parameter is only relevant for mrTrix."
},
"savefigs": {
"default": 0,
"type": "integer",
"description": "Save figures of fiber groups. (1=yes, 0=no)"
},
"cleanClippedFibers": {
"default": 0,
"type": "integer",
"description": "If cleanFibers == 1, then this will indicate whether to perform the cleaning on just the clipped portion of the tract or on the full tract. This may be helpful for tracts like the ILF that are extremely messy with looping fibers etc."
},
"numberOfNodes": {
"default": 100,
"type": "integer",
"description": "The number of nodes to represent each fiber."
},
"qmr_metadata_bvalue": {
"default": 1000,
"type": "integer",
"description": "B-Value for control data (1000, 2000)."
},
"cutoffUpper": {
"default": 90,
"type": "integer",
"description": "The upper percentile cutoff to be used to determine what is 'abnormal' The default is cutoff = [10 90] meaning that subjects who fall below the 10th percentile or above the 90th percentile will be considered 'abnormal' and their data will be plotted with respect to the control population."
},
"track_faMaskThresh": {
"default": 0.3,
"type": "number",
"description": "FA mask threshold from which to initialize tracking."
},
"track_wPuncture": {
"default": 0.2,
"type": "number",
"description": "This coefficient can take on values from 0 to 1, and affects how much the propagation should be encouraged to “puncture” through planar tensors oriented normal to its path, versus turning into the plane."
},
"maxLen": {
"default": 4,
"type": "integer",
"description": "Remove fibers that are more than 'maxLen' standard deviations from the mean fiber length. (Default = 4 standard deviations). cleanFibers must be set to 1."
},
"computenorms": {
"default": 1,
"type": "integer",
"description": "Whether or not to comput control group norms."
},
"track_whichAlgorithm": {
"default": 1,
"type": "integer",
"description": "Algorithm type for tractography (0=STT Euler, 1=STT RK4, 2=TEND Euler, 3=TEND RK4). Default is STT. See: Basser PJ, Pajevic S, Pierpaoli C, Duda J, Aldroubi A. 2000. In vivo fiber tractography using DT-MRI data. Magnetic Resonance in Medicine 44(4):625-32."
},
"track_seedVoxelOffset_1": {
"default": 0.25,
"type": "number",
"description": "seedVoxelOffsets is the relative position of the seed(s) within each seed voxel. E.g., seedVoxelOffsets = [0.5] will put one seed at the center of each voxel, while [0.25 0.75] will place 8 seeds in each voxel. Note that every seed voxel gets at least one seed."
},
"track_maxLengthThreshMm": {
"default": 250,
"type": "integer",
"description": "Discard Fibers longer than this threshold in mm."
},
"normalization": {
"default": "spm",
"type": "string",
"description": "Which software package to use for normalization. ('spm', 'ants')"
},
"cutoffLower": {
"default": 10,
"type": "integer",
"description": "The lower percentile cutoff to be used to determine what is 'abnormal' The default is cutoff = [10 90] meaning that subjects who fall below the 10th percentile or above the 90th percentile will be considered 'abnormal' and their data will be plotted with respect to the control population."
},
"track_stepSizeMm": {
"default": 1,
"type": "integer",
"description": "Distance between steps in the tractography algoithm."
},
"track_whichInterp": {
"default": 1,
"type": "integer",
"description": "Interpolation Type (0=NN, 1=linear): After each step we interpolate the tensor at that point. Trilinear interpolation works well."
},
"cleanFibers": {
"default": 1,
"type": "integer",
"description": "cleanFibers == 1 (default) means that once all the fiber groups have been segmented they will be cleaned such that any fiber that (1) is more than params.maxLen standard deviations above the mean fiber length will be removed and (2) any fiber that is more than params.maxDist standard deviations from the core of the tract will be removed. this means that fibers groups will be forced to be a compact bundle. (1 = YES, 0 = NO)"
},
"qmr_metadata_age_comp": {
"default": 0,
"type": "integer",
"description": "Restrict comparison to 'age matched' based on the age of the subject."
},
"qmr_metadata_ndirs": {
"default": 30,
"type": "integer",
"description": "Number of directions for control data (30, 96)."
},
"track_seedVoxelOffset_2": {
"default": 0.75,
"type": "number",
"description": "seedVoxelOffsets is the relative position of the seed(s) within each seed voxel. E.g., seedVoxelOffsets = [0.5] will put one seed at the center of each voxel, while [0.25 0.75] will place 8 seeds in each voxel. Note that every seed voxel gets at least one seed."
}
}
}
},
"title": "Invocation manifest for AFQ: Automated Fiber Quantification"
} | o41390 |
{
"id": "https://github.com/codedellemc/libstorage",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "libStorage JSON Schema",
"definitions": {
"volume": {
"title": "Volume",
"description": "Volume provides information about a storage volume.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ID is a piece of information that uniquely identifies the volume on the storage platform to which the volume belongs. A volume ID is not guaranteed to be unique across multiple, configured services."
},
"name": {
"type": "string",
"description": "The volume name."
},
"type": {
"type": "string",
"description": "The volume type."
},
"attachments": {
"type": "array",
"description": "The volume's attachments.",
"items": {
"$ref": "#/definitions/volumeAttachment"
}
},
"attachmentState": {
"type": "number",
"description": "Indicates the volume's attachment state - 0=none,1=unknown,2=attached,3=available,4=unavailable. A volume is marked as attached if attached to the instance specified in the requesting API call. A volume that is attached but not to the requesting instance is marked as unavailable.",
"minimum": 0,
"maximum": 4
},
"availabilityZone": {
"type": "string",
"description": "The zone for which the volume is available."
},
"encrypted": {
"type": "boolean",
"description": "A flag indicating whether or not the volume is encrypted."
},
"iops": {
"type": "number",
"description": "The volume IOPs."
},
"networkName": {
"type": "string",
"description": "The name of the network on which the volume resides."
},
"size": {
"type": "number",
"description": "The volume size (GB)."
},
"status": {
"type": "string",
"description": "The volume status."
},
"fields": {
"$ref": "#/definitions/fields"
}
},
"required": [
"id",
"name"
],
"additionalProperties": false
},
"volumeAttachment": {
"title": "VolumeAttachment",
"description": " VolumeAttachment provides information about an object attached to a storage volume.",
"type": "object",
"properties": {
"instanceID": {
"$ref": "#/definitions/instanceID"
},
"deviceName": {
"type": "string",
"description": "The name of the device on to which the volume is mounted."
},
"status": {
"type": "string",
"description": "The status of the attachment."
},
"volumeID": {
"type": "string",
"description": "The ID of the volume to which the attachment belongs."
},
"mountPoint": {
"type": "string",
"description": "The file system path to which the volume is mounted."
},
"fields": {
"$ref": "#/definitions/fields"
}
},
"required": [
"instanceID",
"deviceName",
"volumeID"
],
"additionalProperties": false
},
"instanceID": {
"title": "InstanceID",
"description": "InstanceID identifies a host to a remote storage platform.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The instance ID."
},
"driver": {
"type": "string",
"description": "The name of the driver that created the instance ID."
},
"service": {
"type": "string",
"description": "The name of the service for which the instance ID is valid."
},
"formatted": {
"type": "boolean",
"description": "A flag indicating whether or not the instance ID has been formatted by an instance inspection."
},
"metadata": {
"type": "object",
"description": "Extra information about the instance ID."
}
},
"required": [
"id",
"driver"
],
"additionalProperties": false
},
"instance": {
"title": "Instance",
"description": "Instance is additional information about a host, generated using the InstanceID.",
"type": "object",
"properties": {
"instanceID": {
"$ref": "#/definitions/instanceID"
},
"name": {
"type": "string",
"description": "The name of the instance."
},
"providerName": {
"type": "string",
"description": "The name of the provider that owns the object."
},
"region": {
"type": "string",
"description": "The region from which the object originates."
},
"fields": {
"$ref": "#/definitions/fields"
}
},
"required": [
"id"
],
"additionalProperties": false
},
"snapshot": {
"title": "Snapshot",
"description": "Snapshot provides information about a storage volume snapshot.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The snapshot's ID."
},
"name": {
"type": "string",
"description": "The name of the snapshot."
},
"description": {
"type": "string",
"description": "A description of the snapshot."
},
"encrypted": {
"type": "boolean",
"description": "A flag indicating whether or not the snapshot is encrypted."
},
"startTime": {
"type": "number",
"description": "The time (epoch) at which the request to create the snapshot was submitted."
},
"status": {
"type": "string",
"description": "The status of the snapshot."
},
"volumeID": {
"type": "string",
"description": "The ID of the volume to which the snapshot belongs."
},
"volumeSize": {
"type": "number",
"description": "The size of the volume to which the snapshot belongs."
},
"fields": {
"$ref": "#/definitions/fields"
}
},
"required": [
"id"
],
"additionalProperties": false
},
"task": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "The task's unique identifier."
},
"name": {
"type": "string",
"description": "The name of the task."
},
"user": {
"type": "string",
"description": "The name of the user that created the task."
},
"completeTime": {
"type": "number",
"description": "The time stamp (epoch) when the task was completed."
},
"queueTime": {
"type": "number",
"description": "The time stamp (epoch) when the task was created."
},
"startTime": {
"type": "number",
"description": "The time stamp (epoch) when the task started running."
},
"result": {
"type": "object",
"description": "The result of the operation."
},
"error": {
"type": "object",
"description": "If the operation returned an error, this is it."
},
"fields": {
"$ref": "#/definitions/fields"
}
},
"required": [
"id",
"name",
"user",
"queueTime"
],
"additionalProperties": false
},
"serviceInfo": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name is the service's name."
},
"instance": {
"$ref": "#/definitions/instance"
},
"driver": {
"$ref": "#/definitions/driverInfo"
}
},
"required": [
"name",
"driver"
],
"additionalProperties": false
},
"driverInfo": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Ignore is a flag that indicates whether the client logic should invoke the GetNextAvailableDeviceName function prior to submitting an AttachVolume request to the server."
},
"type": {
"type": "string",
"description": "Type is the type of storage the driver provides: block, nas, object."
},
"nextDevice": {
"$ref": "#/definitions/nextDeviceInfo"
}
},
"required": [
"name",
"type"
],
"additionalProperties": false
},
"executorInfo": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the executor."
},
"md5checksum": {
"type": "string",
"description": "The file's MD5 checksum. This can be used to determine if a local copy of the executor needs to be updated."
},
"size": {
"type": "number",
"description": "The size of the executor, in bytes."
},
"lastModified": {
"type": "number",
"description": "The time the executor was last modified as an epoch."
}
},
"required": [
"name",
"md5checksum",
"size",
"lastModified"
],
"additionalProperties": false
},
"nextDeviceInfo": {
"type": "object",
"properties": {
"ignore": {
"type": "boolean",
"description": "Ignore is a flag that indicates whether the client logic should invoke the GetNextAvailableDeviceName function prior to submitting an AttachVolume request to the server."
},
"prefix": {
"type": "string",
"description": "Prefix is the first part of a device path's value after the \"/dev/\" portion. For example, the prefix in \"/dev/xvda\" is \"xvd\"."
},
"pattern": {
"type": "string",
"description": "Pattern is the regex to match the part of a device path after the prefix."
}
},
"additionalProperties": false
},
"fields": {
"type": "object",
"description": "Fields are additional properties that can be defined for this type.",
"patternProperties": {
".+": {
"type": "string"
}
},
"additionalProperties": true
},
"volumeMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/volume"
}
},
"additionalProperties": false
},
"snapshotMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/snapshot"
}
},
"additionalProperties": false
},
"taskMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/task"
}
},
"additionalProperties": false
},
"serviceVolumeMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/volumeMap"
}
},
"additionalProperties": false
},
"serviceSnapshotMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/snapshotMap"
}
},
"additionalProperties": false
},
"serviceTaskMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/taskMap"
}
},
"additionalProperties": false
},
"serviceInfoMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/serviceInfo"
}
},
"additionalProperties": false
},
"executorInfoMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/executorInfo"
}
},
"additionalProperties": false
},
"driverInfoMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/driverInfo"
}
},
"additionalProperties": false
},
"opts": {
"type": "object",
"description": "Opts are additional properties that can be defined for POST requests.",
"patternProperties": {
"^.+$": {
"anyOf": [
{
"type": "array"
},
{
"type": "boolean"
},
{
"type": "integer"
},
{
"type": "number"
},
{
"type": "null"
},
{
"type": "string"
},
{
"$ref": "#/definitions/opts"
}
]
}
},
"additionalProperties": true
},
"volumeCreateRequest": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"availabilityZone": {
"type": "string"
},
"encrypted": {
"type": "boolean"
},
"encryptionKey": {
"type": "string"
},
"iops": {
"type": "number"
},
"size": {
"type": "number"
},
"type": {
"type": "string"
},
"opts": {
"$ref": "#/definitions/opts"
}
},
"required": [
"name"
],
"additionalProperties": false
},
"volumeCopyRequest": {
"type": "object",
"properties": {
"volumeName": {
"type": "string"
},
"opts": {
"$ref": "#/definitions/opts"
}
},
"required": [
"volumeName"
],
"additionalProperties": false
},
"volumeSnapshotRequest": {
"type": "object",
"properties": {
"snapshotName": {
"type": "string"
},
"opts": {
"$ref": "#/definitions/opts"
}
},
"required": [
"snapshotName"
],
"additionalProperties": false
},
"volumeAttachRequest": {
"type": "object",
"properties": {
"nextDeviceName": {
"type": "string"
},
"force": {
"type": "boolean"
},
"opts": {
"$ref": "#/definitions/opts"
}
},
"additionalProperties": false
},
"volumeAttachResponse": {
"type": "object",
"properties": {
"volume": {
"$ref": "#/definitions/volume"
},
"attachToken": {
"type": "string"
}
},
"required": [
"volume",
"attachToken"
],
"additionalProperties": false
},
"volumeDetachRequest": {
"type": "object",
"properties": {
"force": {
"type": "boolean"
},
"opts": {
"$ref": "#/definitions/opts"
}
},
"additionalProperties": false
},
"snapshotCopyRequest": {
"type": "object",
"properties": {
"snapshotName": {
"type": "string"
},
"destinationID": {
"type": "string"
},
"opts": {
"$ref": "#/definitions/opts"
}
},
"required": [
"snapshotName",
"destinationID"
],
"additionalProperties": false
},
"snapshotRemoveRequest": {
"type": "object",
"properties": {
"opts": {
"$ref": "#/definitions/opts"
}
},
"additionalProperties": false
},
"error": {
"type": "object",
"properties": {
"message": {
"type": "string",
"pattern": "^.{10,}|.*[Ee]rror$"
},
"status": {
"type": "number",
"minimum": 400,
"maximum": 599
},
"error": {
"type": "object",
"additionalProperties": true
}
},
"required": [
"message",
"status"
],
"additionalProperties": false
}
},
"properties": {
"volume": {
"$ref": "#/definitions/volume"
},
"volumeAttachment": {
"$ref": "#/definitions/volumeAttachment"
},
"instanceID": {
"$ref": "#/definitions/instanceID"
},
"instance": {
"$ref": "#/definitions/instance"
},
"snapshot": {
"$ref": "#/definitions/snapshot"
},
"task": {
"$ref": "#/definitions/task"
},
"serviceInfo": {
"$ref": "#/definitions/serviceInfo"
},
"driverInfo": {
"$ref": "#/definitions/driverInfo"
},
"executorInfo": {
"$ref": "#/definitions/executorInfo"
},
"nextDeviceInfo": {
"$ref": "#/definitions/nextDeviceInfo"
},
"fields": {
"$ref": "#/definitions/fields"
},
"volumeMap": {
"$ref": "#/definitions/volumeMap"
},
"snapshotMap": {
"$ref": "#/definitions/snapshotMap"
},
"taskMap": {
"$ref": "#/definitions/taskMap"
},
"serviceVolumeMap": {
"$ref": "#/definitions/serviceVolumeMap"
},
"serviceSnapshotMap": {
"$ref": "#/definitions/serviceSnapshotMap"
},
"serviceTaskMap": {
"$ref": "#/definitions/serviceTaskMap"
},
"serviceInfoMap": {
"$ref": "#/definitions/serviceInfoMap"
},
"executorInfoMap": {
"$ref": "#/definitions/executorInfoMap"
},
"driverInfoMap": {
"$ref": "#/definitions/driverInfoMap"
},
"opts": {
"$ref": "#/definitions/opts"
},
"volumeCreateRequest": {
"$ref": "#/definitions/volumeCreateRequest"
},
"volumeCopyRequest": {
"$ref": "#/definitions/volumeCopyRequest"
},
"volumeSnapshotRequest": {
"$ref": "#/definitions/volumeSnapshotRequest"
},
"volumeAttachRequest": {
"$ref": "#/definitions/volumeAttachRequest"
},
"volumeAttachResponse": {
"$ref": "#/definitions/volumeAttachResponse"
},
"volumeDetachRequest": {
"$ref": "#/definitions/volumeDetachRequest"
},
"snapshotCopyRequest": {
"$ref": "#/definitions/snapshotCopyRequest"
},
"snapshotRemoveRequest": {
"$ref": "#/definitions/snapshotRemoveRequest"
},
"error": {
"$ref": "#/definitions/error"
}
},
"required": [
"volume",
"volumeAttachment",
"instanceID",
"instance",
"snapshot",
"task",
"serviceInfo",
"driverInfo",
"executorInfo",
"nextDeviceInfo",
"fields",
"volumeMap",
"snapshotMap",
"taskMap",
"serviceVolumeMap",
"serviceSnapshotMap",
"serviceTaskMap",
"serviceInfoMap",
"executorInfoMap",
"driverInfoMap",
"opts",
"volumeCreateRequest",
"volumeCopyRequest",
"volumeSnapshotRequest",
"volumeAttachRequest",
"volumeAttachResponse",
"volumeDetachRequest",
"snapshotCopyRequest",
"snapshotRemoveRequest",
"error"
]
} | o10346 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/ProjectConfig",
"definitions": {
"AWSElasticBlockStoreVolumeSource": {
"properties": {
"fsType": {
"type": "string"
},
"partition": {
"type": "integer"
},
"readOnly": {
"type": "boolean"
},
"volumeID": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"AddonConfig": {
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"Agent": {
"properties": {
"container": {
"type": "string"
},
"dir": {
"type": "string"
},
"image": {
"type": "string"
},
"label": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"AzureDiskVolumeSource": {
"properties": {
"cachingMode": {
"type": "string"
},
"diskName": {
"type": "string"
},
"diskURI": {
"type": "string"
},
"fsType": {
"type": "string"
},
"kind": {
"type": "string"
},
"readOnly": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"AzureFileVolumeSource": {
"properties": {
"readOnly": {
"type": "boolean"
},
"secretName": {
"type": "string"
},
"shareName": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"CSIVolumeSource": {
"properties": {
"driver": {
"type": "string"
},
"fsType": {
"type": "string"
},
"nodePublishSecretRef": {
"$ref": "#/definitions/LocalObjectReference"
},
"readOnly": {
"type": "boolean"
},
"volumeAttributes": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"additionalProperties": false,
"type": "object"
},
"CephFSVolumeSource": {
"properties": {
"monitors": {
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"type": "string"
},
"readOnly": {
"type": "boolean"
},
"secretFile": {
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/LocalObjectReference"
},
"user": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"ChatConfig": {
"properties": {
"developerChannel": {
"type": "string"
},
"kind": {
"type": "string"
},
"url": {
"type": "string"
},
"userChannel": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"CinderVolumeSource": {
"properties": {
"fsType": {
"type": "string"
},
"readOnly": {
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/LocalObjectReference"
},
"volumeID": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigMapKeySelector": {
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigMapProjection": {
"properties": {
"items": {
"items": {
"$ref": "#/definitions/KeyToPath"
},
"type": "array"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigMapVolumeSource": {
"properties": {
"defaultMode": {
"type": "integer"
},
"items": {
"items": {
"$ref": "#/definitions/KeyToPath"
},
"type": "array"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"Container": {
"additionalProperties": true,
"type": "object"
},
"DownwardAPIProjection": {
"properties": {
"items": {
"items": {
"$ref": "#/definitions/DownwardAPIVolumeFile"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"DownwardAPIVolumeFile": {
"properties": {
"fieldRef": {
"$ref": "#/definitions/ObjectFieldSelector"
},
"mode": {
"type": "integer"
},
"path": {
"type": "string"
},
"resourceFieldRef": {
"$ref": "#/definitions/ResourceFieldSelector"
}
},
"additionalProperties": false,
"type": "object"
},
"DownwardAPIVolumeSource": {
"properties": {
"defaultMode": {
"type": "integer"
},
"items": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/DownwardAPIVolumeFile"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"EmptyDirVolumeSource": {
"properties": {
"medium": {
"type": "string"
},
"sizeLimit": {
"$ref": "#/definitions/Quantity"
}
},
"additionalProperties": false,
"type": "object"
},
"EnvVar": {
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/EnvVarSource"
}
},
"additionalProperties": false,
"type": "object"
},
"EnvVarSource": {
"properties": {
"configMapKeyRef": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/ConfigMapKeySelector"
},
"fieldRef": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/ObjectFieldSelector"
},
"resourceFieldRef": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/ResourceFieldSelector"
},
"secretKeyRef": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/SecretKeySelector"
}
},
"additionalProperties": false,
"type": "object"
},
"FCVolumeSource": {
"properties": {
"fsType": {
"type": "string"
},
"lun": {
"type": "integer"
},
"readOnly": {
"type": "boolean"
},
"targetWWNs": {
"items": {
"type": "string"
},
"type": "array"
},
"wwids": {
"items": {
"type": "string"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"FlexVolumeSource": {
"properties": {
"driver": {
"type": "string"
},
"fsType": {
"type": "string"
},
"options": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"readOnly": {
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/LocalObjectReference"
}
},
"additionalProperties": false,
"type": "object"
},
"FlockerVolumeSource": {
"properties": {
"datasetName": {
"type": "string"
},
"datasetUUID": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"GCEPersistentDiskVolumeSource": {
"properties": {
"fsType": {
"type": "string"
},
"partition": {
"type": "integer"
},
"pdName": {
"type": "string"
},
"readOnly": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"GitRepoVolumeSource": {
"properties": {
"directory": {
"type": "string"
},
"repository": {
"type": "string"
},
"revision": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"GlusterfsVolumeSource": {
"properties": {
"endpoints": {
"type": "string"
},
"path": {
"type": "string"
},
"readOnly": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"HostPathVolumeSource": {
"properties": {
"path": {
"type": "string"
},
"type": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"ISCSIVolumeSource": {
"properties": {
"chapAuthDiscovery": {
"type": "boolean"
},
"chapAuthSession": {
"type": "boolean"
},
"fsType": {
"type": "string"
},
"initiatorName": {
"type": "string"
},
"iqn": {
"type": "string"
},
"iscsiInterface": {
"type": "string"
},
"lun": {
"type": "integer"
},
"portals": {
"items": {
"type": "string"
},
"type": "array"
},
"readOnly": {
"type": "boolean"
},
"secretRef": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/LocalObjectReference"
},
"targetPortal": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"IssueTrackerConfig": {
"properties": {
"kind": {
"type": "string"
},
"project": {
"type": "string"
},
"url": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"KeyToPath": {
"properties": {
"key": {
"type": "string"
},
"mode": {
"type": "integer"
},
"path": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"LocalObjectReference": {
"properties": {
"name": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"Loop": {
"properties": {
"steps": {
"items": {
"$ref": "#/definitions/Step"
},
"type": "array"
},
"values": {
"items": {
"type": "string"
},
"type": "array"
},
"variable": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"NFSVolumeSource": {
"properties": {
"path": {
"type": "string"
},
"readOnly": {
"type": "boolean"
},
"server": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"ObjectFieldSelector": {
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"ParsedPipeline": {
"properties": {
"agent": {
"$ref": "#/definitions/Agent"
},
"dir": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/definitions/EnvVar"
},
"type": "array"
},
"environment": {
"items": {
"$ref": "#/definitions/EnvVar"
},
"type": "array"
},
"options": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/RootOptions"
},
"post": {
"items": {
"$ref": "#/definitions/Post"
},
"type": "array"
},
"stages": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Stage"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"PersistentVolumeClaimVolumeSource": {
"properties": {
"claimName": {
"type": "string"
},
"readOnly": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"PhotonPersistentDiskVolumeSource": {
"properties": {
"fsType": {
"type": "string"
},
"pdID": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"PipelineConfig": {
"properties": {
"agent": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Agent"
},
"containerOptions": {
"$ref": "#/definitions/Container"
},
"env": {
"items": {
"$ref": "#/definitions/EnvVar"
},
"type": "array"
},
"environment": {
"type": "string"
},
"extends": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/PipelineExtends"
},
"pipelines": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Pipelines"
}
},
"additionalProperties": false,
"type": "object"
},
"PipelineExtends": {
"properties": {
"file": {
"type": "string"
},
"import": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"PipelineLifecycle": {
"properties": {
"preSteps": {
"items": {
"$ref": "#/definitions/Step"
},
"type": "array"
},
"replace": {
"type": "boolean"
},
"steps": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Step"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"PipelineLifecycles": {
"properties": {
"build": {
"$ref": "#/definitions/PipelineLifecycle"
},
"pipeline": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/ParsedPipeline"
},
"postBuild": {
"$ref": "#/definitions/PipelineLifecycle"
},
"preBuild": {
"$ref": "#/definitions/PipelineLifecycle"
},
"promote": {
"$ref": "#/definitions/PipelineLifecycle"
},
"setVersion": {
"$ref": "#/definitions/PipelineLifecycle"
},
"setup": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/PipelineLifecycle"
}
},
"additionalProperties": false,
"type": "object"
},
"PipelineOverride": {
"properties": {
"agent": {
"$ref": "#/definitions/Agent"
},
"containerOptions": {
"$ref": "#/definitions/Container"
},
"name": {
"type": "string"
},
"pipeline": {
"type": "string"
},
"sidecars": {
"items": {
"$ref": "#/definitions/Container"
},
"type": "array"
},
"stage": {
"type": "string"
},
"step": {
"$ref": "#/definitions/Step"
},
"steps": {
"items": {
"$ref": "#/definitions/Step"
},
"type": "array"
},
"type": {
"type": "string"
},
"volumes": {
"items": {
"$ref": "#/definitions/Volume"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"Pipelines": {
"properties": {
"default": {
"$ref": "#/definitions/ParsedPipeline"
},
"feature": {
"$ref": "#/definitions/PipelineLifecycles"
},
"overrides": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/PipelineOverride"
},
"type": "array"
},
"post": {
"$ref": "#/definitions/PipelineLifecycle"
},
"pullRequest": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/PipelineLifecycles"
},
"release": {
"$ref": "#/definitions/PipelineLifecycles"
}
},
"additionalProperties": false,
"type": "object"
},
"PortworxVolumeSource": {
"properties": {
"fsType": {
"type": "string"
},
"readOnly": {
"type": "boolean"
},
"volumeID": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"Post": {
"properties": {
"actions": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/PostAction"
},
"type": "array"
},
"condition": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"PostAction": {
"properties": {
"name": {
"type": "string"
},
"options": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"additionalProperties": false,
"type": "object"
},
"PreviewEnvironmentConfig": {
"properties": {
"disabled": {
"type": "boolean"
},
"maximumInstances": {
"type": "integer"
}
},
"additionalProperties": false,
"type": "object"
},
"ProjectConfig": {
"properties": {
"addons": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/AddonConfig"
},
"type": "array"
},
"buildPack": {
"type": "string"
},
"buildPackGitRef": {
"type": "string"
},
"buildPackGitURL": {
"type": "string"
},
"chat": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/ChatConfig"
},
"dockerRegistryHost": {
"type": "string"
},
"dockerRegistryOwner": {
"type": "string"
},
"env": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/EnvVar"
},
"type": "array"
},
"issueTracker": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/IssueTrackerConfig"
},
"noReleasePrepare": {
"type": "boolean"
},
"pipelineConfig": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/PipelineConfig"
},
"previewEnvironments": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/PreviewEnvironmentConfig"
},
"wiki": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/WikiConfig"
}
},
"additionalProperties": false,
"type": "object"
},
"ProjectedVolumeSource": {
"properties": {
"defaultMode": {
"type": "integer"
},
"sources": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/VolumeProjection"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"Quantity": {
"additionalProperties": false,
"type": "object"
},
"QuobyteVolumeSource": {
"properties": {
"group": {
"type": "string"
},
"readOnly": {
"type": "boolean"
},
"registry": {
"type": "string"
},
"tenant": {
"type": "string"
},
"user": {
"type": "string"
},
"volume": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"RBDVolumeSource": {
"properties": {
"fsType": {
"type": "string"
},
"image": {
"type": "string"
},
"keyring": {
"type": "string"
},
"monitors": {
"items": {
"type": "string"
},
"type": "array"
},
"pool": {
"type": "string"
},
"readOnly": {
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/LocalObjectReference"
},
"user": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"ResourceFieldSelector": {
"properties": {
"containerName": {
"type": "string"
},
"divisor": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Quantity"
},
"resource": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"RootOptions": {
"properties": {
"containerOptions": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Container"
},
"distributeParallelAcrossNodes": {
"type": "boolean"
},
"podLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"retry": {
"type": "integer"
},
"sidecars": {
"items": {
"$ref": "#/definitions/Container"
},
"type": "array"
},
"timeout": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Timeout"
},
"tolerations": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Toleration"
},
"type": "array"
},
"volumes": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Volume"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"ScaleIOVolumeSource": {
"properties": {
"fsType": {
"type": "string"
},
"gateway": {
"type": "string"
},
"protectionDomain": {
"type": "string"
},
"readOnly": {
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/LocalObjectReference"
},
"sslEnabled": {
"type": "boolean"
},
"storageMode": {
"type": "string"
},
"storagePool": {
"type": "string"
},
"system": {
"type": "string"
},
"volumeName": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"SecretKeySelector": {
"properties": {
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"SecretProjection": {
"properties": {
"items": {
"items": {
"$ref": "#/definitions/KeyToPath"
},
"type": "array"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"SecretVolumeSource": {
"properties": {
"defaultMode": {
"type": "integer"
},
"items": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/KeyToPath"
},
"type": "array"
},
"optional": {
"type": "boolean"
},
"secretName": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"ServiceAccountTokenProjection": {
"properties": {
"audience": {
"type": "string"
},
"expirationSeconds": {
"type": "integer"
},
"path": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"Stage": {
"properties": {
"agent": {
"$ref": "#/definitions/Agent"
},
"dir": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/definitions/EnvVar"
},
"type": "array"
},
"environment": {
"items": {
"$ref": "#/definitions/EnvVar"
},
"type": "array"
},
"name": {
"type": "string"
},
"options": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/StageOptions"
},
"parallel": {
"items": {
"$ref": "#/definitions/Stage"
},
"type": "array"
},
"post": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Post"
},
"type": "array"
},
"stages": {
"items": {
"$ref": "#/definitions/Stage"
},
"type": "array"
},
"steps": {
"items": {
"$ref": "#/definitions/Step"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"StageOptions": {
"properties": {
"containerOptions": {
"$ref": "#/definitions/Container"
},
"distributeParallelAcrossNodes": {
"type": "boolean"
},
"podLabels": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"retry": {
"type": "integer"
},
"sidecars": {
"items": {
"$ref": "#/definitions/Container"
},
"type": "array"
},
"stash": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Stash"
},
"timeout": {
"$ref": "#/definitions/Timeout"
},
"tolerations": {
"items": {
"$ref": "#/definitions/Toleration"
},
"type": "array"
},
"unstash": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Unstash"
},
"volumes": {
"items": {
"$ref": "#/definitions/Volume"
},
"type": "array"
},
"workspace": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"Stash": {
"properties": {
"files": {
"type": "string"
},
"name": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"Step": {
"properties": {
"agent": {
"$ref": "#/definitions/Agent"
},
"args": {
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"type": "string"
},
"comment": {
"type": "string"
},
"container": {
"type": "string"
},
"dir": {
"type": "string"
},
"env": {
"items": {
"$ref": "#/definitions/EnvVar"
},
"type": "array"
},
"groovy": {
"type": "string"
},
"image": {
"type": "string"
},
"loop": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Loop"
},
"name": {
"type": "string"
},
"options": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"sh": {
"type": "string"
},
"step": {
"type": "string"
},
"steps": {
"items": {
"$ref": "#/definitions/Step"
},
"type": "array"
},
"when": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"StorageOSVolumeSource": {
"properties": {
"fsType": {
"type": "string"
},
"readOnly": {
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/LocalObjectReference"
},
"volumeName": {
"type": "string"
},
"volumeNamespace": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"Timeout": {
"properties": {
"time": {
"type": "integer"
},
"unit": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"Toleration": {
"properties": {
"effect": {
"type": "string"
},
"key": {
"type": "string"
},
"operator": {
"type": "string"
},
"tolerationSeconds": {
"type": "integer"
},
"value": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"Unstash": {
"properties": {
"dir": {
"type": "string"
},
"name": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"Volume": {
"properties": {
"awsElasticBlockStore": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/AWSElasticBlockStoreVolumeSource"
},
"azureDisk": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/AzureDiskVolumeSource"
},
"azureFile": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/AzureFileVolumeSource"
},
"cephfs": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/CephFSVolumeSource"
},
"cinder": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/CinderVolumeSource"
},
"configMap": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/ConfigMapVolumeSource"
},
"csi": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/CSIVolumeSource"
},
"downwardAPI": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/DownwardAPIVolumeSource"
},
"emptyDir": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/EmptyDirVolumeSource"
},
"fc": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/FCVolumeSource"
},
"flexVolume": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/FlexVolumeSource"
},
"flocker": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/FlockerVolumeSource"
},
"gcePersistentDisk": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/GCEPersistentDiskVolumeSource"
},
"gitRepo": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/GitRepoVolumeSource"
},
"glusterfs": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/GlusterfsVolumeSource"
},
"hostPath": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/HostPathVolumeSource"
},
"iscsi": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/ISCSIVolumeSource"
},
"name": {
"type": "string"
},
"nfs": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/NFSVolumeSource"
},
"persistentVolumeClaim": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/PersistentVolumeClaimVolumeSource"
},
"photonPersistentDisk": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/PhotonPersistentDiskVolumeSource"
},
"portworxVolume": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/PortworxVolumeSource"
},
"projected": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/ProjectedVolumeSource"
},
"quobyte": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/QuobyteVolumeSource"
},
"rbd": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/RBDVolumeSource"
},
"scaleIO": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/ScaleIOVolumeSource"
},
"secret": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/SecretVolumeSource"
},
"storageos": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/StorageOSVolumeSource"
},
"vsphereVolume": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/VsphereVirtualDiskVolumeSource"
}
},
"additionalProperties": false,
"type": "object"
},
"VolumeProjection": {
"properties": {
"configMap": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/ConfigMapProjection"
},
"downwardAPI": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/DownwardAPIProjection"
},
"secret": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/SecretProjection"
},
"serviceAccountToken": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/ServiceAccountTokenProjection"
}
},
"additionalProperties": false,
"type": "object"
},
"VsphereVirtualDiskVolumeSource": {
"properties": {
"fsType": {
"type": "string"
},
"storagePolicyID": {
"type": "string"
},
"storagePolicyName": {
"type": "string"
},
"volumePath": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"WikiConfig": {
"properties": {
"kind": {
"type": "string"
},
"space": {
"type": "string"
},
"url": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
}
}
}
| jx-schema |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "VW Example",
"type": "array",
"description": "A stream of examples sent to the VW web service, which will submit them to VW",
"items": {
"type": "object",
"description": "An individual example in the stream",
"properties": {
"label": {
"type": "string",
"description": "The label for the example. Can be null/empty, but can contain anything",
"minLength": 0
},
"tag": {
"type": "string",
"description": "The tag for the example. Can be null/empty, but can contain anything",
"minLength": 0
},
"namespaces": {
"type": "array",
"description": "The list of namespaces in the example",
"items": {
"type": "object",
"description": "An individual namespace inside an example",
"properties": {
"name": {
"type": "string",
"description": "The name of the namespace. Can be null/empty, but must not contain whitespace, | or :",
"minLength": 0
},
"scale": {
"type": "number",
"description": "The scaling factor for the namespace, optional - defaults to 1 if not present - name must be present for this to be accepted"
},
"features": {
"type": "array",
"description": "The list of features in this namespace",
"items": {
"type": "object",
"description": "An individual feature inside a namespace",
"properties": {
"name": {
"type": "string",
"description": "The name of the feature. Must be present",
"minLength": 1
},
"value": {
"type": "number",
"description": "The value of the feature. Defaults to 1 if not present"
}
},
"additionalProperties": false,
"required": [
"name"
]
},
"minItems": 0,
"_uniqueItems": false,
"additionalItems": false
}
},
"minProperties": 0,
"additionalProperties": false
}
}
},
"minProperties": 0,
"additionalProperties": false
},
"minItems": 0,
"_uniqueItems": false,
"additionalItems": false
}
| o37714 |
{
"additionalProperties": false,
"description": "An object that is applied to a sample to update one or more attributes and/or one or more external references",
"properties": {
"attributesPost": {
"description": "The updated version of the attribute",
"items": {
"additionalProperties": false,
"description": "Define the way attributes are described in a curation object",
"properties": {
"iri": {
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"type",
"value"
],
"type": "object"
},
"type": "array"
},
"attributesPre": {
"description": "The attribute to update, with it's type, value and iri. This need to match the sample in order for the curation to be applied",
"items": {
"additionalProperties": false,
"description": "Define the way attributes are described in a curation object",
"properties": {
"iri": {
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"type",
"value"
],
"type": "object"
},
"type": "array"
},
"externalReferencesPost": {
"description": "The updated value for the external reference",
"items": {
"additionalProperties": false,
"properties": {
"url": {
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": "array"
},
"externalReferencesPre": {
"description": "The external reference to update",
"items": {
"additionalProperties": false,
"properties": {
"url": {
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"attributesPre",
"attributesPost",
"externalReferencesPre",
"externalReferencesPost"
],
"title": "BioSamples curation object",
"type": "object"
} | o4844 |
{
"properties": {
"grades": {
"description": "The list of grades for courses",
"items": {
"properties": {
"course": {
"description": "The course name",
"type": "string"
},
"credit": {
"description": "The credit hours for the course",
"type": "number"
},
"grade": {
"description": "The grade for the course",
"enum": [
"A",
"B",
"C",
"D",
"F"
],
"type": "string"
}
},
"required": [
"course",
"credit",
"grade"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"grades"
],
"type": "object"
} | calculate_gpa_50820a74 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"name": "Package",
"type": "object",
"additionalProperties": true,
"properties": {
"name": {
"type": "string",
"description": "Package name, including 'vendor-name/' prefix."
},
"type": {
"description": "Package type, either 'library' for common packages, 'composer-plugin' for plugins, 'metapackage' for empty packages, or a custom type ([a-z0-9-]+) defined by whatever project this package applies to.",
"type": "string"
},
"target-dir": {
"description": "DEPRECATED: Forces the package to be installed into the given subdirectory path. This is used for autoloading PSR-0 packages that do not contain their full path. Use forward slashes for cross-platform compatibility.",
"type": "string"
},
"description": {
"type": "string",
"description": "Short package description."
},
"keywords": {
"type": "array",
"items": {
"type": "string",
"description": "A tag/keyword that this package relates to."
}
},
"homepage": {
"type": "string",
"description": "Homepage URL for the project.",
"format": "uri"
},
"version": {
"type": "string",
"description": "Package version, see https://getcomposer.org/doc/04-schema.md#version for more info on valid schemes."
},
"time": {
"type": "string",
"description": "Package release date, in 'YYYY-MM-DD', 'YYYY-MM-DD HH:MM:SS' or 'YYYY-MM-DDTHH:MM:SSZ' format."
},
"license": {
"type": [
"string",
"array"
],
"description": "License name. Or an array of license names."
},
"authors": {
"type": "array",
"description": "List of authors that contributed to the package. This is typically the main maintainers, not the full list.",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Full name of the author."
},
"email": {
"type": "string",
"description": "Email address of the author.",
"format": "email"
},
"homepage": {
"type": "string",
"description": "Homepage URL for the author.",
"format": "uri"
},
"role": {
"type": "string",
"description": "Author's role in the project."
}
}
}
},
"require": {
"type": "object",
"description": "This is a hash of package name (keys) and version constraints (values) that are required to run this package.",
"additionalProperties": true
},
"replace": {
"type": "object",
"description": "This is a hash of package name (keys) and version constraints (values) that can be replaced by this package.",
"additionalProperties": true
},
"conflict": {
"type": "object",
"description": "This is a hash of package name (keys) and version constraints (values) that conflict with this package.",
"additionalProperties": true
},
"provide": {
"type": "object",
"description": "This is a hash of package name (keys) and version constraints (values) that this package provides in addition to this package's name.",
"additionalProperties": true
},
"require-dev": {
"type": "object",
"description": "This is a hash of package name (keys) and version constraints (values) that this package requires for developing it (testing tools and such).",
"additionalProperties": true
},
"suggest": {
"type": "object",
"description": "This is a hash of package name (keys) and descriptions (values) that this package suggests work well with it (this will be suggested to the user during installation).",
"additionalProperties": true
},
"config": {
"type": "object",
"description": "Composer options.",
"properties": {
"process-timeout": {
"type": "integer",
"description": "The timeout in seconds for process executions, defaults to 300 (5mins)."
},
"use-include-path": {
"type": "boolean",
"description": "If true, the Composer autoloader will also look for classes in the PHP include path."
},
"preferred-install": {
"type": [
"string",
"object"
],
"description": "The install method Composer will prefer to use, defaults to auto and can be any of source, dist, auto, or a hash of {\"pattern\": \"preference\"}."
},
"notify-on-install": {
"type": "boolean",
"description": "Composer allows repositories to define a notification URL, so that they get notified whenever a package from that repository is installed. This option allows you to disable that behaviour, defaults to true."
},
"github-protocols": {
"type": "array",
"description": "A list of protocols to use for github.com clones, in priority order, defaults to [\"git\", \"https\", \"http\"].",
"items": {
"type": "string"
}
},
"github-oauth": {
"type": "object",
"description": "A hash of domain name => github API oauth tokens, typically {\"github.com\":\"<token>\"}.",
"additionalProperties": true
},
"gitlab-oauth": {
"type": "object",
"description": "A hash of domain name => gitlab API oauth tokens, typically {\"gitlab.com\":\"<token>\"}.",
"additionalProperties": true
},
"disable-tls": {
"type": "boolean",
"description": "Defaults to `false`. If set to true all HTTPS URLs will be tried with HTTP instead and no network level encryption is performed. Enabling this is a security risk and is NOT recommended. The better way is to enable the php_openssl extension in php.ini."
},
"secure-http": {
"type": "boolean",
"description": "Defaults to `true`. If set to true only HTTPS URLs are allowed to be downloaded via Composer. If you really absolutely need HTTP access to something then you can disable it, but using \"Let's Encrypt\" to get a free SSL certificate is generally a better alternative."
},
"cafile": {
"type": "string",
"description": "A way to set the path to the openssl CA file. In PHP 5.6+ you should rather set this via openssl.cafile in php.ini, although PHP 5.6+ should be able to detect your system CA file automatically."
},
"capath": {
"type": "string",
"description": "If cafile is not specified or if the certificate is not found there, the directory pointed to by capath is searched for a suitable certificate. capath must be a correctly hashed certificate directory."
},
"http-basic": {
"type": "object",
"description": "A hash of domain name => {\"username\": \"...\", \"password\": \"...\"}.",
"additionalProperties": true
},
"store-auths": {
"type": [
"string",
"boolean"
],
"description": "What to do after prompting for authentication, one of: true (store), false (do not store) or \"prompt\" (ask every time), defaults to prompt."
},
"platform": {
"type": "object",
"description": "This is a hash of package name (keys) and version (values) that will be used to mock the platform packages on this machine.",
"additionalProperties": true
},
"vendor-dir": {
"type": "string",
"description": "The location where all packages are installed, defaults to \"vendor\"."
},
"bin-dir": {
"type": "string",
"description": "The location where all binaries are linked, defaults to \"vendor/bin\"."
},
"data-dir": {
"type": "string",
"description": "The location where old phar files are stored, defaults to \"$home\" except on XDG Base Directory compliant unixes."
},
"cache-dir": {
"type": "string",
"description": "The location where all caches are located, defaults to \"~/.composer/cache\" on *nix and \"%LOCALAPPDATA%\\Composer\" on windows."
},
"cache-files-dir": {
"type": "string",
"description": "The location where files (zip downloads) are cached, defaults to \"{$cache-dir}/files\"."
},
"cache-repo-dir": {
"type": "string",
"description": "The location where repo (git/hg repo clones) are cached, defaults to \"{$cache-dir}/repo\"."
},
"cache-vcs-dir": {
"type": "string",
"description": "The location where vcs infos (git clones, github api calls, etc. when reading vcs repos) are cached, defaults to \"{$cache-dir}/vcs\"."
},
"cache-ttl": {
"type": "integer",
"description": "The default cache time-to-live, defaults to 15552000 (6 months)."
},
"cache-files-ttl": {
"type": "integer",
"description": "The cache time-to-live for files, defaults to the value of cache-ttl."
},
"cache-files-maxsize": {
"type": [
"string",
"integer"
],
"description": "The cache max size for the files cache, defaults to \"300MiB\"."
},
"bin-compat": {
"enum": [
"auto",
"full"
],
"description": "The compatibility of the binaries, defaults to \"auto\" (automatically guessed) and can be \"full\" (compatible with both Windows and Unix-based systems)."
},
"discard-changes": {
"type": [
"string",
"boolean"
],
"description": "The default style of handling dirty updates, defaults to false and can be any of true, false or \"stash\"."
},
"autoloader-suffix": {
"type": "string",
"description": "Optional string to be used as a suffix for the generated Composer autoloader. When null a random one will be generated."
},
"optimize-autoloader": {
"type": "boolean",
"description": "Always optimize when dumping the autoloader."
},
"prepend-autoloader": {
"type": "boolean",
"description": "If false, the composer autoloader will not be prepended to existing autoloaders, defaults to true."
},
"classmap-authoritative": {
"type": "boolean",
"description": "If true, the composer autoloader will not scan the filesystem for classes that are not found in the class map, defaults to false."
},
"github-domains": {
"type": "array",
"description": "A list of domains to use in github mode. This is used for GitHub Enterprise setups, defaults to [\"github.com\"].",
"items": {
"type": "string"
}
},
"github-expose-hostname": {
"type": "boolean",
"description": "Defaults to true. If set to false, the OAuth tokens created to access the github API will have a date instead of the machine hostname."
},
"gitlab-domains": {
"type": "array",
"description": "A list of domains to use in gitlab mode. This is used for custom GitLab setups, defaults to [\"gitlab.com\"].",
"items": {
"type": "string"
}
},
"archive-format": {
"type": "string",
"description": "The default archiving format when not provided on cli, defaults to \"tar\"."
},
"archive-dir": {
"type": "string",
"description": "The default archive path when not provided on cli, defaults to \".\"."
}
}
},
"extra": {
"type": [
"object",
"array"
],
"description": "Arbitrary extra data that can be used by plugins, for example, package of type composer-plugin may have a 'class' key defining an installer class name.",
"additionalProperties": true
},
"autoload": {
"type": "object",
"description": "Description of how the package can be autoloaded.",
"properties": {
"psr-0": {
"type": "object",
"description": "This is a hash of namespaces (keys) and the directories they can be found in (values, can be arrays of paths) by the autoloader.",
"additionalProperties": true
},
"psr-4": {
"type": "object",
"description": "This is a hash of namespaces (keys) and the PSR-4 directories they can map to (values, can be arrays of paths) by the autoloader.",
"additionalProperties": true
},
"classmap": {
"type": "array",
"description": "This is an array of directories that contain classes to be included in the class-map generation process."
},
"files": {
"type": "array",
"description": "This is an array of files that are always required on every request."
},
"exclude-from-classmap": {
"type": "array",
"description": "This is an array of patterns to exclude from autoload classmap generation. (e.g. \"exclude-from-classmap\": [\"/test/\", \"/tests/\", \"/Tests/\"]"
}
}
},
"autoload-dev": {
"type": "object",
"description": "Description of additional autoload rules for development purpose (eg. a test suite).",
"properties": {
"psr-0": {
"type": "object",
"description": "This is a hash of namespaces (keys) and the directories they can be found into (values, can be arrays of paths) by the autoloader.",
"additionalProperties": true
},
"psr-4": {
"type": "object",
"description": "This is a hash of namespaces (keys) and the PSR-4 directories they can map to (values, can be arrays of paths) by the autoloader.",
"additionalProperties": true
},
"classmap": {
"type": "array",
"description": "This is an array of directories that contain classes to be included in the class-map generation process."
},
"files": {
"type": "array",
"description": "This is an array of files that are always required on every request."
}
}
},
"archive": {
"type": [
"object"
],
"description": "Options for creating package archives for distribution.",
"properties": {
"exclude": {
"type": "array",
"description": "A list of patterns for paths to exclude or include if prefixed with an exclamation mark."
}
}
},
"repositories": {
"type": [
"object",
"array"
],
"description": "A set of additional repositories where packages can be found.",
"additionalProperties": true
},
"minimum-stability": {
"type": [
"string"
],
"description": "The minimum stability the packages must have to be install-able. Possible values are: dev, alpha, beta, RC, stable.",
"pattern": "^dev|alpha|beta|rc|RC|stable$"
},
"prefer-stable": {
"type": [
"boolean"
],
"description": "If set to true, stable packages will be preferred to dev packages when possible, even if the minimum-stability allows unstable packages."
},
"bin": {
"type": [
"array"
],
"description": "A set of files that should be treated as binaries and symlinked into bin-dir (from config).",
"items": {
"type": "string"
}
},
"include-path": {
"type": [
"array"
],
"description": "DEPRECATED: A list of directories which should get added to PHP's include path. This is only present to support legacy projects, and all new code should preferably use autoloading.",
"items": {
"type": "string"
}
},
"scripts": {
"type": [
"object"
],
"description": "Scripts listeners that will be executed before/after some events.",
"properties": {
"pre-install-cmd": {
"type": [
"array",
"string"
],
"description": "Occurs before the install command is executed, contains one or more Class::method callables or shell commands."
},
"post-install-cmd": {
"type": [
"array",
"string"
],
"description": "Occurs after the install command is executed, contains one or more Class::method callables or shell commands."
},
"pre-update-cmd": {
"type": [
"array",
"string"
],
"description": "Occurs before the update command is executed, contains one or more Class::method callables or shell commands."
},
"post-update-cmd": {
"type": [
"array",
"string"
],
"description": "Occurs after the update command is executed, contains one or more Class::method callables or shell commands."
},
"pre-status-cmd": {
"type": [
"array",
"string"
],
"description": "Occurs before the status command is executed, contains one or more Class::method callables or shell commands."
},
"post-status-cmd": {
"type": [
"array",
"string"
],
"description": "Occurs after the status command is executed, contains one or more Class::method callables or shell commands."
},
"pre-package-install": {
"type": [
"array",
"string"
],
"description": "Occurs before a package is installed, contains one or more Class::method callables or shell commands."
},
"post-package-install": {
"type": [
"array",
"string"
],
"description": "Occurs after a package is installed, contains one or more Class::method callables or shell commands."
},
"pre-package-update": {
"type": [
"array",
"string"
],
"description": "Occurs before a package is updated, contains one or more Class::method callables or shell commands."
},
"post-package-update": {
"type": [
"array",
"string"
],
"description": "Occurs after a package is updated, contains one or more Class::method callables or shell commands."
},
"pre-package-uninstall": {
"type": [
"array",
"string"
],
"description": "Occurs before a package has been uninstalled, contains one or more Class::method callables or shell commands."
},
"post-package-uninstall": {
"type": [
"array",
"string"
],
"description": "Occurs after a package has been uninstalled, contains one or more Class::method callables or shell commands."
},
"pre-autoload-dump": {
"type": [
"array",
"string"
],
"description": "Occurs before the autoloader is dumped, contains one or more Class::method callables or shell commands."
},
"post-autoload-dump": {
"type": [
"array",
"string"
],
"description": "Occurs after the autoloader is dumped, contains one or more Class::method callables or shell commands."
},
"post-root-package-install": {
"type": [
"array",
"string"
],
"description": "Occurs after the root-package is installed, contains one or more Class::method callables or shell commands."
},
"post-create-project-cmd": {
"type": [
"array",
"string"
],
"description": "Occurs after the create-project command is executed, contains one or more Class::method callables or shell commands."
}
}
},
"support": {
"type": "object",
"properties": {
"email": {
"type": "string",
"description": "Email address for support.",
"format": "email"
},
"issues": {
"type": "string",
"description": "URL to the issue tracker.",
"format": "uri"
},
"forum": {
"type": "string",
"description": "URL to the forum.",
"format": "uri"
},
"wiki": {
"type": "string",
"description": "URL to the wiki.",
"format": "uri"
},
"irc": {
"type": "string",
"description": "IRC channel for support, as irc://server/channel.",
"format": "uri"
},
"source": {
"type": "string",
"description": "URL to browse or download the sources.",
"format": "uri"
},
"docs": {
"type": "string",
"description": "URL to the documentation.",
"format": "uri"
},
"rss": {
"type": "string",
"description": "URL to the RSS feed.",
"format": "uri"
}
}
},
"non-feature-branches": {
"type": [
"array"
],
"description": "A set of string or regex patterns for non-numeric branch names that will not be handled as feature branches.",
"items": {
"type": "string"
}
},
"abandoned": {
"type": [
"boolean",
"string"
],
"description": "Indicates whether this package has been abandoned, it can be boolean or a package name/URL pointing to a recommended alternative. Defaults to false."
},
"_comment": {
"type": [
"array",
"string"
],
"description": "A key to store comments in"
}
}
} | o45313 |
{
"definitions": {
"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_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_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_ObjectFieldSelector": {
"description": "ObjectFieldSelector selects an APIVersioned field of an object.",
"properties": {
"apiVersion": {
"description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".",
"type": "string"
},
"fieldPath": {
"description": "Path of the field to select in the specified API version.",
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector": {
"description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
"properties": {
"containerName": {
"description": "Container name: required for volumes, optional for env vars",
"type": "string"
},
"divisor": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Specifies the output format of the exposed resources, defaults to \"1\""
},
"resource": {
"description": "Required: resource to select",
"type": "string"
}
},
"required": [
"resource"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_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_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_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"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"
} | kb_1139_Normalized |
{
"properties": {
"metrics": {
"form": true,
"properties": {
"enabled": {
"description": "Create a side-car container to expose Prometheus metrics",
"form": true,
"title": "Create Prometheus metrics exporter",
"type": "boolean"
},
"serviceMonitor": {
"properties": {
"enabled": {
"description": "Create a ServiceMonitor to track metrics using Prometheus Operator",
"form": true,
"hidden": {
"condition": false,
"value": "metrics.enabled"
},
"title": "Create Prometheus Operator ServiceMonitor",
"type": "boolean"
}
},
"type": "object"
}
},
"title": "Prometheus metrics details",
"type": "object"
},
"persistence": {
"form": true,
"properties": {
"enabled": {
"description": "Enable persistence using Persistent Volume Claims",
"form": true,
"title": "Enable persistence",
"type": "boolean"
},
"size": {
"form": true,
"hidden": {
"condition": false,
"value": "persistence.enabled"
},
"render": "slider",
"sliderMax": 100,
"sliderMin": 1,
"sliderUnit": "Gi",
"title": "Persistent Volume Size",
"type": "string"
}
},
"title": "Persistence configuration",
"type": "object"
},
"rabbitmq": {
"properties": {
"password": {
"description": "Defaults to a random 10-character alphanumeric string if not set",
"form": true,
"title": "RabbitMQ password",
"type": "string"
},
"username": {
"form": true,
"title": "RabbitMQ user",
"type": "string"
}
},
"type": "object"
},
"replicas": {
"description": "Number of replicas to deploy",
"form": true,
"title": "Number of replicas",
"type": "integer"
},
"volumePermissions": {
"properties": {
"enabled": {
"description": "Use an init container to set required folder permissions on the data volume before mounting it in the final destination",
"form": true,
"title": "Enable Init Containers",
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
} | o6137 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "dolittle.io/schemas/Runtime/Tenancy/tenants.json",
"title": "Tenants Configuration",
"description": "The tenants configuration",
"type": "object",
"additionalProperties": {
"description": "The configuration of a tenant",
"type": "object"
}
} | tenants |
{
"properties": {
"polyfills": {
"default": false,
"description": "Add polyfills for IE.",
"type": "boolean",
"x-prompt": "Enable polyfills for IE, Edge and Safari?"
},
"resetCss": {
"default": true,
"description": "Add reset CSS lib",
"type": "boolean",
"x-prompt": "Add CSS library to reset HTML element styles across browsers?"
}
},
"required": [],
"title": "IgniteUI for Angular ng-add schematic",
"type": "object"
} | o7500 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/Enfernuz/quik-lua-rpc/json/schema/QluaStructures.scheme.json",
"title": "Структуры данных QLua",
"description": "Структуры данных QLua",
"type": "object",
"definitions": {
"DateTimeEntry": {
"description": "Дата и время",
"type": "object",
"properties": {
"mcs": {
"description": "Параметр mcs",
"type": "number"
},
"ms": {
"description": "Параметр ms",
"type": "number"
},
"sec": {
"description": "Параметр sec",
"type": "number"
},
"min": {
"description": "Параметр min",
"type": "number"
},
"hour": {
"description": "Параметр hour",
"type": "number"
},
"day": {
"description": "Параметр day",
"type": "number"
},
"week_day": {
"description": "Параметр week_day",
"type": "number"
},
"month": {
"description": "Параметр month",
"type": "number"
},
"year": {
"description": "Параметр year",
"type": "number"
}
}
},
"NumberAsString": {
"description": "Строковое представление числа",
"type": "string",
"pattern": "^([0-9]*[.])?[0-9]+$|^[\\d.]+(?:e-?\\d+)?$"
},
"DatasourceUUID": {
"description": "Идентификатор источника данных",
"type": "string",
"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}"
},
"Index": {
"description": "Индекс элемента",
"type": "integer",
"minimum": 0
},
"DatasourceTime": {
"description": "Время источника данных",
"type": "object",
"properties": {
"year": {
"description": "Параметр year",
"type": "number"
},
"month": {
"description": "Параметр month",
"type": "number"
},
"day": {
"description": "Параметр day",
"type": "number"
},
"week_day": {
"description": "Параметр week_day",
"type": "number"
},
"hour": {
"description": "Параметр hour",
"type": "number"
},
"min": {
"description": "Параметр min",
"type": "number"
},
"sec": {
"description": "Параметр sec",
"type": "number"
},
"ms": {
"description": "Параметр ms",
"type": "number"
},
"count": {
"description": "Параметр count",
"type": "number"
}
}
}
},
"properties": {
"DateTimeEntry": {
"$ref": "#/definitions/DateTimeEntry"
},
"NumberAsString": {
"$ref": "#/definitions/NumberAsString"
},
"DatasourceUUID": {
"$ref": "#/definitions/DatasourceUUID"
},
"Index": {
"$ref": "#/definitions/Index"
},
"DatasourceTime": {
"$ref": "#/definitions/DatasourceTime"
}
},
"required": [
"DateTimeEntry",
"NumberAsString",
"DatasourceUUID",
"Index",
"DatasourceTime"
]
} | o5158 |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"properties": {
"site_info": {
"type": "object",
"properties": {
"favicon": {
"type": "string",
"title": "Favicon"
},
"logo": {
"type": "string",
"title": "Logo"
},
"copyright": {
"type": "string",
"title": "Copyright"
}
},
"title": "Site Info"
},
"nav": {
"type": "object",
"properties": {
"header": {
"type": "array",
"properties": {},
"title": "Header",
"items": {
"type": "object",
"properties": {
"label": {
"type": "string",
"title": "Label"
},
"url": {
"type": "string",
"title": "Url"
}
}
}
},
"footer": {
"type": "array",
"properties": {},
"title": "Footer",
"items": {
"type": "object",
"properties": {
"label": {
"type": "string",
"title": "Label"
},
"url": {
"type": "string",
"title": "Url"
},
"target": {
"type": "string",
"title": "Target"
}
}
}
}
},
"title": "Nav"
},
"pages": {
"type": "array",
"properties": {},
"title": "Pages",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string",
"title": "Key"
},
"heading": {
"type": "string",
"title": "Heading"
},
"body": {
"type": "string",
"title": "Body",
"format": "html"
},
"search_enabled": {
"type": "boolean",
"title": "Search Enabled"
},
"tags": {
"type": "array",
"title": "Tags",
"description": "An array of tags",
"items": {
"type": "string"
}
},
"title": {
"type": "string",
"title": "Title",
"description": "The SEO title of the page, for web crawlers"
},
"description": {
"type": "string",
"title": "Description",
"format": "textarea",
"className": "short",
"description": "The SEO description of the page, for web crawlers"
}
}
}
},
"messages": {
"type": "object",
"properties": {
"errors": {
"type": "object",
"properties": {},
"title": "Errors",
"patternProperties": {
".+": {
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title"
},
"message": {
"type": "string",
"title": "Message"
}
},
"keyTitle": "Identifier"
}
}
},
"tooltips": {
"type": "object",
"properties": {},
"title": "Tooltips",
"patternProperties": {
".+": {
"type": "string",
"keyTitle": "Identifier",
"valueTitle": "Message"
}
}
}
},
"title": "Messages"
}
},
"title": "My Web Site"
} | o21699 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_LimitResponse": {
"description": "LimitResponse defines how to handle requests that can not be executed right now.",
"properties": {
"queuing": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_QueuingConfiguration",
"description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`."
},
"type": {
"description": "`type` is \"Queue\" or \"Reject\". \"Queue\" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. \"Reject\" means that requests that can not be executed upon arrival are rejected. Required.",
"type": "string"
}
},
"required": [
"type"
],
"type": "object",
"x-kubernetes-unions": [
{
"discriminator": "type",
"fields-to-discriminateBy": {
"queuing": "Queuing"
}
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_QueuingConfiguration": {
"description": "QueuingConfiguration holds the configuration parameters for queuing",
"properties": {
"handSize": {
"_format": "int32",
"description": "`handSize` is a small positive number that configures the shuffle sharding of requests into queues. When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here. The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues). See the user-facing documentation for more extensive guidance on setting this field. This field has a default value of 8.",
"type": "integer"
},
"queueLengthLimit": {
"_format": "int32",
"description": "`queueLengthLimit` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected. This value must be positive. If not specified, it will be defaulted to 50.",
"type": "integer"
},
"queues": {
"_format": "int32",
"description": "`queues` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive. Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant. This field has a default value of 64.",
"type": "integer"
}
},
"type": "object"
}
},
"description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n * How are requests for this priority level limited?\n * What should be done with requests that exceed the limit?",
"properties": {
"assuredConcurrencyShares": {
"description": "`assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time. ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level:\n\n ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) )\n\nbigger numbers of ACS mean more reserved concurrent requests (at the expense of every other PL). This field has a default value of 30.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"limitResponse": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_LimitResponse",
"description": "`limitResponse` indicates what to do with requests that can not be executed right now"
}
},
"type": "object"
} | kb_523_Normalized |
{
"additionalProperties": false,
"definitions": {
"assetPattern": {
"oneOf": [
{
"additionalProperties": false,
"properties": {
"glob": {
"description": "The pattern to match.",
"type": "string"
},
"ignore": {
"description": "An array of globs to ignore.",
"items": {
"type": "string"
},
"type": "array"
},
"input": {
"description": "The input directory path in which to apply 'glob'. Defaults to the project root.",
"type": "string"
},
"output": {
"description": "Absolute path within the output.",
"type": "string"
}
},
"required": [
"glob",
"input",
"output"
],
"type": "object"
},
{
"type": "string"
}
]
},
"budget": {
"additionalProperties": false,
"properties": {
"baseline": {
"description": "The baseline size for comparison.",
"type": "string"
},
"error": {
"description": "The threshold for error relative to the baseline (min & max).",
"type": "string"
},
"maximumError": {
"description": "The maximum threshold for error relative to the baseline.",
"type": "string"
},
"maximumWarning": {
"description": "The maximum threshold for warning relative to the baseline.",
"type": "string"
},
"minimumError": {
"description": "The minimum threshold for error relative to the baseline.",
"type": "string"
},
"minimumWarning": {
"description": "The minimum threshold for warning relative to the baseline.",
"type": "string"
},
"name": {
"description": "The name of the bundle.",
"type": "string"
},
"type": {
"description": "The type of budget.",
"enum": [
"all",
"allScript",
"any",
"anyScript",
"anyComponentStyle",
"bundle",
"initial"
],
"type": "string"
},
"warning": {
"description": "The threshold for warning relative to the baseline (min & max).",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"extraEntryPoint": {
"oneOf": [
{
"additionalProperties": false,
"properties": {
"bundleName": {
"description": "The bundle name for this extra entry point.",
"type": "string"
},
"inject": {
"default": true,
"description": "If the bundle will be referenced in the HTML file.",
"type": "boolean"
},
"input": {
"description": "The file to include.",
"type": "string"
},
"lazy": {
"default": false,
"description": "If the bundle will be lazy loaded.",
"type": "boolean",
"x-deprecated": "Use 'inject' option with 'false' value instead."
}
},
"required": [
"input"
],
"type": "object"
},
{
"description": "The file to include.",
"type": "string"
}
]
},
"fileReplacement": {
"oneOf": [
{
"additionalProperties": false,
"properties": {
"replaceWith": {
"type": "string"
},
"src": {
"type": "string"
}
},
"required": [
"src",
"replaceWith"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"replace": {
"type": "string"
},
"with": {
"type": "string"
}
},
"required": [
"replace",
"with"
],
"type": "object"
}
]
}
},
"description": "Browser target options",
"properties": {
"allowedCommonJsDependencies": {
"default": [],
"description": "A list of CommonJS packages that are allowed to be used without a built time warning.",
"items": {
"type": "string"
},
"type": "array"
},
"aot": {
"default": false,
"description": "Build using Ahead of Time compilation.",
"type": "boolean",
"x-user-analytics": 13
},
"assets": {
"default": [],
"description": "List of static application assets.",
"items": {
"$ref": "#/definitions/assetPattern"
},
"type": "array"
},
"baseHref": {
"description": "Base url for the application being built.",
"type": "string"
},
"budgets": {
"default": [],
"description": "Budget thresholds to ensure parts of your application stay within boundaries which you set.",
"items": {
"$ref": "#/definitions/budget"
},
"type": "array"
},
"buildOptimizer": {
"default": false,
"description": "Enables '@angular-devkit/build-optimizer' optimizations when using the 'aot' option.",
"type": "boolean"
},
"commonChunk": {
"default": true,
"description": "Use a separate bundle containing code used across multiple bundles.",
"type": "boolean"
},
"crossOrigin": {
"default": "none",
"description": "Define the crossorigin attribute setting of elements that provide CORS support.",
"enum": [
"none",
"anonymous",
"use-credentials"
],
"type": "string"
},
"deleteOutputPath": {
"default": true,
"description": "Delete the output path before building.",
"type": "boolean"
},
"deployUrl": {
"description": "URL where files will be deployed.",
"type": "string"
},
"es5BrowserSupport": {
"description": "Enables conditionally loaded ES2015 polyfills.",
"type": "boolean",
"x-deprecated": "This will be determined from the list of supported browsers specified in the 'browserslist' file."
},
"evalSourceMap": {
"default": false,
"description": "Output in-file eval sourcemaps.",
"type": "boolean",
"x-deprecated": true
},
"experimentalRollupPass": {
"default": false,
"description": "Concatenate modules with Rollup before bundling them with Webpack.",
"type": "boolean"
},
"extractCss": {
"default": false,
"description": "Extract css from global styles into css files instead of js ones.",
"type": "boolean"
},
"extractLicenses": {
"default": false,
"description": "Extract all licenses in a separate file.",
"type": "boolean"
},
"fileReplacements": {
"default": [],
"description": "Replace files with other files in the build.",
"items": {
"$ref": "#/definitions/fileReplacement"
},
"type": "array"
},
"forkTypeChecker": {
"default": true,
"description": "Run the TypeScript type checker in a forked process.",
"type": "boolean"
},
"i18nFile": {
"description": "Localization file to use for i18n.",
"type": "string",
"x-deprecated": "Use 'locales' object in the project metadata instead."
},
"i18nFormat": {
"description": "Format of the localization file specified with --i18n-file.",
"type": "string",
"x-deprecated": "No longer needed as the format will be determined automatically."
},
"i18nLocale": {
"description": "Locale to use for i18n.",
"type": "string",
"x-deprecated": "Use 'localize' instead."
},
"i18nMissingTranslation": {
"default": "warning",
"description": "How to handle missing translations for i18n.",
"enum": [
"warning",
"error",
"ignore"
],
"type": "string"
},
"index": {
"description": "Configures the generation of the application's HTML index.",
"oneOf": [
{
"description": "The path of a file to use for the application's HTML index. The filename of the specified path will be used for the generated file and will be created in the root of the application's configured output path.",
"type": "string"
},
{
"description": "",
"properties": {
"input": {
"description": "The path of a file to use for the application's generated HTML index.",
"minLength": 1,
"type": "string"
},
"output": {
"default": "index.html",
"description": "The output path of the application's generated HTML index file. The full provided path will be used and will be considered relative to the application's configured output path.",
"minLength": 1,
"type": "string"
}
},
"required": [
"input"
],
"type": "object"
}
]
},
"lazyModules": {
"default": [],
"description": "List of additional NgModule files that will be lazy loaded. Lazy router modules will be discovered automatically.",
"items": {
"type": "string"
},
"type": "array",
"x-deprecated": "'SystemJsNgModuleLoader' is deprecated, and this is part of its usage. Use 'import()' syntax instead."
},
"localize": {
"oneOf": [
{
"description": "Translate all locales.",
"type": "boolean"
},
{
"description": "List of locales ID's to translate.",
"items": {
"pattern": "^[a-zA-Z]{2,3}(-[a-zA-Z]{4})?(-([a-zA-Z]{2}|[0-9]{3}))?(-[a-zA-Z]{5,8})?(-x(-[a-zA-Z0-9]{1,8})+)?$",
"type": "string"
},
"minItems": 1,
"type": "array"
}
]
},
"main": {
"$valueDescription": "fileName",
"description": "The full path for the main entry point to the app, relative to the current workspace.",
"type": "string"
},
"namedChunks": {
"default": true,
"description": "Use file name for lazy loaded chunks.",
"type": "boolean"
},
"ngswConfigPath": {
"description": "Path to ngsw-config.json.",
"type": "string"
},
"optimization": {
"description": "Enables optimization of the build output.",
"oneOf": [
{
"additionalProperties": false,
"properties": {
"scripts": {
"default": true,
"description": "Enables optimization of the scripts output.",
"type": "boolean"
},
"styles": {
"default": true,
"description": "Enables optimization of the styles output.",
"type": "boolean"
}
},
"type": "object"
},
{
"type": "boolean"
}
],
"x-user-analytics": 16
},
"outputHashing": {
"default": "none",
"description": "Define the output filename cache-busting hashing mode.",
"enum": [
"none",
"all",
"media",
"bundles"
],
"type": "string"
},
"outputPath": {
"description": "The full path for the new output directory, relative to the current workspace.\n\nBy default, writes output to a folder named dist/ in the current project.",
"type": "string"
},
"poll": {
"description": "Enable and define the file watching poll time period in milliseconds.",
"type": "number"
},
"polyfills": {
"description": "The full path for the polyfills file, relative to the current workspace.",
"type": "string"
},
"preserveSymlinks": {
"description": "Do not use the real path when resolving modules. If unset then will default to `true` if NodeJS option --preserve-symlinks is set.",
"type": "boolean"
},
"profile": {
"default": false,
"description": "Output profile events for Chrome profiler.",
"type": "boolean",
"x-deprecated": "Use \"NG_BUILD_PROFILING\" environment variable instead."
},
"progress": {
"description": "Log progress to the console while building.",
"type": "boolean"
},
"rebaseRootRelativeCssUrls": {
"default": false,
"description": "Change root relative URLs in stylesheets to include base HREF and deploy URL. Use only for compatibility and transition. The behavior of this option is non-standard and will be removed in the next major release.",
"type": "boolean",
"x-deprecated": true
},
"resourcesOutputPath": {
"default": "",
"description": "The path where style resources will be placed, relative to outputPath.",
"type": "string"
},
"scripts": {
"default": [],
"description": "Global scripts to be included in the build.",
"items": {
"$ref": "#/definitions/extraEntryPoint"
},
"type": "array"
},
"serviceWorker": {
"default": false,
"description": "Generates a service worker config for production builds.",
"type": "boolean"
},
"showCircularDependencies": {
"default": true,
"description": "Show circular dependency warnings on builds.",
"type": "boolean"
},
"skipAppShell": {
"default": false,
"description": "Flag to prevent building an app shell.",
"type": "boolean",
"x-deprecated": true
},
"sourceMap": {
"default": true,
"description": "Output sourcemaps.",
"oneOf": [
{
"additionalProperties": false,
"properties": {
"hidden": {
"default": false,
"description": "Output sourcemaps used for error reporting tools.",
"type": "boolean"
},
"scripts": {
"default": true,
"description": "Output sourcemaps for all scripts.",
"type": "boolean"
},
"styles": {
"default": true,
"description": "Output sourcemaps for all styles.",
"type": "boolean"
},
"vendor": {
"default": false,
"description": "Resolve vendor packages sourcemaps.",
"type": "boolean"
}
},
"type": "object"
},
{
"type": "boolean"
}
]
},
"statsJson": {
"default": false,
"description": "Generates a 'stats.json' file which can be analyzed using tools such as 'webpack-bundle-analyzer'.",
"type": "boolean"
},
"stylePreprocessorOptions": {
"additionalProperties": false,
"description": "Options to pass to style preprocessors.",
"properties": {
"includePaths": {
"default": [],
"description": "Paths to include. Paths will be resolved to project root.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"styles": {
"default": [],
"description": "Global styles to be included in the build.",
"items": {
"$ref": "#/definitions/extraEntryPoint"
},
"type": "array"
},
"subresourceIntegrity": {
"default": false,
"description": "Enables the use of subresource integrity validation.",
"type": "boolean"
},
"tsConfig": {
"description": "The full path for the TypeScript configuration file, relative to the current workspace.",
"type": "string"
},
"vendorChunk": {
"default": true,
"description": "Use a separate bundle containing only vendor libraries.",
"type": "boolean"
},
"vendorSourceMap": {
"default": false,
"description": "Resolve vendor packages sourcemaps.",
"type": "boolean",
"x-deprecated": true
},
"verbose": {
"default": false,
"description": "Adds more details to output logging.",
"type": "boolean"
},
"watch": {
"default": false,
"description": "Run build when files change.",
"type": "boolean"
},
"webWorkerTsConfig": {
"description": "TypeScript configuration for Web Worker modules.",
"type": "string"
}
},
"required": [
"outputPath",
"index",
"main",
"tsConfig"
],
"title": "Webpack browser schema for Build Facade.",
"type": "object"
} | o58443 |
{
"id": "https://github.com/emccode/libstorage",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "libStorage JSON Schema",
"definitions": {
"volume": {
"title": "Volume",
"description": "Volume provides information about a storage volume.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ID is a piece of information that uniquely identifies the volume on the storage platform to which the volume belongs. A volume ID is not guaranteed to be unique across multiple, configured services."
},
"name": {
"type": "string",
"description": "The volume name."
},
"type": {
"type": "string",
"description": "The volume type."
},
"attachments": {
"type": "array",
"description": "The volume's attachments.",
"items": {
"$ref": "#/definitions/volumeAttachment"
}
},
"availabilityZone": {
"type": "string",
"description": "The zone for which the volume is available."
},
"iops": {
"type": "number",
"description": "The volume IOPs."
},
"networkName": {
"type": "string",
"description": "The name of the network on which the volume resides."
},
"size": {
"type": "number",
"description": "The volume size (GB)."
},
"status": {
"type": "string",
"description": "The volume status."
},
"fields": {
"$ref": "#/definitions/fields"
}
},
"required": [
"id",
"name"
],
"additionalProperties": false
},
"volumeAttachment": {
"title": "VolumeAttachment",
"description": " VolumeAttachment provides information about an object attached to a storage volume.",
"type": "object",
"properties": {
"instanceID": {
"$ref": "#/definitions/instanceID"
},
"deviceName": {
"type": "string",
"description": "The name of the device on to which the volume is mounted."
},
"status": {
"type": "string",
"description": "The status of the attachment."
},
"volumeID": {
"type": "string",
"description": "The ID of the volume to which the attachment belongs."
},
"mountPoint": {
"type": "string",
"description": "The file system path to which the volume is mounted."
},
"fields": {
"$ref": "#/definitions/fields"
}
},
"required": [
"instanceID",
"deviceName",
"volumeID"
],
"additionalProperties": false
},
"instanceID": {
"title": "InstanceID",
"description": "InstanceID identifies a host to a remote storage platform.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The instance ID."
},
"driver": {
"type": "string",
"description": "The name of the driver that created the instance ID."
},
"formatted": {
"type": "boolean",
"description": "A flag indicating whether or not the instance ID has been formatted by an instance inspection."
},
"metadata": {
"type": "object",
"description": "Extra information about the instance ID."
}
},
"required": [
"id",
"driver"
],
"additionalProperties": false
},
"instance": {
"title": "Instnace",
"description": "Instance is additional information about a host, generated using the InstanceID.",
"type": "object",
"properties": {
"instanceID": {
"$ref": "#/definitions/instanceID"
},
"name": {
"type": "string",
"description": "The name of the instance."
},
"providerName": {
"type": "string",
"description": "The name of the provider that owns the object."
},
"region": {
"type": "string",
"description": "The region from which the object originates."
},
"fields": {
"$ref": "#/definitions/fields"
}
},
"required": [
"id"
],
"additionalProperties": false
},
"snapshot": {
"title": "Snapshot",
"description": "Snapshot provides information about a storage volume snapshot.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The snapshot's ID."
},
"name": {
"type": "string",
"description": "The name of the snapshot."
},
"description": {
"type": "string",
"description": "A description of the snapshot."
},
"startTime": {
"type": "number",
"description": "The time (epoch) at which the request to create the snapshot was submitted."
},
"status": {
"type": "string",
"description": "The status of the snapshot."
},
"volumeID": {
"type": "string",
"description": "The ID of the volume to which the snapshot belongs."
},
"volumeSize": {
"type": "number",
"description": "The size of the volume to which the snapshot belongs."
},
"fields": {
"$ref": "#/definitions/fields"
}
},
"required": [
"id"
],
"additionalProperties": false
},
"task": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "The task's unique identifier."
},
"name": {
"type": "string",
"description": "The name of the task."
},
"user": {
"type": "string",
"description": "The name of the user that created the task."
},
"completeTime": {
"type": "number",
"description": "The time stamp (epoch) when the task was completed."
},
"queueTime": {
"type": "number",
"description": "The time stamp (epoch) when the task was created."
},
"startTime": {
"type": "number",
"description": "The time stamp (epoch) when the task started running."
},
"result": {
"type": "object",
"description": "The result of the operation."
},
"error": {
"type": "object",
"description": "If the operation returned an error, this is it."
},
"fields": {
"$ref": "#/definitions/fields"
}
},
"required": [
"id",
"name",
"user",
"queueTime"
],
"additionalProperties": false
},
"serviceInfo": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name is the service's name."
},
"instance": {
"$ref": "#/definitions/instance"
},
"driver": {
"$ref": "#/definitions/driverInfo"
}
},
"required": [
"name",
"driver"
],
"additionalProperties": false
},
"driverInfo": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Ignore is a flag that indicates whether the client logic should invoke the GetNextAvailableDeviceName function prior to submitting an AttachVolume request to the server."
},
"type": {
"type": "string",
"description": "Type is the type of storage the driver provides: block, nas, object."
},
"nextDevice": {
"$ref": "#/definitions/nextDeviceInfo"
}
},
"required": [
"name",
"type"
],
"additionalProperties": false
},
"executorInfo": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the executor."
},
"md5checksum": {
"type": "string",
"description": "The file's MD5 checksum. This can be used to determine if a local copy of the executor needs to be updated."
},
"size": {
"type": "number",
"description": "The size of the executor, in bytes."
},
"lastModified": {
"type": "number",
"description": "The time the executor was last modified as an epoch."
}
},
"required": [
"name",
"md5checksum",
"size",
"lastModified"
],
"additionalProperties": false
},
"nextDeviceInfo": {
"type": "object",
"properties": {
"ignore": {
"type": "boolean",
"description": "Ignore is a flag that indicates whether the client logic should invoke the GetNextAvailableDeviceName function prior to submitting an AttachVolume request to the server."
},
"prefix": {
"type": "string",
"description": "Prefix is the first part of a device path's value after the \"/dev/\" portion. For example, the prefix in \"/dev/xvda\" is \"xvd\"."
},
"pattern": {
"type": "string",
"description": "Pattern is the regex to match the part of a device path after the prefix."
}
},
"additionalProperties": false
},
"fields": {
"type": "object",
"description": "Fields are additional properties that can be defined for this type.",
"patternProperties": {
".+": {
"type": "string"
}
},
"additionalProperties": true
},
"volumeMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/volume"
}
},
"additionalProperties": false
},
"snapshotMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/snapshot"
}
},
"additionalProperties": false
},
"taskMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/task"
}
},
"additionalProperties": false
},
"serviceVolumeMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/volumeMap"
}
},
"additionalProperties": false
},
"serviceSnapshotMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/snapshotMap"
}
},
"additionalProperties": false
},
"serviceTaskMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/taskMap"
}
},
"additionalProperties": false
},
"serviceInfoMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/serviceInfo"
}
},
"additionalProperties": false
},
"executorInfoMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/executorInfo"
}
},
"additionalProperties": false
},
"driverInfoMap": {
"type": "object",
"patternProperties": {
"^.+$": {
"$ref": "#/definitions/driverInfo"
}
},
"additionalProperties": false
},
"opts": {
"type": "object",
"description": "Opts are additional properties that can be defined for POST requests.",
"patternProperties": {
"^.+$": {
"anyOf": [
{
"type": "array"
},
{
"type": "boolean"
},
{
"type": "integer"
},
{
"type": "number"
},
{
"type": "null"
},
{
"type": "string"
},
{
"$ref": "#/definitions/opts"
}
]
}
},
"additionalProperties": true
},
"volumeCreateRequest": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"availabilityZone": {
"type": "string"
},
"iops": {
"type": "number"
},
"size": {
"type": "number"
},
"type": {
"type": "string"
},
"opts": {
"$ref": "#/definitions/opts"
}
},
"required": [
"name"
],
"additionalProperties": false
},
"volumeCopyRequest": {
"type": "object",
"properties": {
"volumeName": {
"type": "string"
},
"opts": {
"$ref": "#/definitions/opts"
}
},
"required": [
"volumeName"
],
"additionalProperties": false
},
"volumeSnapshotRequest": {
"type": "object",
"properties": {
"snapshotName": {
"type": "string"
},
"opts": {
"$ref": "#/definitions/opts"
}
},
"required": [
"snapshotName"
],
"additionalProperties": false
},
"volumeAttachRequest": {
"type": "object",
"properties": {
"nextDeviceName": {
"type": "string"
},
"force": {
"type": "boolean"
},
"opts": {
"$ref": "#/definitions/opts"
}
},
"additionalProperties": false
},
"volumeAttachResponse": {
"type": "object",
"properties": {
"volume": {
"$ref": "#/definitions/volume"
},
"attachToken": {
"type": "string"
}
},
"required": [
"volume",
"attachToken"
],
"additionalProperties": false
},
"volumeDetachRequest": {
"type": "object",
"properties": {
"force": {
"type": "boolean"
},
"opts": {
"$ref": "#/definitions/opts"
}
},
"additionalProperties": false
},
"snapshotCopyRequest": {
"type": "object",
"properties": {
"snapshotName": {
"type": "string"
},
"destinationID": {
"type": "string"
},
"opts": {
"$ref": "#/definitions/opts"
}
},
"required": [
"snapshotName",
"destinationID"
],
"additionalProperties": false
},
"snapshotRemoveRequest": {
"type": "object",
"properties": {
"opts": {
"$ref": "#/definitions/opts"
}
},
"additionalProperties": false
},
"error": {
"type": "object",
"properties": {
"message": {
"type": "string",
"pattern": "^.{10,}|.*[Ee]rror$"
},
"status": {
"type": "number",
"minimum": 400,
"maximum": 599
},
"error": {
"type": "object",
"additionalProperties": true
}
},
"required": [
"message",
"status"
],
"additionalProperties": false
}
},
"properties": {
"volume": {
"$ref": "#/definitions/volume"
},
"volumeAttachment": {
"$ref": "#/definitions/volumeAttachment"
},
"instanceID": {
"$ref": "#/definitions/instanceID"
},
"instance": {
"$ref": "#/definitions/instance"
},
"snapshot": {
"$ref": "#/definitions/snapshot"
},
"task": {
"$ref": "#/definitions/task"
},
"serviceInfo": {
"$ref": "#/definitions/serviceInfo"
},
"driverInfo": {
"$ref": "#/definitions/driverInfo"
},
"executorInfo": {
"$ref": "#/definitions/executorInfo"
},
"nextDeviceInfo": {
"$ref": "#/definitions/nextDeviceInfo"
},
"fields": {
"$ref": "#/definitions/fields"
},
"volumeMap": {
"$ref": "#/definitions/volumeMap"
},
"snapshotMap": {
"$ref": "#/definitions/snapshotMap"
},
"taskMap": {
"$ref": "#/definitions/taskMap"
},
"serviceVolumeMap": {
"$ref": "#/definitions/serviceVolumeMap"
},
"serviceSnapshotMap": {
"$ref": "#/definitions/serviceSnapshotMap"
},
"serviceTaskMap": {
"$ref": "#/definitions/serviceTaskMap"
},
"serviceInfoMap": {
"$ref": "#/definitions/serviceInfoMap"
},
"executorInfoMap": {
"$ref": "#/definitions/executorInfoMap"
},
"driverInfoMap": {
"$ref": "#/definitions/driverInfoMap"
},
"opts": {
"$ref": "#/definitions/opts"
},
"volumeCreateRequest": {
"$ref": "#/definitions/volumeCreateRequest"
},
"volumeCopyRequest": {
"$ref": "#/definitions/volumeCopyRequest"
},
"volumeSnapshotRequest": {
"$ref": "#/definitions/volumeSnapshotRequest"
},
"volumeAttachRequest": {
"$ref": "#/definitions/volumeAttachRequest"
},
"volumeAttachResponse": {
"$ref": "#/definitions/volumeAttachResponse"
},
"volumeDetachRequest": {
"$ref": "#/definitions/volumeDetachRequest"
},
"snapshotCopyRequest": {
"$ref": "#/definitions/snapshotCopyRequest"
},
"snapshotRemoveRequest": {
"$ref": "#/definitions/snapshotRemoveRequest"
},
"error": {
"$ref": "#/definitions/error"
}
},
"required": [
"volume",
"volumeAttachment",
"instanceID",
"instance",
"snapshot",
"task",
"serviceInfo",
"driverInfo",
"executorInfo",
"nextDeviceInfo",
"fields",
"volumeMap",
"snapshotMap",
"taskMap",
"serviceVolumeMap",
"serviceSnapshotMap",
"serviceTaskMap",
"serviceInfoMap",
"executorInfoMap",
"driverInfoMap",
"opts",
"volumeCreateRequest",
"volumeCopyRequest",
"volumeSnapshotRequest",
"volumeAttachRequest",
"volumeAttachResponse",
"volumeDetachRequest",
"snapshotCopyRequest",
"snapshotRemoveRequest",
"error"
]
} | o4851 |
{
"$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": [
"homepage",
"service_manual_homepage"
]
},
"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": [
"homepage"
]
},
"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"
}
]
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"type": "object",
"properties": {}
},
"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
},
"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"
]
},
"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
},
"title": {
"type": "string"
},
"update_type": {
"enum": [
"major",
"minor",
"republish"
]
}
}
} | o21266 |
{
"properties": {
"bitbucket": {
"properties": {
"name": {
"default": "bitbucket",
"description": "name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"type": "object"
} | o60269 |
{
"description": "ServiceReference holds a reference to Service.legacy.k8s.io",
"properties": {
"name": {
"description": "Name is the name of the service",
"type": [
"string",
"null"
]
},
"namespace": {
"description": "Namespace is the namespace of the service",
"type": [
"string",
"null"
]
},
"port": {
"description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).",
"format": "int32",
"type": [
"integer",
"null"
]
}
},
"type": "object"
} | kb_989_Normalized |
{
"properties": {
"date_range": {
"properties": {
"end_date": {
"description": "The end date of the news articles",
"format": "date",
"type": "string"
},
"start_date": {
"description": "The start date of the news articles",
"format": "date",
"type": "string"
}
},
"type": "object"
},
"keywords": {
"description": "The keywords to search for",
"items": {
"type": "string"
},
"type": "array"
},
"source": {
"description": "The preferred news source",
"type": "string"
}
},
"required": [
"keywords"
],
"type": "object"
} | search_news_9fcf9355 |
{
"properties": {
"displayroamingaccounts": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"html5receiver": {
"enum": [
"ALWAYS",
"FALLBACK",
"OFF"
],
"type": "string"
},
"sitename": {
"type": "string"
},
"state": {
"enum": [
"UP",
"INITIALIZING",
"DOWN-HostUnknown",
"DOWN-ReqTimeout",
"DOWN-Wrong Store",
"DOWN-SF Error",
"DOWN-SSL Error",
"DOWN-Conn Reset",
"DOWN"
],
"readonly": true,
"type": "string"
},
"storefronturl": {
"type": "string"
},
"storename": {
"type": "string"
},
"workspacecontrol": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xframeoptions": {
"enum": [
"ALLOW",
"DENY"
],
"type": "string"
}
},
"title": "wfsite",
"type": "object"
} | o31242 |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"radius",
"length",
"width",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The shape (e.g. circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_0286984a |
{
"properties": {
"grades": {
"description": "The grades obtained in different subjects",
"items": {
"properties": {
"credit_hours": {
"description": "The credit hours for the subject",
"type": "number"
},
"grade": {
"description": "The grade obtained in the subject",
"type": "string"
},
"subject": {
"description": "The subject for which the grade is being considered",
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"required": [
"grades"
],
"type": "object"
} | calculate_gpa_0ca04f9f |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "IBM Zapp Document",
"description": "JSON schema for zapp.json and zapp.yaml files. Version 1.0.0 -- Licensed Materials - Property of IBM - (c) Copyright IBM Corporation 2022. All Rights Reserved.",
"type": "object",
"definitions": {
"coreProperties": {
"type": "object",
"required": ["name"],
"additionalProperties": false,
"properties": {
"name": {
"description": "The name of the Z Project.",
"type": "string",
"maxLength": 214,
"minLength": 1
},
"description": {
"description": "This helps people understand your project as it would be used by tools.",
"type": "string"
},
"version": {
"description": "Version is a string and it must be parsable for managing dependencies.",
"type": "string",
"default": "1.0.0"
},
"groupId": {
"description": "Defines a group name that is shared for each application part in case of applications composed of multiple parts. Allows to uniquely identify the parts by concatenating with the artifact id. For example a groupId `com.ibm.wazi` with an artifactId `service` would create the unique application identifier `com.ibm.wazi.service`.",
"type": "string",
"examples": ["com.ibm.wazi", "payments"]
},
"artifactId": {
"description": "Define id of the application artifact. Use it in combination with a groupId for multi-part applications.",
"type": "string",
"default": "",
"examples": ["sam"]
},
"parentId": {
"description": "In case of a multi-part application defines the name of the parent application part. This zapp will inherit properties such as propertyGroups defined in the parent.",
"type": "string",
"default": "",
"examples": ["com.ibm.wazi.parent"]
},
"keywords": {
"description": "This helps people discover your project.",
"type": "array",
"items": {
"type": "string"
}
},
"homepage": {
"description": "The url to the project homepage.",
"type": "string",
"oneOf": [
{
"format": "uri"
},
{
"enum": ["."]
}
]
},
"license": {
"type": "string",
"description": "You should specify a license for your package so that people know how they are permitted to use it and any restrictions you're placing on it."
},
"author": {
"$ref": "#/definitions/person"
},
"contributors": {
"description": "A list of people who contributed to this package.",
"type": "array",
"items": {
"$ref": "#/definitions/person"
},
"minItems": 1
},
"maintainers": {
"description": "A list of people who maintain this package.",
"type": "array",
"items": {
"$ref": "#/definitions/person"
},
"minItems": 1
},
"propertyGroups": {
"description": "A list properties defining path names for resolving dependencies.",
"type": "array",
"items": {
"$ref": "#/definitions/propertyGroupItem"
},
"minItems": 1
},
"profiles": {
"description": "Profiles are additional groups of properties that should only should become valid under specific conditions such as running in a build job or as part of a debug session.",
"type": "array",
"items": {
"$ref": "#/definitions/profile"
},
"minItems": 1
}
}
},
"propertyGroupItem": {
"type": "object",
"additionalProperties": false,
"required": ["name"],
"properties": {
"name": {
"type": "string",
"description": "The name of the property group, which is used in hovers and error messages.",
"examples": ["sample-local"]
},
"language": {
"type": "string",
"enum": ["cobol", "pl1", "hlasm", "rexx", "jcl"],
"description": "Limits the property group to one specific language."
},
"compilerOptions": {
"type": "string",
"description": "Global compiler options separated by a comma that impact the parsing of the programs for the editor. Requires that you specify a language. If there are multiple Property Groups for a language with compiler option then they will be concatenated."
},
"libraries": {
"type": "array",
"description": "An array of potential library locations defining the search order for include files. Libraries with the name 'syslib' will be handled as default include locations. The list can contain many entries of the type 'local' or 'mvs'. It can contain items of the same type twice in case, for example, you want to search in remote locations first, then some local location, and if still not found more remote locations.",
"items": {
"$ref": "#/definitions/libraryItem"
},
"minItems": 1
}
}
},
"libraryItem": {
"type": "object",
"additionalProperties": false,
"required": ["name", "type", "locations"],
"properties": {
"name": {
"type": "string",
"description": "Name of the library. The default name should be `syslib` if using unamed libraries.",
"default": "syslib",
"examples": ["syslib", "currencylib"]
},
"type": {
"type": "string",
"enum": ["mvs", "local"],
"description": "The type of the property group defining where dependencies should be located. Allowed values are 'local' for using a local workspace and 'mvs' for dependencies located in MVS Datasets.",
"default": "local",
"examples": ["local", "mvs"]
},
"locations": {
"type": "array",
"description": "An array of include file locations. For 'local' libraries values can be absolute and relative filename paths using GLOB patterns. For 'mvs' libraries value can be data set names. GLOB patterns for dat sets are currently not supported.",
"items": {
"type": "string"
},
"minItems": 1,
"examples": ["**/copybook", "USER1.SAMPLE.COBCOPY"]
}
}
},
"person": {
"description": "A person who has been involved in creating or maintaining this package",
"type": ["object", "string"],
"required": ["name"],
"properties": {
"name": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
},
"email": {
"type": "string",
"format": "email"
}
}
},
"profile": {
"type": "object",
"description": "Profiles are additional groups of properties that should only should become valid under specific conditions such as running in a build job or as part of a debug session.",
"additionalProperties": false,
"required": ["name", "type"],
"properties": {
"name": {
"type": "string",
"description": "The name of the profile.",
"examples": ["dbb-build"]
},
"type": {
"type": "string",
"enum": ["dbb", "rseapi", "debug"],
"description": "The type of the profile.",
"default": "dbb",
"examples": ["dbb", "rseapi"]
},
"settings": {
"description": "Settings objects specific to the type specified for the profile.",
"type": "object"
}
},
"anyOf": [
{
"required": ["name", "type", "settings"],
"additionalProperties": false,
"properties": {
"name": { "type": "string" },
"type": { "const": "dbb", "type": "string" },
"settings": {
"$ref": "#/definitions/dbbSettingsItem"
}
}
},
{
"required": ["name", "type", "settings"],
"additionalProperties": false,
"properties": {
"name": { "type": "string" },
"type": { "const": "rseapi", "type": "string" },
"settings": {
"$ref": "#/definitions/rseapiSettingsItem"
}
}
}
]
},
"dbbSettingsItem": {
"type": "object",
"additionalProperties": false,
"required": ["application", "command"],
"description": "DBB build script properties for running User Build on remote host.",
"properties": {
"application": {
"type": "string",
"description": "Defines the name of the application to build. Will be used to create a folder on USS to upload all files to."
},
"command": {
"type": "string",
"description": "Command that the build script is executed with such as the path to groovyz and it's parameters."
},
"buildScriptPath": {
"type": "string",
"description": "The full path of build script on the remote host that should be used with the command."
},
"buildScriptArgs": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of strings that are the parameters for the build script. Check the documentation for built-in variables, such as the name of the program to build, that can be used here."
},
"additionalDependencies": {
"type": "array",
"items": {
"type": "string"
},
"description": "Lists of GLOB patterns that define the files that should be uploaded to USS for a build. Relative path names are interpreted relative to the location of the ZAPP file that is being used for the build, which is a ZAPP file in the same workspace as the program to be build."
},
"logFilePatterns": {
"type": "array",
"items": {
"type": "string"
},
"description": "Lists of GLOB patterns that define the files that should be downloaded from USS after the build. Relative path names are interpreted relative to the DBB log directory user setting. If not provided then all files of the user setting location will be downloaded."
}
}
},
"rseapiSettingsItem": {
"type": "object",
"additionalProperties": false,
"description": "RSE API client settings for interactions with a z/OS remote host running an RSE API server.",
"required": ["mappings", "default.encoding"],
"properties": {
"mappings": {
"type": "array",
"description": "A list of mapping objects that map local file extensions to transfer modes and encodings to MVS datasets that can be specified using wildcards.",
"items": { "$ref": "#/definitions/rseapiSettingsItemMapping" }
},
"default.encoding": {
"type": "string",
"description": "The encoding to be used when no mapping can be found. If not provided then either the user or server default will be used."
}
}
},
"rseapiSettingsItemMapping": {
"type": "object",
"additionalProperties": false,
"description": "One mapping that contains at least transfer and resource values.",
"properties": {
"extension": {
"type": "string",
"description": "A local file extension such as cbl or pl1."
},
"transfer": {
"type": "string",
"enum": ["text", "binary"],
"description": "The transfer mode to be used. Can be 'text' or 'binary'."
},
"resource": {
"type": "string",
"description": "The data set name to be mapped to. Can use a wildcard such as '**CPY'."
},
"encoding": {
"type": "string",
"description": "The encoding to be used for text transfer. See the RSE API documentation for the values allowed."
},
"memberMappings": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"description": "One member mapping that contains at least transfer and resource values.",
"properties": {
"extension": {
"type": "string",
"description": "A local file extension such as cbl or pl1."
},
"transfer": {
"type": "string",
"enum": ["text", "binary"],
"description": "The transfer mode to be used. Can be 'text' or 'binary'."
},
"encoding": {
"type": "string",
"description": "The encoding to be used for text transfer. See the RSE API documentation for the values allowed."
},
"resource": {
"type": "string",
"description": "The data set member name to be mapped to. Can use a wildcard such as '**CPY'."
}
}
},
"description": "A nested mappings array with resource mappings to members of the data sets that were mapped by the parent mapping."
}
}
}
},
"anyOf": [
{
"$ref": "#/definitions/coreProperties"
}
]
}
| zapp-schema-1 |
{
"properties": {
"additional_costs": {
"items": {
"properties": {
"amount": {
"description": "The amount of the additional cost",
"type": "number"
},
"name": {
"description": "The name of the additional cost",
"type": "string"
}
},
"required": [
"name",
"amount"
],
"type": "object"
},
"type": "array"
},
"duration": {
"description": "The duration of the rental in months",
"type": "integer"
},
"rent": {
"description": "The monthly rent amount",
"type": "number"
}
},
"required": [
"rent",
"duration"
],
"type": "object"
} | calculate_rental_cost_6fa0b6ce |
{
"properties": {
"date_range": {
"properties": {
"end_date": {
"description": "The ending date of the news articles",
"format": "date",
"type": "string"
},
"start_date": {
"description": "The starting date of the news articles",
"format": "date",
"type": "string"
}
},
"required": [
"start_date",
"end_date"
],
"type": "object"
},
"keywords": {
"description": "Keywords to search for in news articles",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"keywords",
"date_range"
],
"type": "object"
} | search_news_dd973fec |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"config",
"inputs"
],
"type": "object",
"properties": {
"inputs": {
"required": [
"file"
],
"type": "object",
"properties": {
"file": {
"type": "object",
"properties": {}
}
}
},
"config": {
"required": [
"destination",
"called_ae",
"port"
],
"type": "object",
"properties": {
"destination": {
"default": "0.0.0.0",
"type": "string"
},
"called_ae": {
"default": "scanner",
"type": "string"
},
"port": {
"default": "104",
"type": "number"
}
}
}
},
"title": "Invocation manifest for DICOM Send"
} | o41223 |
{
"properties": {
"addcookieflags": {
"enum": [
"none",
"httpOnly",
"secure",
"all"
],
"type": "string"
},
"archivename": {
"type": "string"
},
"autodeployrule": {
"readonly": true,
"type": "boolean"
},
"bufferoverflowaction": {
"enum": [
"none",
"block",
"log",
"stats"
],
"type": "object"
},
"bufferoverflowmaxcookielength": {
"type": "integer"
},
"bufferoverflowmaxheaderlength": {
"type": "integer"
},
"bufferoverflowmaxurllength": {
"type": "integer"
},
"builtin": {
"readonly": true,
"type": "boolean"
},
"canonicalizehtmlresponse": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"checkrequestheaders": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"comment": {
"type": "string"
},
"contenttypeaction": {
"enum": [
"none",
"block",
"learn",
"log",
"stats"
],
"type": "object"
},
"cookieconsistencyaction": {
"enum": [
"none",
"block",
"learn",
"log",
"stats"
],
"type": "object"
},
"cookieencryption": {
"enum": [
"none",
"decryptOnly",
"encryptSessionOnly",
"encryptAll"
],
"type": "string"
},
"cookieproxying": {
"enum": [
"none",
"sessionOnly"
],
"type": "string"
},
"cookietransforms": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"creditcard": {
"enum": [
"none",
"visa",
"mastercard",
"discover",
"amex",
"jcb",
"dinersclub"
],
"type": "object"
},
"creditcardaction": {
"enum": [
"none",
"block",
"learn",
"log",
"stats"
],
"type": "object"
},
"creditcardmaxallowed": {
"type": "integer"
},
"creditcardxout": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"crosssitescriptingaction": {
"enum": [
"none",
"block",
"learn",
"log",
"stats"
],
"type": "object"
},
"crosssitescriptingcheckcompleteurls": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"crosssitescriptingtransformunsafehtml": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"csrftag": {
"readonly": true,
"type": "string"
},
"csrftagaction": {
"enum": [
"none",
"block",
"learn",
"log",
"stats"
],
"type": "object"
},
"customsettings": {
"type": "string"
},
"defaultcharset": {
"type": "string"
},
"defaultfieldformatmaxlength": {
"type": "integer"
},
"defaultfieldformatminlength": {
"type": "integer"
},
"defaultfieldformattype": {
"type": "string"
},
"defaults": {
"enum": [
"basic",
"advanced"
],
"type": "string"
},
"denyurlaction": {
"enum": [
"none",
"block",
"log",
"stats"
],
"type": "object"
},
"dosecurecreditcardlogging": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"dynamiclearning": {
"enum": [
"none",
"SQLInjection",
"CrossSiteScripting",
"fieldFormat",
"startURL"
],
"type": "object"
},
"enableformtagging": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"errorurl": {
"type": "string"
},
"excludefileuploadfromchecks": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"exemptclosureurlsfromsecuritychecks": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"fieldconsistencyaction": {
"enum": [
"none",
"block",
"learn",
"log",
"stats"
],
"type": "object"
},
"fieldformataction": {
"enum": [
"none",
"block",
"learn",
"log",
"stats"
],
"type": "object"
},
"fileuploadmaxnum": {
"type": "integer"
},
"fileuploadtypesaction": {
"enum": [
"none",
"block",
"log",
"stats"
],
"type": "object"
},
"htmlerrorobject": {
"type": "string"
},
"inspectcontenttypes": {
"enum": [
"none",
"application/x-www-form-urlencoded",
"multipart/form-data",
"text/x-gwt-rpc"
],
"type": "object"
},
"invalidpercenthandling": {
"enum": [
"apache_mode",
"asp_mode",
"secure_mode"
],
"type": "string"
},
"jsondosaction": {
"enum": [
"none",
"block",
"log",
"stats"
],
"type": "object"
},
"jsonerrorobject": {
"type": "string"
},
"jsonsqlinjectionaction": {
"enum": [
"none",
"block",
"log",
"stats"
],
"type": "object"
},
"jsonsqlinjectiontype": {
"enum": [
"SQLSplChar",
"SQLKeyword",
"SQLSplCharORKeyword",
"SQLSplCharANDKeyword"
],
"type": "string"
},
"jsonxssaction": {
"enum": [
"none",
"block",
"log",
"stats"
],
"type": "object"
},
"logeverypolicyhit": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"multipleheaderaction": {
"enum": [
"block",
"keepLast",
"log",
"none"
],
"type": "object"
},
"name": {
"type": "string"
},
"optimizepartialreqs": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"percentdecoderecursively": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"postbodylimit": {
"type": "integer"
},
"postbodylimitsignature": {
"type": "integer"
},
"refererheadercheck": {
"enum": [
"OFF",
"if_present",
"AlwaysExceptStartURLs",
"AlwaysExceptFirstRequest"
],
"type": "string"
},
"requestcontenttype": {
"type": "string"
},
"responsecontenttype": {
"type": "string"
},
"rfcprofile": {
"type": "string"
},
"semicolonfieldseparator": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"sessionlessfieldconsistency": {
"enum": [
"OFF",
"ON",
"postOnly"
],
"type": "string"
},
"sessionlessurlclosure": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"signatures": {
"type": "string"
},
"sqlinjectionaction": {
"enum": [
"none",
"block",
"learn",
"log",
"stats"
],
"type": "object"
},
"sqlinjectionchecksqlwildchars": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"sqlinjectiononlycheckfieldswithsqlchars": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"sqlinjectionparsecomments": {
"enum": [
"checkall",
"ansi",
"nested",
"ansinested"
],
"type": "string"
},
"sqlinjectiontransformspecialchars": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"sqlinjectiontype": {
"enum": [
"SQLSplChar",
"SQLKeyword",
"SQLSplCharORKeyword",
"SQLSplCharANDKeyword"
],
"type": "string"
},
"starturlaction": {
"enum": [
"none",
"block",
"learn",
"log",
"stats"
],
"type": "object"
},
"starturlclosure": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"state": {
"enum": [
"ENABLED",
"DISABLED"
],
"readonly": true,
"type": "string"
},
"streaming": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"stripcomments": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"striphtmlcomments": {
"enum": [
"none",
"all",
"exclude_script_tag"
],
"type": "string"
},
"stripxmlcomments": {
"enum": [
"none",
"all"
],
"type": "string"
},
"trace": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"type": {
"enum": [
"HTML",
"XML",
"JSON"
],
"type": "object"
},
"urldecoderequestcookies": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"usehtmlerrorobject": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"verboseloglevel": {
"enum": [
"pattern",
"patternPayload",
"patternPayloadHeader"
],
"type": "string"
},
"xmlattachmentaction": {
"enum": [
"none",
"block",
"learn",
"log",
"stats"
],
"type": "object"
},
"xmldosaction": {
"enum": [
"none",
"block",
"learn",
"log",
"stats"
],
"type": "object"
},
"xmlerrorobject": {
"type": "string"
},
"xmlformataction": {
"enum": [
"none",
"block",
"log",
"stats"
],
"type": "object"
},
"xmlsoapfaultaction": {
"enum": [
"none",
"block",
"log",
"remove",
"stats"
],
"type": "object"
},
"xmlsqlinjectionaction": {
"enum": [
"none",
"block",
"log",
"stats"
],
"type": "object"
},
"xmlsqlinjectionchecksqlwildchars": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlsqlinjectiononlycheckfieldswithsqlchars": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlsqlinjectionparsecomments": {
"enum": [
"checkall",
"ansi",
"nested",
"ansinested"
],
"type": "string"
},
"xmlsqlinjectiontype": {
"enum": [
"SQLSplChar",
"SQLKeyword",
"SQLSplCharORKeyword",
"SQLSplCharANDKeyword"
],
"type": "string"
},
"xmlvalidationaction": {
"enum": [
"none",
"block",
"log",
"stats"
],
"type": "object"
},
"xmlwsiaction": {
"enum": [
"none",
"block",
"learn",
"log",
"stats"
],
"type": "object"
},
"xmlxssaction": {
"enum": [
"none",
"block",
"learn",
"log",
"stats"
],
"type": "object"
}
},
"title": "appfwprofile",
"type": "object"
} | o30001 |
{
"properties": {
"networking": {
"description": "OpenLDAP networking configuration properties",
"properties": {
"external_access": {
"description": "Enable access from outside the cluster through Marathon-LB.\nNOTE: this connection is unencrypted.",
"properties": {
"enable": {
"default": false,
"description": "Enable or disable creating a VIP for external access through a public node running Marathon-LB.",
"type": "boolean"
},
"external_port": {
"default": 10389,
"description": "For external access, port number to be used for clear communication in the external Marathon-LB load balancer",
"type": "number"
}
},
"type": "object"
},
"port": {
"default": 389,
"description": "Port number to be used for clear communication internally to the cluster.",
"type": "number"
}
},
"type": "object"
},
"openldap": {
"description": "OpenLDAP service configuration properties",
"properties": {
"additional_modules": {
"description": "Comma-separated list of modules to load.",
"type": "string"
},
"additional_schemas": {
"description": "Loads additional schemas provided in the slapd package.",
"type": "string"
},
"admin_password": {
"default": "admin",
"description": "Administrator password. Defaults to 'admin'.",
"type": "string"
},
"config_password": {
"default": "password",
"description": "Allows password protected access to the dn=config branch. This helps to reconfigure the server without interruption. Defaults to 'password'",
"type": "string"
},
"cpus": {
"default": 0.3,
"description": "CPU shares to allocate to each OpenLDAP node.",
"minimum": 0.3,
"type": "number"
},
"domain": {
"default": "example.org",
"description": "LDAP domain. Defaults to example.org",
"type": "string"
},
"force_reconfigure": {
"default": false,
"description": "Reconfigure the service after the image has been initialized.",
"type": "boolean"
},
"mem": {
"default": 128.0,
"description": "Memory to allocate to each OpenLDAP node.",
"minimum": 128.0,
"type": "number"
},
"organization": {
"default": "example",
"description": "Organization name.",
"type": "string"
}
},
"required": [
"cpus",
"mem"
],
"type": "object"
},
"service": {
"description": "DC/OS service configuration properties",
"properties": {
"name": {
"default": "openldap",
"description": "Name of this service instance.",
"type": "string"
}
},
"type": "object"
},
"storage": {
"description": "OpenLDAP storage configuration properties",
"properties": {
"host_volume": {
"default": "/tmp",
"description": "The location of a volume on the host to be used for persisting OpenLDAP data. The final location will be derived from this value plus the name set in `name` (e.g. `/mnt/host_volume/openldap`). Note that this path must be the same on all DCOS agents.",
"type": "string"
},
"persistence": {
"description": "Enable persistent storage.",
"properties": {
"enable": {
"default": false,
"description": "Enable or disable data persistence.",
"type": "boolean"
},
"ldap_volume_size": {
"default": 256,
"description": "Size in MBs of the volume to be created for the LDAP database",
"type": "number"
},
"slapd_volume_size": {
"default": 64,
"description": "Size in MBs of the volume to be created for internal storage of the SLAPD daemon.",
"type": "number"
}
},
"type": "object"
}
},
"type": "object"
}
}
} | o90807 |
{
"properties": {
"activeservices": {
"readonly": true,
"type": "integer"
},
"appflowlog": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"backupip": {
"type": "string"
},
"backuplbmethod": {
"enum": [
"ROUNDROBIN",
"LEASTCONNECTION",
"LEASTRESPONSETIME",
"SOURCEIPHASH",
"LEASTBANDWIDTH",
"LEASTPACKETS",
"STATICPROXIMITY",
"RTT",
"CUSTOMLOAD",
"API"
],
"type": "string"
},
"backupsessiontimeout": {
"type": "integer"
},
"backupvserver": {
"type": "string"
},
"comment": {
"type": "string"
},
"considereffectivestate": {
"enum": [
"NONE",
"STATE_ONLY"
],
"type": "string"
},
"cookie_domain": {
"type": "string"
},
"cookietimeout": {
"type": "integer"
},
"curstate": {
"enum": [
"UP",
"DOWN",
"UNKNOWN",
"BUSY",
"OUT OF SERVICE",
"GOING OUT OF SERVICE",
"DOWN WHEN GOING OUT OF SERVICE",
"NS_EMPTY_STR",
"Unknown",
"DISABLED"
],
"readonly": true,
"type": "string"
},
"disableprimaryondown": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"dnsrecordtype": {
"enum": [
"A",
"AAAA",
"CNAME",
"NAPTR"
],
"type": "string"
},
"domainname": {
"type": "string"
},
"dynamicweight": {
"enum": [
"SERVICECOUNT",
"SERVICEWEIGHT",
"DISABLED"
],
"type": "string"
},
"ecs": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"ecsaddrvalidation": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"edr": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"gotopriorityexpression": {
"readonly": true,
"type": "string"
},
"health": {
"readonly": true,
"type": "integer"
},
"iptype": {
"enum": [
"IPV4",
"IPV6"
],
"type": "string"
},
"iscname": {
"enum": [
"ENABLED",
"DISABLED"
],
"readonly": true,
"type": "string"
},
"lbmethod": {
"enum": [
"ROUNDROBIN",
"LEASTCONNECTION",
"LEASTRESPONSETIME",
"SOURCEIPHASH",
"LEASTBANDWIDTH",
"LEASTPACKETS",
"STATICPROXIMITY",
"RTT",
"CUSTOMLOAD",
"API"
],
"type": "string"
},
"lbrrreason": {
"readonly": true,
"type": "integer"
},
"mir": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"name": {
"type": "string"
},
"netmask": {
"type": "string"
},
"newname": {
"type": "string"
},
"nodefaultbindings": {
"enum": [
"YES",
"NO"
],
"readonly": true,
"type": "string"
},
"persistenceid": {
"type": "integer"
},
"persistencetype": {
"enum": [
"SOURCEIP",
"NONE"
],
"type": "string"
},
"persistmask": {
"type": "string"
},
"policyname": {
"readonly": true,
"type": "string"
},
"priority": {
"readonly": true,
"type": "integer"
},
"rule": {
"type": "string"
},
"servername": {
"readonly": true,
"type": "string"
},
"servicename": {
"type": "string"
},
"servicetype": {
"enum": [
"HTTP",
"FTP",
"TCP",
"UDP",
"SSL",
"SSL_BRIDGE",
"SSL_TCP",
"NNTP",
"ANY",
"SIP_UDP",
"SIP_TCP",
"SIP_SSL",
"RADIUS",
"RDP",
"RTSP",
"MYSQL",
"MSSQL",
"ORACLE"
],
"type": "string"
},
"sitedomainttl": {
"type": "integer"
},
"sitepersistence": {
"enum": [
"ConnectionProxy",
"HTTPRedirect",
"NONE"
],
"readonly": true,
"type": "string"
},
"sobackupaction": {
"enum": [
"DROP",
"ACCEPT",
"REDIRECT"
],
"type": "string"
},
"somethod": {
"enum": [
"CONNECTION",
"DYNAMICCONNECTION",
"BANDWIDTH",
"HEALTH",
"NONE"
],
"type": "string"
},
"sopersistence": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"sopersistencetimeout": {
"type": "integer"
},
"sothreshold": {
"type": "integer"
},
"state": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"statechangetimemsec": {
"readonly": true,
"type": "integer"
},
"statechangetimesec": {
"readonly": true,
"type": "string"
},
"status": {
"readonly": true,
"type": "integer"
},
"tickssincelaststatechange": {
"readonly": true,
"type": "integer"
},
"timeout": {
"type": "integer"
},
"tolerance": {
"type": "integer"
},
"totalservices": {
"readonly": true,
"type": "integer"
},
"ttl": {
"type": "integer"
},
"type": {
"enum": [
"REQUEST",
"RESPONSE"
],
"readonly": true,
"type": "string"
},
"v6netmasklen": {
"type": "integer"
},
"v6persistmasklen": {
"type": "integer"
},
"vsvrbindsvcip": {
"readonly": true,
"type": "string"
},
"vsvrbindsvcport": {
"readonly": true,
"type": "integer"
},
"weight": {
"type": "integer"
}
},
"title": "gslbvserver",
"type": "object"
} | o30488 |
{
"properties": {
"commit": {
"default": true,
"description": "Initial git repository commit information.",
"oneOf": [
{
"type": "boolean"
},
{
"properties": {
"email": {
"format": "email",
"type": "string"
},
"message": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"email"
],
"type": "object"
}
]
},
"createApplication": {
"default": true,
"description": "When true (the default), creates a new initial app project in the src folder of the new workspace. When false, creates an empty workspace with no initial app. You can then use the generate application command so that all apps are created in the projects folder.",
"type": "boolean"
},
"directory": {
"description": "The directory name to create the workspace in.",
"type": "string"
},
"enableIvy": {
"default": false,
"description": "When true, creates a new app that uses the Ivy rendering engine.",
"type": "boolean"
},
"inlineStyle": {
"alias": "s",
"default": false,
"description": "When true, includes styles inline in the component TS file. By default, an external styles file is created and referenced in the component TS file.",
"type": "boolean",
"x-user-analytics": 9
},
"inlineTemplate": {
"alias": "t",
"default": false,
"description": "When true, includes template inline in the component TS file. By default, an external template file is created and referenced in the component TS file.",
"type": "boolean",
"x-user-analytics": 10
},
"linkCli": {
"default": false,
"description": "When true, links the CLI to the global version (internal development only).",
"type": "boolean",
"visible": false
},
"minimal": {
"default": false,
"description": "When true, creates a project without any testing frameworks. (Use for learning purposes only.)",
"type": "boolean",
"x-user-analytics": 14
},
"name": {
"$default": {
"$source": "argv",
"index": 0
},
"description": "The name of the new workspace and initial project.",
"format": "html-selector",
"type": "string",
"x-prompt": "What name would you like to use for the new workspace and initial project?"
},
"newProjectRoot": {
"default": "projects",
"description": "The path where new projects will be created, relative to the new workspace root.",
"type": "string"
},
"prefix": {
"alias": "p",
"default": "app",
"description": "The prefix to apply to generated selectors for the initial project.",
"format": "html-selector",
"minLength": 1,
"type": "string"
},
"routing": {
"default": false,
"description": "When true, generates a routing module for the initial project.",
"type": "boolean",
"x-prompt": "Would you like to add Angular routing?",
"x-user-analytics": 17
},
"skipGit": {
"alias": "g",
"default": false,
"description": "When true, does not initialize a git repository.",
"type": "boolean"
},
"skipInstall": {
"default": false,
"description": "When true, does not install dependency packages.",
"type": "boolean"
},
"skipTests": {
"alias": "S",
"default": false,
"description": "When true, does not generate \"spec.ts\" test files for the new project. ",
"type": "boolean",
"x-user-analytics": 12
},
"style": {
"default": "css",
"description": "The file extension or preprocessor to use for style files.",
"enum": [
"css",
"scss",
"sass",
"less",
"styl"
],
"type": "string",
"x-prompt": {
"items": [
{
"label": "CSS",
"value": "css"
},
{
"label": "SCSS [ https://sass-lang.com/documentation/syntax#scss ]",
"value": "scss"
},
{
"label": "Sass [ https://sass-lang.com/documentation/syntax#the-indented-syntax ]",
"value": "sass"
},
{
"label": "Less [ http://lesscss.org ]",
"value": "less"
},
{
"label": "Stylus [ http://stylus-lang.com ]",
"value": "styl"
}
],
"message": "Which stylesheet format would you like to use?",
"type": "list"
},
"x-user-analytics": 5
},
"version": {
"$default": {
"$source": "ng-cli-version"
},
"description": "The version of the Angular CLI to use.",
"type": "string",
"visible": false
},
"viewEncapsulation": {
"description": "The view encapsulation strategy to use in the initial project.",
"enum": [
"Emulated",
"Native",
"None",
"ShadowDom"
],
"type": "string",
"x-user-analytics": 11
}
},
"required": [
"name",
"version"
],
"title": "Angular Ng New Options Schema",
"type": "object"
} | o64885 |
{
"properties": {
"metrics": {
"form": true,
"properties": {
"enabled": {
"description": "Create a side-car container to expose Prometheus metrics",
"form": true,
"title": "Create Prometheus metrics exporter",
"type": "boolean"
},
"serviceMonitor": {
"properties": {
"enabled": {
"description": "Create a ServiceMonitor to track metrics using Prometheus Operator",
"form": true,
"hidden": {
"condition": false,
"value": "metrics.enabled"
},
"title": "Create Prometheus Operator ServiceMonitor",
"type": "boolean"
}
},
"type": "object"
}
},
"title": "Prometheus metrics details",
"type": "object"
},
"persistence": {
"form": true,
"properties": {
"enabled": {
"description": "Enable persistence using Persistent Volume Claims",
"form": true,
"title": "Enable persistence",
"type": "boolean"
},
"size": {
"form": true,
"hidden": {
"condition": false,
"value": "persistence.enabled"
},
"render": "slider",
"sliderMax": 100,
"sliderMin": 1,
"sliderUnit": "Gi",
"title": "Persistent Volume Size",
"type": "string"
}
},
"title": "Persistence configuration",
"type": "object"
},
"rabbitmq": {
"properties": {
"extraConfiguration": {
"description": "Extra configuration to be appended to RabbitMQ Configuration",
"form": true,
"render": "textArea",
"title": "Extra RabbitMQ Configuration",
"type": "string"
},
"password": {
"description": "Defaults to a random 10-character alphanumeric string if not set",
"form": true,
"title": "RabbitMQ password",
"type": "string"
},
"username": {
"form": true,
"title": "RabbitMQ user",
"type": "string"
}
},
"type": "object"
},
"replicas": {
"description": "Number of replicas to deploy",
"form": true,
"title": "Number of replicas",
"type": "integer"
},
"volumePermissions": {
"properties": {
"enabled": {
"description": "Use an init container to set required folder permissions on the data volume before mounting it in the final destination",
"form": true,
"title": "Enable Init Containers",
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
} | o84052 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"MyAlias": {
"$ref": "#/definitions/MySubObject",
"description": "My sub object"
},
"MyString": {
"description": "My string",
"type": "string"
},
"MySubObject": {
"description": "My sub object",
"properties": {
"propA": {
"type": "number"
},
"propB": {
"type": "number"
}
},
"required": [
"propA",
"propB"
],
"type": "object"
}
},
"description": "My Object",
"properties": {
"alias": {
"$ref": "#/definitions/MyAlias"
},
"object": {
"$ref": "#/definitions/MySubObject"
},
"primitive": {
"$ref": "#/definitions/MyString"
}
},
"required": [
"primitive",
"object",
"alias"
],
"type": "object"
} | o25974 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.5.5/traits/trait_syndication.json",
"title": "Syndication",
"type": "object",
"description": "Key-boolean pair of syndication services where this article may go",
"patternProperties": {
".*": {
"type": "boolean"
}
}
} | o86372 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://ibl.api.bbci.co.uk/ibl/v1/schema/ibl.json",
"type": "object",
"properties": {
"schema": {
"type": "string"
},
"version": {
"type": "string"
},
"status": {
"type": "object",
"properties": {
"service": {
"type": "string"
},
"release": {
"type": "string"
}
},
"required": [
"service",
"release"
],
"additionalProperties": false
},
"error": {
"type": "object",
"properties": {
"details": {
"type": "string"
},
"http_response_code": {
"type": "number"
}
},
"required": [
"details",
"http_response_code"
],
"additionalProperties": false
},
"categories": {
"type": "array",
"items": {
"$ref": "#/definitions/category"
}
},
"channels": {
"type": "array",
"items": {
"$ref": "#/definitions/channel"
}
},
"regions": {
"type": "array",
"items": {
"$ref": "#/definitions/region"
}
},
"region": {
"$ref": "#/definitions/region"
},
"episodes": {
"type": "array",
"items": {
"$ref": "#/definitions/episode"
}
},
"programmes": {
"type": "array",
"items": {
"$ref": "#/definitions/programme"
}
},
"programme_episodes": {
"type": "object",
"properties": {
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"count": {
"type": "number"
},
"elements": {
"type": "array",
"items": {
"$ref": "#/definitions/episode"
}
},
"programme": {
"$ref": "#/definitions/programme"
}
},
"required": [
"elements",
"page",
"per_page",
"count",
"programme"
],
"additionalProperties": false
},
"programme_watching": {
"type": "object",
"properties": {
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"count": {
"type": "number"
},
"elements": {
"type": "array",
"items": {
"anyof": [
{
"$ref": "#/definitions/episode"
},
{
"$ref": "#/definitions/watching"
}
]
}
},
"programme": {
"$ref": "#/definitions/programme"
}
},
"required": [
"elements",
"page",
"per_page",
"count",
"programme"
],
"additionalProperties": false
},
"group_episodes": {
"type": "object",
"properties": {
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"count": {
"type": "number"
},
"elements": {
"type": "array",
"items": {
"$ref": "#/definitions/episode"
}
},
"group": {
"$ref": "#/definitions/group"
}
},
"required": [
"elements",
"page",
"per_page",
"count"
],
"additionalProperties": false
},
"episode_recommendations": {
"type": "object",
"properties": {
"count": {
"type": "number"
},
"elements": {
"type": "array",
"items": {
"$ref": "#/definitions/episode"
}
},
"blend": {
"enum": [
"curated",
"algorithmic"
]
}
},
"required": [
"elements",
"count",
"blend"
],
"additionalProperties": false
},
"broadcasts": {
"type": "object",
"properties": {
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"count": {
"type": "number"
},
"elements": {
"type": "array",
"items": {
"$ref": "#/definitions/broadcast"
}
},
"channel": {
"$ref": "#/definitions/channel"
}
},
"required": [
"elements",
"page",
"per_page",
"count",
"channel"
],
"additionalProperties": false
},
"schedule": {
"type": "object",
"properties": {
"elements": {
"type": "array",
"items": {
"$ref": "#/definitions/broadcast"
}
},
"channel": {
"$ref": "#/definitions/channel"
}
},
"required": [
"elements",
"channel"
],
"additionalProperties": false
},
"category_programmes": {
"type": "object",
"properties": {
"count": {
"type": "number"
},
"category": {
"$ref": "#/definitions/category"
},
"elements": {
"type": "array",
"items": {
"$ref": "#/definitions/programme"
}
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
}
},
"required": [
"category",
"page",
"count",
"per_page",
"elements"
],
"additionalProperties": false
},
"channel_programmes": {
"type": "object",
"properties": {
"count": {
"type": "number"
},
"channel": {
"$ref": "#/definitions/channel"
},
"elements": {
"type": "array",
"items": {
"$ref": "#/definitions/programme"
}
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
}
},
"required": [
"channel",
"page",
"count",
"per_page",
"elements"
],
"additionalProperties": false
},
"atoz_programmes": {
"type": "object",
"properties": {
"count": {
"type": "number"
},
"character": {
"type": "string"
},
"elements": {
"type": "array",
"items": {
"$ref": "#/definitions/programme"
}
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
}
},
"required": [
"character",
"page",
"count",
"per_page",
"elements"
],
"additionalProperties": false
},
"home_highlights": {
"type": "object",
"properties": {
"elements": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/episode"
},
{
"$ref": "#/definitions/group"
},
{
"$ref": "#/definitions/promotion"
}
]
}
}
},
"required": [
"elements"
],
"additionalProperties": false
},
"channel_highlights": {
"type": "object",
"properties": {
"channel": {
"$ref": "#/definitions/channel"
},
"elements": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/episode"
},
{
"$ref": "#/definitions/group"
},
{
"$ref": "#/definitions/promotion"
}
]
}
}
},
"required": [
"channel",
"elements"
],
"additionalProperties": false
},
"category_highlights": {
"type": "object",
"properties": {
"category": {
"$ref": "#/definitions/category"
},
"elements": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/episode"
},
{
"$ref": "#/definitions/group"
},
{
"$ref": "#/definitions/promotion"
}
]
}
}
},
"required": [
"category",
"elements"
],
"additionalProperties": false
},
"prerolls": {
"type": "array",
"items": {
"$ref": "#/definitions/trailer"
}
},
"postrolls": {
"type": "array",
"items": {
"$ref": "#/definitions/trailer"
}
},
"search": {
"type": "object",
"properties": {
"query": {
"type": "string"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"count": {
"type": "number"
},
"results": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/episode"
},
{
"$ref": "#/definitions/programme"
},
{
"$ref": "#/definitions/search_group"
}
]
}
}
},
"required": [
"results",
"query"
],
"additionalProperties": false
},
"search_suggest": {
"type": "object",
"properties": {
"query": {
"type": "string"
},
"results": {
"type": "array",
"items": {
"$ref": "#/definitions/programme"
}
}
},
"required": [
"results",
"query"
],
"additionalProperties": false
},
"new_search": {
"type": "object",
"properties": {
"query": {
"type": "string"
},
"results": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/episode"
},
{
"$ref": "#/definitions/programme"
}
]
}
}
},
"required": [
"results",
"query"
],
"additionalProperties": false
},
"watching": {
"type": "object",
"properties": {
"elements": {
"type": "array",
"items": {
"$ref": "#/definitions/watching"
}
},
"count": {
"type": "number"
},
"count_all": {
"type": "number"
}
},
"required": [
"elements",
"count",
"count_all"
],
"additionalProperties": false
},
"user_recommendations": {
"type": "object",
"properties": {
"elements": {
"type": "array",
"items": {
"$ref": "#/definitions/user_recommendation"
}
},
"rec_source": {
"type": "string"
},
"rec_feed": {
"type": "string"
},
"rec_set": {
"type": "string"
}
},
"required": [
"elements",
"rec_source",
"rec_set"
],
"additionalProperties": false
},
"added": {
"type": "object",
"properties": {
"elements": {
"type": "array",
"items": {
"$ref": "#/definitions/added"
}
},
"count": {
"type": "number"
},
"count_all": {
"type": "number"
}
},
"required": [
"elements",
"count",
"count_all"
],
"additionalProperties": false
},
"adds": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"added": {
"type": "string"
}
},
"required": [
"id",
"added"
],
"additionalProperties": false
},
"purchases": {
"type": "object",
"properties": {
"elements": {
"type": "array",
"items": {
"$ref": "#/definitions/episode"
}
},
"count": {
"type": "number"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"value_added_material": {
"type": "boolean"
},
"revocations": {
"type": "boolean"
}
},
"required": [
"elements",
"page",
"per_page",
"count",
"revocations",
"value_added_material"
],
"additionalProperties": false
},
"versions": {
"type": "array",
"items": {
"$ref": "#/definitions/store_version"
}
},
"next": {
"type": "object",
"properties": {
"programme": {
"type": "array",
"items": {
"$ref": "#/definitions/episode"
},
"minItems": 0,
"maxItems": 1
}
}
},
"category": {
"$ref": "#/definitions/category"
},
"trailers": {
"type": "object",
"properties": {
"elements": {
"type": "array",
"items": {
"$ref": "#/definitions/clip"
}
}
},
"required": [
"elements"
],
"additionalProperties": false
},
"clips": {
"type": "array",
"items": {
"$ref": "#/definitions/clip"
},
"maxItems": 1
}
},
"required": [
"schema",
"version"
],
"additionalProperties": false,
"definitions": {
"category": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"category"
]
},
"title": {
"type": "string"
},
"kind": {
"enum": [
"genre",
"accessibility",
"national"
]
},
"child_episode_count": {
"type": "number"
},
"child_programme_count": {
"type": "number"
},
"parent_category": {
"type": "string"
},
"contextual_title": {
"type": "string"
},
"sub_categories": {
"type": "array",
"items": {
"$ref": "#/definitions/category"
}
}
},
"required": [
"id",
"title",
"type",
"kind"
],
"additionalProperties": false
},
"channel": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"channel"
]
},
"title": {
"type": "string"
},
"has_schedule": {
"type": "boolean"
},
"master_brand_id": {
"type": "string"
},
"master_brand_title": {
"type": "string"
},
"on_air": {
"type": "boolean"
}
},
"required": [
"id",
"title",
"type",
"has_schedule",
"master_brand_id",
"master_brand_title"
],
"additionalProperties": false
},
"region": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"short_id": {
"type": "string"
},
"type": {
"enum": [
"region"
]
},
"title": {
"type": "string"
},
"kind": {
"enum": [
"regional",
"national"
]
}
},
"required": [
"id",
"short_id",
"type",
"title",
"kind"
],
"additionalProperties": false
},
"episode": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"episode",
"episode_large"
]
},
"title": {
"type": "string"
},
"tests": {
"type": "array",
"items": {
"test": {
"type": "object",
"required": [
"id",
"variants",
"status"
],
"properties": {
"id": {
"type": "string"
},
"variants": {
"type": "array",
"items": {
"type": "object",
"required": [
"id",
"data"
],
"properties": {
"id": {
"type": "string"
},
"data": {
"type": "object",
"required": [
"images"
],
"properties": {
"images": {
"type": "object",
"required": [
"type",
"standard"
],
"properties": {
"type": {
"enum": [
"episode",
"episode_large"
]
},
"standard": {
"type": "string"
}
}
}
}
}
}
}
},
"status": {
"type": {
"enum": [
"active"
]
}
}
}
}
}
},
"original_title": {
"type": "string"
},
"live": {
"type": "boolean"
},
"images": {
"type": "object",
"properties": {
"type": {
"enum": [
"image"
]
},
"standard": {
"type": "string"
},
"live": {
"type": "string"
},
"character_image": {
"type": "string"
},
"programme_logo": {
"type": "string"
},
"inherited_from": {
"type": "string"
},
"promotional": {
"type": "string"
},
"promotional_with_logo": {
"type": "string"
}
},
"required": [
"type",
"standard"
],
"additionalProperties": false
},
"has_credits": {
"type": "boolean"
},
"signed": {
"type": "boolean"
},
"childrens": {
"type": "boolean"
},
"audio_described": {
"type": "boolean"
},
"status": {
"enum": [
"available",
"unavailable"
]
},
"requires_tv_licence": {
"type": "boolean"
},
"requires_sign_in": {
"type": "boolean"
},
"tleo_id": {
"type": "string"
},
"guidance": {
"type": "boolean"
},
"subtitle": {
"type": "string"
},
"editorial_subtitle": {
"type": "string"
},
"editorial_title": {
"type": "string"
},
"live_title": {
"type": "string"
},
"live_subtitle": {
"type": "string"
},
"slice_subtitle": {
"type": "string"
},
"event_group_id": {
"type": "string"
},
"preview_id": {
"type": "string"
},
"slice_id": {
"type": "string"
},
"synopses": {
"type": "object",
"properties": {
"small": {
"type": "string"
},
"medium": {
"type": "string"
},
"large": {
"type": "string"
},
"editorial": {
"type": "string"
},
"preview": {
"type": "string"
},
"programme_small": {
"type": "string"
},
"live": {
"type": "string"
}
},
"additionalProperties": false
},
"versions": {
"type": "array",
"items": {
"anyOf": [
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"version",
"version_large"
]
},
"hd": {
"type": "boolean"
},
"uhd": {
"type": "boolean"
},
"download": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"duration": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"text",
"value"
],
"additionalProperties": false
},
"rrc": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"description": {
"type": "object",
"properties": {
"small": {
"type": "string"
},
"large": {
"type": "string"
}
},
"required": [
"small",
"large"
],
"additionalProperties": false
}
},
"required": [
"description"
],
"additionalProperties": false
},
"guidance": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"text": {
"type": "object",
"properties": {
"small": {
"type": "string"
},
"medium": {
"type": "string"
},
"large": {
"type": "string"
}
},
"additionalProperties": false
}
},
"required": [
"id"
],
"additionalProperties": false
},
"first_broadcast": {
"type": "string"
},
"first_broadcast_date_time": {
"type": "string"
},
"credits_start": {
"type": "number"
},
"service_id": {
"type": "string"
},
"availability": {
"type": "object",
"properties": {
"start": {
"type": "string"
},
"accurate_start": {
"type": "string"
},
"end": {
"type": "string"
},
"remaining": {
"type": "object",
"properties": {
"text": {
"type": "string"
}
},
"required": [
"text"
],
"additionalProperties": false
}
},
"required": [
"start"
],
"additionalProperties": false
},
"events": {
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"system": {
"type": "string"
},
"offset": {
"type": "integer"
}
},
"required": [
"name",
"system",
"offset"
],
"additionalProperties": false
},
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"system": {
"type": "string"
},
"time": {
"type": "string"
}
},
"required": [
"name",
"system",
"time"
],
"additionalProperties": false
}
]
}
}
},
"required": [
"id",
"type",
"hd",
"uhd",
"download",
"duration",
"kind",
"availability"
],
"additionalProperties": false
},
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"store_version"
]
},
"store_id": {
"type": "string"
},
"store_profile": {
"type": "string"
},
"hd": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"download": {
"type": "boolean"
},
"duration": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"text",
"value"
],
"additionalProperties": false
},
"guidance": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"text": {
"type": "object",
"properties": {
"small": {
"type": "string"
},
"medium": {
"type": "string"
},
"large": {
"type": "string"
}
},
"additionalProperties": false
}
},
"required": [
"id"
],
"additionalProperties": false
},
"store_session": {
"type": "object",
"properties": {
"token": {
"type": "string"
},
"stats": {
"type": "object",
"properties": {
"parentPID": {
"type": "string"
},
"parentPIDType": {
"type": "string"
},
"viewerId": {
"type": "string"
},
"contentType": {
"type": "string"
},
"contentVariant": {
"type": "string"
},
"episodeName": {
"type": "string"
},
"assetName": {
"type": "string"
},
"productVariant": {
"type": "string"
}
}
},
"ceiling": {
"type": "number"
}
},
"required": [
"token",
"stats"
],
"additionalProperties": false
}
},
"required": [
"id",
"type",
"store_id",
"store_profile",
"hd",
"download",
"duration",
"kind"
],
"additionalProperties": false
}
]
}
},
"parent_id": {
"type": "string"
},
"tleo_type": {
"enum": [
"episode",
"brand",
"series"
]
},
"programme_type": {
"enum": [
"narrative",
"sequential",
"self-contained",
"strand",
"unclassified",
"one-off"
]
},
"categories": {
"type": "array",
"items": {
"type": "string"
}
},
"next_broadcast": {
"type": "object",
"properties": {
"channel_title": {
"type": "string"
},
"scheduled_start": {
"type": "string"
}
},
"required": [
"channel_title",
"scheduled_start"
],
"additionalProperties": false
},
"labels": {
"type": "object",
"properties": {
"editorial": {
"type": "string"
},
"time": {
"type": "string"
},
"category": {
"type": "string"
},
"editorial_category": {
"type": "string"
}
},
"additionalProperties": false
},
"master_brand": {
"$ref": "#/definitions/master_brand"
},
"parent_position": {
"type": "number"
},
"release_date_time": {
"type": "string"
},
"lexical_sort_letter": {
"type": "string"
},
"numeric_tleo_position": {
"type": "number"
},
"release_date": {
"type": "string"
},
"related_links": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"url": {
"type": "string"
},
"kind": {
"type": "string"
},
"title": {
"type": "string"
},
"type": {
"enum": [
"link"
]
}
},
"required": [
"id",
"url",
"type",
"kind",
"title"
],
"additionalProperties": false
}
},
"promoted": {
"type": "boolean"
}
},
"required": [
"id",
"type",
"title",
"images",
"signed",
"audio_described",
"status",
"tleo_id",
"guidance",
"synopses",
"versions",
"tleo_type",
"categories",
"master_brand",
"lexical_sort_letter",
"requires_sign_in"
],
"additionalProperties": false
},
"programme": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"programme",
"programme_large"
]
},
"title": {
"type": "string"
},
"labels": {
"type": "object",
"properties": {
"category": {
"type": "string"
}
},
"additionalProperties": false
},
"tleo_type": {
"enum": [
"brand",
"series",
"episode"
]
},
"synopses": {
"type": "object",
"properties": {
"small": {
"type": "string"
},
"medium": {
"type": "string"
},
"large": {
"type": "string"
}
},
"additionalProperties": false
},
"lexical_sort_letter": {
"type": "string"
},
"images": {
"type": "object",
"properties": {
"type": {
"enum": [
"image"
]
},
"standard": {
"type": "string"
},
"inherited_from": {
"type": "string"
}
},
"required": [
"type",
"standard"
],
"additionalProperties": false
},
"master_brand": {
"$ref": "#/definitions/master_brand"
},
"categories": {
"type": "array",
"items": {
"type": "string"
}
},
"status": {
"enum": [
"available",
"unavailable"
]
},
"count": {
"type": "number"
},
"programme_type": {
"enum": [
"narrative",
"sequential",
"self-contained",
"strand",
"unclassified",
"one-off"
]
},
"initial_children": {
"type": "array",
"items": {
"$ref": "#/definitions/episode"
}
}
},
"required": [
"id",
"type",
"title",
"synopses",
"lexical_sort_letter",
"images",
"master_brand",
"categories",
"status",
"count",
"initial_children"
],
"additionalProperties": false
},
"master_brand": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"titles": {
"type": "object",
"properties": {
"small": {
"type": "string"
},
"medium": {
"type": "string"
},
"large": {
"type": "string"
}
},
"required": [
"small",
"medium",
"large"
],
"additionalProperties": false
},
"ident_id": {
"type": "string"
},
"attribution": {
"type": "string"
}
},
"required": [
"id",
"titles",
"attribution"
],
"additionalProperties": false
},
"group": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"group",
"group_large"
]
},
"title": {
"type": "string"
},
"short_title": {
"type": "string"
},
"group_type": {
"enum": [
"tleo",
"curated",
"automated",
"event"
]
},
"stacked": {
"type": "boolean"
},
"images": {
"type": "object",
"properties": {
"type": {
"enum": [
"image"
]
},
"standard": {
"type": "string"
},
"vertical": {
"type": "string"
}
},
"required": [
"type",
"standard",
"vertical"
],
"additionalProperties": false
},
"episode_sort_direction": {
"type": "string"
},
"synopses": {
"type": "object",
"properties": {
"small": {
"type": "string"
},
"medium": {
"type": "string"
},
"large": {
"type": "string"
}
},
"additionalProperties": false
},
"master_brand": {
"$ref": "#/definitions/master_brand"
},
"related_links": {
"type": "array",
"items": {
"type": "object",
"properties": {
"kind": {
"type": "string"
},
"url": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"kind",
"url",
"title"
],
"additionalProperties": false
}
},
"initial_children": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/episode"
},
{
"$ref": "#/definitions/broadcast"
}
]
}
},
"count": {
"type": "number"
}
},
"required": [
"id",
"type"
],
"additionalProperties": false
},
"broadcast": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"episode_id": {
"type": "string"
},
"version_id": {
"type": "string"
},
"service_id": {
"type": "string"
},
"type": {
"enum": [
"broadcast"
]
},
"scheduled_start": {
"type": "string"
},
"scheduled_end": {
"type": "string"
},
"transmission_start": {
"type": "string"
},
"transmission_end": {
"type": "string"
},
"duration": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"value",
"text"
],
"additionalProperties": false
},
"blanked": {
"type": "boolean"
},
"repeat": {
"type": "boolean"
},
"episode": {
"$ref": "#/definitions/episode"
},
"channel_title": {
"type": "string"
},
"available_on_hd_service": {
"type": [
"string",
"null"
]
},
"events": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"system": {
"type": "string"
},
"time": {
"type": "string"
}
},
"required": [
"name",
"system",
"time"
],
"additionalProperties": false
}
}
},
"required": [
"id",
"type",
"scheduled_start",
"scheduled_end",
"repeat",
"blanked",
"episode",
"episode_id",
"version_id",
"service_id"
],
"additionalProperties": false
},
"promotion": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"promotion"
]
},
"title": {
"type": "string"
},
"subtitle": {
"type": "string"
},
"url": {
"type": "string"
},
"synopses": {
"type": "object",
"properties": {
"small": {
"type": "string"
},
"medium": {
"type": "string"
},
"large": {
"type": "string"
}
},
"additionalProperties": false
},
"images": {
"type": "object",
"properties": {
"type": {
"enum": [
"image"
]
},
"standard": {
"type": "string"
},
"inherited_from": {
"type": "string"
}
},
"required": [
"type",
"standard"
],
"additionalProperties": false
},
"labels": {
"type": "object",
"properties": {
"promotion": {
"type": "string"
}
},
"required": [
"promotion"
],
"additionalProperties": false
}
},
"required": [
"id",
"type"
],
"additionalProperties": false
},
"trailer": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"trailer"
]
},
"title": {
"type": "string"
},
"kind": {
"enum": [
"available_now",
"watch_now",
"coming_soon",
"streaming_now_sounds",
"other"
]
},
"version_id": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"id",
"type",
"title",
"kind",
"version_id",
"message"
],
"additionalProperties": false
},
"search_group": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"search_group"
]
},
"episode": {
"$ref": "#/definitions/episode"
}
},
"required": [
"id",
"type",
"episode"
],
"additionalProperties": false
},
"watching": {
"type": "object",
"properties": {
"urn": {
"type": "string"
},
"type": {
"enum": [
"watching"
]
},
"episode": {
"$ref": "#/definitions/episode"
},
"programme": {
"$ref": "#/definitions/programme"
},
"version": {
"$ref": "#/definitions/version"
},
"status": {
"enum": [
"current",
"next",
"ended"
]
},
"offset": {
"type": "number"
},
"progress": {
"type": "number"
},
"remaining": {
"type": "number"
},
"has_next": {
"type": "boolean"
}
},
"required": [
"type",
"urn",
"episode",
"programme",
"version",
"has_next"
],
"additionalProperties": false
},
"user_recommendation": {
"type": "object",
"properties": {
"algorithm": {
"type": "string"
},
"type": {
"enum": [
"user_recommendation"
]
},
"episode": {
"$ref": "#/definitions/episode"
}
},
"required": [
"algorithm",
"type",
"episode"
],
"additionalProperties": false
},
"added": {
"type": "object",
"properties": {
"urn": {
"type": "string"
},
"type": {
"enum": [
"added"
]
},
"programme": {
"$ref": "#/definitions/programme"
}
},
"required": [
"urn",
"type",
"programme"
],
"additionalProperties": false
},
"store_version": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"store_version"
]
},
"store_id": {
"type": "string"
},
"store_profile": {
"type": "string"
},
"hd": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"download": {
"type": "boolean"
},
"duration": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"text",
"value"
],
"additionalProperties": false
},
"guidance": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"text": {
"type": "object",
"properties": {
"small": {
"type": "string"
},
"medium": {
"type": "string"
},
"large": {
"type": "string"
}
},
"additionalProperties": false
}
},
"required": [
"id"
],
"additionalProperties": false
},
"store_session": {
"type": "object",
"properties": {
"token": {
"type": "string"
},
"stats": {
"type": "object",
"properties": {
"parentPID": {
"type": "string"
},
"parentPIDType": {
"type": "string"
},
"viewerId": {
"type": "string"
},
"contentType": {
"type": "string"
},
"contentVariant": {
"type": "string"
},
"episodeName": {
"type": "string"
},
"assetName": {
"type": "string"
},
"productVariant": {
"type": "string"
}
}
},
"ceiling": {
"type": "number"
}
},
"required": [
"token",
"stats"
],
"additionalProperties": false
}
},
"required": [
"id",
"type",
"store_id",
"store_profile",
"hd",
"download",
"duration",
"kind"
],
"additionalProperties": false
},
"clip": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"clip"
]
},
"title": {
"type": "string"
},
"images": {
"type": "object",
"properties": {
"type": {
"enum": [
"image"
]
},
"standard": {
"type": "string"
},
"inherited_from": {
"type": "string"
}
},
"required": [
"type",
"standard"
],
"additionalProperties": false
},
"tleo_id": {
"type": "string"
},
"synopses": {
"type": "object",
"properties": {
"small": {
"type": "string"
},
"medium": {
"type": "string"
},
"large": {
"type": "string"
},
"editorial": {
"type": "string"
}
},
"additionalProperties": false
},
"versions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"version",
"version_large"
]
},
"hd": {
"type": "boolean"
},
"uhd": {
"type": "boolean"
},
"download": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"duration": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"text",
"value"
],
"additionalProperties": false
},
"rrc": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"description": {
"type": "object",
"properties": {
"small": {
"type": "string"
},
"large": {
"type": "string"
}
},
"required": [
"small",
"large"
],
"additionalProperties": false
}
},
"required": [
"description"
],
"additionalProperties": false
},
"guidance": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"text": {
"type": "object",
"properties": {
"small": {
"type": "string"
},
"medium": {
"type": "string"
},
"large": {
"type": "string"
}
},
"additionalProperties": false
}
},
"required": [
"id"
],
"additionalProperties": false
},
"first_broadcast": {
"type": "string"
},
"first_broadcast_date_time": {
"type": "string"
},
"credits_start": {
"type": "number"
},
"service_id": {
"type": "string"
},
"availability": {
"type": "object",
"properties": {
"start": {
"type": "string"
},
"accurate_start": {
"type": "string"
},
"end": {
"type": "string"
},
"remaining": {
"type": "object",
"properties": {
"text": {
"type": "string"
}
},
"required": [
"text"
],
"additionalProperties": false
}
},
"required": [
"start"
],
"additionalProperties": false
},
"events": {
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"system": {
"type": "string"
},
"offset": {
"type": "integer"
}
},
"required": [
"name",
"system",
"offset"
],
"additionalProperties": false
},
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"system": {
"type": "string"
},
"time": {
"type": "string"
}
},
"required": [
"name",
"system",
"time"
],
"additionalProperties": false
}
]
}
}
},
"required": [
"id",
"type",
"hd",
"uhd",
"download",
"duration",
"kind",
"availability"
],
"additionalProperties": false
}
},
"tleo_type": {
"enum": [
"episode",
"brand",
"series"
]
},
"labels": {
"type": "object",
"properties": {
"editorial": {
"type": "string"
},
"category": {
"type": "string"
}
},
"additionalProperties": false
},
"master_brand": {
"$ref": "#/definitions/master_brand"
},
"promotion_type": {
"enum": [
"available_now",
"coming_soon"
]
},
"onward_journey": {
"type": "object",
"properties": {
"type": {
"enum": [
"episode"
]
},
"id": {
"type": "string"
}
},
"additionalProperties": false
}
},
"required": [
"id",
"type",
"title",
"images",
"tleo_id",
"synopses",
"versions",
"master_brand"
],
"additionalProperties": false
},
"version": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"version",
"version_large"
]
},
"hd": {
"type": "boolean"
},
"uhd": {
"type": "boolean"
},
"download": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"duration": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"text",
"value"
],
"additionalProperties": false
},
"rrc": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"description": {
"type": "object",
"properties": {
"small": {
"type": "string"
},
"large": {
"type": "string"
}
},
"required": [
"small",
"large"
],
"additionalProperties": false
}
},
"required": [
"description"
],
"additionalProperties": false
},
"guidance": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"text": {
"type": "object",
"properties": {
"small": {
"type": "string"
},
"medium": {
"type": "string"
},
"large": {
"type": "string"
}
},
"additionalProperties": false
}
},
"required": [
"id"
],
"additionalProperties": false
},
"first_broadcast": {
"type": "string"
},
"first_broadcast_date_time": {
"type": "string"
},
"credits_start": {
"type": "number"
},
"service_id": {
"type": "string"
},
"availability": {
"type": "object",
"properties": {
"start": {
"type": "string"
},
"accurate_start": {
"type": "string"
},
"end": {
"type": "string"
},
"remaining": {
"type": "object",
"properties": {
"text": {
"type": "string"
}
},
"required": [
"text"
],
"additionalProperties": false
}
},
"required": [
"start"
],
"additionalProperties": false
},
"events": {
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"system": {
"type": "string"
},
"offset": {
"type": "integer"
}
},
"required": [
"name",
"system",
"offset"
],
"additionalProperties": false
},
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"system": {
"type": "string"
},
"time": {
"type": "string"
}
},
"required": [
"name",
"system",
"time"
],
"additionalProperties": false
}
]
}
}
},
"required": [
"id",
"type",
"hd",
"uhd",
"download",
"duration",
"kind",
"availability"
],
"additionalProperties": false
}
}
} | o10420 |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"properties": {
"bar": {
"type": "array",
"maxItems": 10
}
}
} | o25189 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScopedResourceSelectorRequirement": {
"description": "A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.",
"properties": {
"operator": {
"description": "Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.",
"type": "string"
},
"scopeName": {
"description": "The name of the scope that the selector applies to.",
"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. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"scopeName",
"operator"
],
"type": "object"
}
},
"description": "A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements.",
"properties": {
"matchExpressions": {
"description": "A list of scope selector requirements by scope of the resources.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScopedResourceSelectorRequirement"
},
"type": [
"array",
"null"
]
}
},
"type": "object"
} | kb_932_Normalized |
{
"description": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.",
"properties": {
"hostname": {
"description": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)",
"type": [
"string",
"null"
]
},
"ip": {
"description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)",
"type": [
"string",
"null"
]
}
},
"type": "object"
} | kb_537_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TypedLocalObjectReference": {
"description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.",
"properties": {
"apiGroup": {
"description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.",
"type": "string"
},
"kind": {
"description": "Kind is the type of resource being referenced",
"type": "string"
},
"name": {
"description": "Name is the name of resource being referenced",
"type": "string"
}
},
"required": [
"kind",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_HTTPIngressPath": {
"description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.",
"properties": {
"backend": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressBackend",
"description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to."
},
"path": {
"description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. When unspecified, all paths from incoming requests are matched.",
"type": "string"
},
"pathType": {
"description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types. Defaults to ImplementationSpecific.",
"type": "string"
}
},
"required": [
"backend"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_HTTPIngressRuleValue": {
"description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.",
"properties": {
"paths": {
"description": "A collection of paths that map requests to backends.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_HTTPIngressPath"
},
"type": "array"
}
},
"required": [
"paths"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressBackend": {
"description": "IngressBackend describes all endpoints for a given service and port.",
"properties": {
"resource": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TypedLocalObjectReference",
"description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, serviceName and servicePort must not be specified."
},
"serviceName": {
"description": "Specifies the name of the referenced service.",
"type": "string"
},
"servicePort": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Specifies the port of the referenced service."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.",
"properties": {
"host": {
"description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.",
"type": [
"string",
"null"
]
},
"http": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_HTTPIngressRuleValue"
}
},
"type": "object"
} | kb_453_Normalized |
{
"additionalProperties": false,
"description": "Schema for the focus of a form field",
"properties": {
"elementClasses": {
"description": "An array of the classes on the element",
"items": {
"description": "A class on the element",
"maxLength": 4096,
"minLength": 0,
"type": "string"
},
"type": [
"array",
"null"
]
},
"elementId": {
"description": "The id of the element that has just received focus",
"maxLength": 4096,
"minLength": 0,
"type": "string"
},
"elementType": {
"description": "The type of input element",
"enum": [
"button",
"checkbox",
"color",
"date",
"datetime",
"datetime-local",
"email",
"file",
"hidden",
"image",
"month",
"number",
"password",
"radio",
"range",
"reset",
"search",
"submit",
"tel",
"text",
"time",
"url",
"week"
],
"type": [
"string",
"null"
]
},
"formId": {
"description": "The id of the form the element belongs to",
"maxLength": 4096,
"minLength": 0,
"type": "string"
},
"nodeName": {
"description": "The node type of the element",
"enum": [
"INPUT",
"TEXTAREA",
"SELECT"
],
"type": "string"
},
"value": {
"description": "The value of the element when it gained focus",
"maxLength": 65535,
"minLength": 0,
"type": [
"string",
"null"
]
}
},
"required": [
"formId",
"elementId",
"nodeName",
"value"
],
"self": {
"format": "jsonschema",
"name": "focus_form",
"vendor": "com.snowplowanalytics.snowplow",
"version": "1-0-0"
},
"type": "object"
} | sp_286_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"regex": {
"type": "boolean",
"default": "false"
},
"code": {
"type": "string"
},
"old": {
"type": "string"
},
"new": {
"type": "string"
},
"classify": {
"type": "object",
"properties": {
"SOURCE": {
"$ref": "#/definitions/classification"
},
"BINARY": {
"$ref": "#/definitions/classification"
},
"SEMANTIC": {
"$ref": "#/definitions/classification"
},
"OTHER": {
"$ref": "#/definitions/classification"
}
},
"minProperties": 1
}
},
"additionalProperties": {
"type": "string"
},
"required": [
"code"
]
},
"minItems": 1,
"definitions": {
"classification": {
"type": "string",
"enum": [
"EQUIVALENT",
"NON_BREAKING",
"POTENTIALLY_BREAKING",
"BREAKING"
]
}
}
} | o70011 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"camera": {
"properties": {
"position": {
"$ref": "#/definitions/vector"
},
"direction": {
"$ref": "#/definitions/vector"
},
"up": {
"$ref": "#/definitions/vector"
}
},
"additionalProperties": false
},
"objects": {
"type": "array",
"items": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/sphere"
},
{
"$ref": "#/definitions/torus"
},
{
"$ref": "#/definitions/cone"
},
{
"$ref": "#/definitions/cylinder"
},
{
"$ref": "#/definitions/plane"
},
{
"$ref": "#/definitions/polygon"
}
]
},
"_uniqueItems": true
},
"lights": {
"type": "array",
"items": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/directionLight"
},
{
"$ref": "#/definitions/pointLight"
}
]
},
"_uniqueItems": true
},
"ambientColour": {
"$ref": "#/definitions/colour"
},
"backgroundColour": {
"$ref": "#/definitions/colour"
}
},
"definitions": {
"vector": {
"type": [
"array",
"object"
],
"properties": {
"x": {
"type": "number"
},
"y": {
"type": "number"
},
"z": {
"type": "number"
}
},
"minItems": 0,
"maxItems": 3,
"additionalProperties": false
},
"colour": {
"type": [
"array",
"object"
],
"properties": {
"r": {
"type": "number"
},
"g": {
"type": "number"
},
"b": {
"type": "number"
},
"a": {
"type": "number"
}
},
"minItems": 0,
"maxItems": 4,
"additionalProperties": false
},
"material": {
"oneOf": [
{
"$ref": "#/definitions/solidMaterial"
},
{
"$ref": "#/definitions/textureMaterial"
},
{
"$ref": "#/definitions/stripedMaterial"
}
]
},
"solidMaterial": {
"properties": {
"type": {
"enum": [
"solid"
]
},
"colour": {
"$ref": "#/definitions/colour"
},
"reflectivity": {
"type": "number",
"minimum": 0,
"maximum": 1
},
"refractivity": {
"minimum": -1,
"maximum": 1
},
"specularity": {
"type": "number"
}
},
"additionalProperties": false,
"required": [
"type",
"colour"
]
},
"textureMaterial": {
"properties": {
"type": {
"enum": [
"texture"
]
},
"path": {
"type": "string"
},
"scaling": {
"$ref": "#/definitions/vector"
},
"reflectivity": {
"type": "number",
"minimum": 0,
"maximum": 1
},
"refractivity": {
"minimum": -1,
"maximum": 1
},
"specularity": {
"type": "number"
}
},
"additionalProperties": false,
"required": [
"type",
"path"
]
},
"stripedMaterial": {
"properties": {
"type": {
"enum": [
"pattern-stripe"
]
},
"direction": {
"enum": [
"horizontal",
"vertical"
]
},
"multiplier": {
"type": "number"
},
"colour1": {
"$ref": "#/definitions/colour"
},
"colour2": {
"$ref": "#/definitions/colour"
},
"reflectivity": {
"type": "number",
"minimum": 0,
"maximum": 1
},
"refractivity": {
"minimum": -1,
"maximum": 1
},
"specularity": {
"type": "number"
}
},
"additionalProperties": false,
"required": [
"type",
"direction",
"multiplier",
"colour1",
"colour2"
]
},
"sphere": {
"properties": {
"type": {
"enum": [
"sphere"
]
},
"position": {
"$ref": "#/definitions/vector"
},
"radius": {
"type": "number",
"minimum": 0
},
"material": {
"$ref": "#/definitions/material"
}
},
"additionalProperties": false,
"required": [
"type",
"position",
"radius",
"material"
]
},
"torus": {
"properties": {
"type": {
"enum": [
"torus"
]
},
"position": {
"$ref": "#/definitions/vector"
},
"majorRadius": {
"type": "number",
"minimum": 0
},
"minorRadius": {
"type": "number",
"minimum": 0
},
"material": {
"$ref": "#/definitions/material"
}
},
"additionalProperties": false,
"required": [
"type",
"position",
"majorRadius",
"minorRadius",
"material"
]
},
"cone": {
"properties": {
"type": {
"enum": [
"cone"
]
},
"position": {
"$ref": "#/definitions/vector"
},
"radius": {
"type": "number",
"minimum": 0
},
"height": {
"type": "number",
"minimum": 0
},
"material": {
"$ref": "#/definitions/material"
}
},
"additionalProperties": false,
"required": [
"type",
"position",
"radius",
"height",
"material"
]
},
"cylinder": {
"properties": {
"type": {
"enum": [
"cylinder"
]
},
"position": {
"$ref": "#/definitions/vector"
},
"radius": {
"type": "number",
"minimum": 0
},
"height": {
"type": "number",
"minimum": 0
},
"material": {
"$ref": "#/definitions/material"
}
},
"additionalProperties": false,
"required": [
"type",
"position",
"radius",
"height",
"material"
]
},
"plane": {
"properties": {
"type": {
"enum": [
"plane"
]
},
"position": {
"$ref": "#/definitions/vector"
},
"normal": {
"$ref": "#/definitions/vector"
},
"material": {
"$ref": "#/definitions/material"
}
},
"additionalProperties": false,
"required": [
"type",
"position",
"normal",
"material"
]
},
"polygon": {
"properties": {
"type": {
"enum": [
"polygon"
]
},
"points": {
"type": "array",
"items": {
"$ref": "#/definitions/vector"
},
"minItems": 3,
"maxItems": 4,
"_uniqueItems": true
},
"texCoords": {
"type": "array",
"items": {
"$ref": "#/definitions/vector"
},
"minItems": 3,
"maxItems": 4
},
"material": {
"$ref": "#/definitions/material"
}
},
"additionalProperties": false,
"required": [
"type",
"points",
"material"
]
},
"directionLight": {
"properties": {
"type": {
"enum": [
"direction"
]
},
"direction": {
"$ref": "#/definitions/vector"
},
"colour": {
"$ref": "#/definitions/colour"
}
},
"additionalProperties": false,
"required": [
"type",
"direction",
"colour"
]
},
"pointLight": {
"properties": {
"type": {
"enum": [
"point"
]
},
"position": {
"$ref": "#/definitions/vector"
},
"colour": {
"$ref": "#/definitions/colour"
},
"attenuation-constant": {
"type": "number"
},
"attenuation-linear": {
"type": "number"
},
"attenuation-quadratic": {
"type": "number"
}
},
"additionalProperties": false,
"required": [
"type",
"position",
"colour",
"attenuation-constant",
"attenuation-linear",
"attenuation-quadratic"
]
}
},
"additionalProperties": false,
"required": [
"objects"
]
} | o13024 |
{
"title": "mediaInfo chart value",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"description": "The value object contains information for popup windows about how charts should be constructed.",
"properties": {
"fields": {
"type": "array",
"description": "An array of strings, with each string containing the name of a field to display in the chart.",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"normalizeField": {
"type": "string",
"description": "An optional string containing the name of a field. The values of all fields in the chart will be normalized (divided) by the value of this field."
},
"tooltipField": {
"type": "string",
"description": "String value indicating the tooltip for a chart specified from another field. This field is needed when related records are not used. It is used for showing tooltips from another field in the same layer or related layer/table."
}
},
"required": [
"fields"
],
"additionalProperties": false
} | o90240 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "MovesList",
"type": "array",
"_uniqueItems": true,
"minItems": 1,
"description": "A list of moves played by each child",
"items": {
"title": "moves",
"type": "object",
"properties": {
"childno": {
"description": "The unique child identifier",
"type": "integer",
"minimum": 0
},
"split": {
"description": "Whether the split is made in this move or not",
"type": "boolean"
},
"pause": {
"description": "Whether the child comes to stand still or not",
"type": "boolean"
},
"relativeangle": {
"description": "Angle relative to the current angle",
"type": "number",
"minimum": -360.0,
"maximum": 360.0
},
"ejectmass": {
"description": "Whether the child ejects mass or not",
"type": "boolean"
}
},
"required": [
"childno",
"split",
"pause",
"relativeangle",
"ejectmass"
]
}
} | o23494 |
{
"properties": {
"backplane": {
"type": "string"
},
"cfgflags": {
"readonly": true,
"type": "integer"
},
"clearnodegroupconfig": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"clusterhealth": {
"enum": [
"UP",
"Configurations of the node are lagging behind the cluster by more than 256 commands",
"The config sync operation has exceeded the time limit of 60 seconds",
"The config sync operation (full sync) is in progress",
"The node is not in sync with the cluster configurations as sync is disabled on this node",
"The execution of a configuration command has failed on this node",
"UNKNOWN"
],
"readonly": true,
"type": "string"
},
"delay": {
"type": "integer"
},
"disabledifaces": {
"readonly": true,
"type": "string"
},
"effectivestate": {
"enum": [
"UP",
"NOT UP",
"UNKNOWN",
"INIT"
],
"readonly": true,
"type": "string"
},
"enabledifaces": {
"readonly": true,
"type": "string"
},
"hamonifaces": {
"readonly": true,
"type": "string"
},
"health": {
"enum": [
"UNKNOWN",
"INIT",
"DOWN",
"UP",
"Some enabled and HAMON interfaces of the node are down",
"All interfaces of the node are down or disabled",
"SSL card(s) of the node have failed",
"Route Monitor(s) of the node have failed",
"Service state is being synchronized with the cluster",
"The backplane interface is either not set or it is down or is disabled",
"The CLAG member(s) of the node are down",
"Persistence sessions are being synchronized with the cluster",
"The Syn Cookie is being synchronized with the cluster",
"Unknown Health",
"AAA keys are being sychronized with the cluster",
"Cluster health is not up due to config sync is in progress"
],
"readonly": true,
"type": "string"
},
"ifaceslist": {
"readonly": true,
"type": "object"
},
"ipaddress": {
"type": "string"
},
"isconfigurationcoordinator": {
"readonly": true,
"type": "boolean"
},
"islocalnode": {
"readonly": true,
"type": "boolean"
},
"masterstate": {
"enum": [
"INACTIVE",
"ACTIVE",
"UNKNOWN"
],
"readonly": true,
"type": "string"
},
"name": {
"readonly": true,
"type": "string"
},
"netmask": {
"readonly": true,
"type": "string"
},
"nodegroup": {
"type": "string"
},
"nodeid": {
"type": "integer"
},
"nodejumbonotsupported": {
"readonly": true,
"type": "boolean"
},
"nodelicensemismatch": {
"readonly": true,
"type": "boolean"
},
"nodelist": {
"readonly": true,
"type": "object"
},
"nodersskeymismatch": {
"readonly": true,
"type": "boolean"
},
"operationalsyncstate": {
"enum": [
"ENABLED",
"SUCCESS",
"IN PROGRESS",
"FAILED",
"INCREMENTAL SYNC DISABLED",
"DISABLED",
"UNKNOWN"
],
"readonly": true,
"type": "string"
},
"partialfailifaces": {
"readonly": true,
"type": "string"
},
"priority": {
"type": "integer"
},
"routemonitor": {
"readonly": true,
"type": "string"
},
"state": {
"enum": [
"ACTIVE",
"SPARE",
"PASSIVE"
],
"type": "string"
},
"syncstate": {
"enum": [
"ENABLED",
"DISABLED"
],
"readonly": true,
"type": "string"
},
"tunnelmode": {
"enum": [
"NONE",
"GRE",
"UDP"
],
"type": "string"
}
},
"title": "clusternode",
"type": "object"
} | o30287 |
{
"properties": {
"dimensions": {
"properties": {
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"length",
"width",
"radius"
],
"type": "object"
},
"shape": {
"description": "The shape type (e.g., square, rectangle, circle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_b6e5c8fd |
{
"definitions": {
"actionFieldObject": {
"properties": {
"affiliation": {
"type": "string"
},
"coupon": {
"type": "string"
},
"id": {
"type": "string"
},
"list": {
"type": "string"
},
"option": {
"type": "string"
},
"revenue": {
"type": "string"
},
"shipping": {
"type": "string"
},
"step": {
"type": "number"
},
"tax": {
"type": "string"
}
},
"type": "object"
},
"add": {
"properties": {
"actionField": {
"$ref": "#/definitions/actionFieldObject"
},
"products": {
"items": {
"$ref": "#/definitions/productFieldObject"
},
"type": "array"
}
},
"type": "object"
},
"checkout": {
"properties": {
"actionField": {
"$ref": "#/definitions/actionFieldObject"
},
"products": {
"items": {
"$ref": "#/definitions/productFieldObject"
},
"type": "array"
}
},
"type": "object"
},
"checkout_option": {
"properties": {
"actionField": {
"$ref": "#/definitions/actionFieldObject"
},
"products": {
"items": {
"$ref": "#/definitions/productFieldObject"
},
"type": "array"
}
},
"type": "object"
},
"click": {
"properties": {
"actionField": {
"$ref": "#/definitions/actionFieldObject"
},
"products": {
"items": {
"$ref": "#/definitions/productFieldObject"
},
"type": "array"
}
},
"type": "object"
},
"detail": {
"properties": {
"actionField": {
"$ref": "#/definitions/actionFieldObject"
},
"products": {
"items": {
"$ref": "#/definitions/productFieldObject"
},
"type": "array"
}
},
"type": "object"
},
"impressionFieldObject": {
"anyOf": [
{
"required": [
"name"
]
},
{
"required": [
"id"
]
}
],
"properties": {
"brand": {
"type": "string"
},
"category": {
"type": "string"
},
"id": {
"type": "string"
},
"list": {
"type": "string"
},
"name": {
"type": "string"
},
"position": {
"type": "number"
},
"price": {
"type": "string"
},
"variant": {
"type": "string"
}
},
"type": "object"
},
"impressions": {
"items": {
"$ref": "#/definitions/impressionFieldObject"
},
"type": "array"
},
"productFieldObject": {
"anyOf": [
{
"required": [
"name"
]
},
{
"required": [
"id"
]
}
],
"properties": {
"brand": {
"type": "string"
},
"category": {
"type": "string"
},
"coupon": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"position": {
"type": "number"
},
"price": {
"type": "string"
},
"quantity": {
"type": "number"
},
"variant": {
"type": "string"
}
},
"type": "object"
},
"promoClick": {
"properties": {
"promotions": {
"items": {
"$ref": "#/definitions/promoFieldObject"
},
"type": "array"
}
},
"type": "object"
},
"promoFieldObject": {
"anyOf": [
{
"required": [
"name"
]
},
{
"required": [
"id"
]
}
],
"properties": {
"creative": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"position": {
"type": "string"
}
},
"type": "object"
},
"promoView": {
"properties": {
"promotions": {
"items": {
"$ref": "#/definitions/promoFieldObject"
},
"type": "array"
}
},
"type": "object"
},
"purchase": {
"properties": {
"actionField": {
"$ref": "#/definitions/actionFieldObject"
},
"products": {
"items": {
"$ref": "#/definitions/productFieldObject"
},
"type": "array"
}
},
"type": "object"
},
"refund": {
"properties": {
"actionField": {
"$ref": "#/definitions/actionFieldObject"
},
"products": {
"items": {
"$ref": "#/definitions/productFieldObject"
},
"type": "array"
}
},
"type": "object"
},
"remove": {
"properties": {
"actionField": {
"$ref": "#/definitions/actionFieldObject"
},
"products": {
"items": {
"$ref": "#/definitions/productFieldObject"
},
"type": "array"
}
},
"type": "object"
}
},
"properties": {
"currencyCode": {
"type": "string"
}
},
"type": "object"
} | o72536 |
{
"properties": {
"courses": {
"items": {
"properties": {
"course_name": {
"description": "The name of the course",
"type": "string"
},
"credit_hours": {
"description": "The credit hours of the course",
"type": "number"
},
"grade": {
"description": "The grade received in the course",
"enum": [
"A",
"B",
"C",
"D",
"F"
],
"type": "string"
}
},
"required": [
"course_name",
"grade",
"credit_hours"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"courses"
],
"type": "object"
} | calculate_gpa_897b4123 |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"base": {
"description": "The base of the shape (for triangle)",
"type": "number"
},
"height": {
"description": "The height of the shape (for triangle)",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape (for circle)",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"length",
"width"
],
"type": "object"
},
"shape": {
"description": "The type of shape (e.g. rectangle, triangle, circle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_e1832ed2 |
{
"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",
"null"
]
}
},
"required": [
"conditionType"
],
"type": "object"
} | kb_715_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"config",
"inputs"
],
"type": "object",
"properties": {
"inputs": {
"required": [
"BVAL_1",
"BVEC_1",
"NIFTI_1"
],
"type": "object",
"properties": {
"anatomical": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
},
"BVAL_1": {
"type": "object",
"properties": {
"type": {
"enum": [
"bval"
]
}
}
},
"BVAL_2": {
"type": "object",
"properties": {
"type": {
"enum": [
"bval"
]
}
}
},
"BVEC_2": {
"type": "object",
"properties": {
"type": {
"enum": [
"bvec"
]
}
}
},
"BVEC_1": {
"type": "object",
"properties": {
"type": {
"enum": [
"bvec"
]
}
}
},
"NIFTI_1": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
},
"NIFTI_2": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
}
}
},
"config": {
"required": [
"cleanIter",
"imresample",
"track_algorithm",
"computeCSD",
"fiberWeighting",
"track_stepSizeMm",
"catTime",
"track_minLengthThreshMm",
"qmr_metadata_ndirs",
"qmr_metadata_sex",
"savefigs",
"rotateBvecsWithRx",
"catX",
"catY",
"catZ",
"bsplineInterpFlag",
"track_faThresh",
"maxDist",
"track_whichAlgorithm",
"clip2rois",
"phaseEncodeDir",
"track_offsetJitter",
"track_nfibers",
"cutoffUpper",
"cleanClippedFibers",
"numberOfNodes",
"track_maxLengthThreshMm",
"numBootStrapSamples",
"qmr_runcontrolcomp",
"flipLrApFlag",
"track_faMaskThresh",
"auto",
"eddyCorrect",
"track_wPuncture",
"base_outname",
"maxLen",
"computenorms",
"track_angleThresh",
"track_seedVoxelOffset_1",
"normalization",
"cutoffLower",
"qmr_metadata_bvalue",
"noiseCalcMethod",
"catTR",
"rotateBvecsWithCanXform",
"nStep",
"track_whichInterp",
"cleanFibers",
"qmr_metadata_age_comp",
"qmr_meatadata_age",
"track_seedVoxelOffset_2",
"fitMethod",
"dwOutMm_3",
"dwOutMm_2",
"dwOutMm_1"
],
"type": "object",
"properties": {
"cleanIter": {
"default": 5,
"type": "integer"
},
"imresample": {
"default": 0,
"type": "integer"
},
"track_algorithm": {
"default": "mrdiffusion",
"type": "string"
},
"computeCSD": {
"default": 0,
"type": "integer"
},
"fiberWeighting": {
"default": 1,
"type": "integer"
},
"qmr_meatadata_age": {
"default": 0,
"type": "integer"
},
"catTime": {
"default": false,
"type": "boolean",
"id": "-t"
},
"track_minLengthThreshMm": {
"default": 50,
"type": "integer"
},
"track_angleThresh": {
"default": 30,
"type": "integer"
},
"qmr_metadata_sex": {
"default": "unknown",
"type": "string"
},
"savefigs": {
"default": 0,
"type": "integer"
},
"rotateBvecsWithRx": {
"default": 0,
"type": "integer"
},
"catX": {
"default": false,
"type": "boolean",
"id": "-x"
},
"catY": {
"default": false,
"type": "boolean",
"id": "-y"
},
"catZ": {
"default": false,
"type": "boolean",
"id": "-z"
},
"bsplineInterpFlag": {
"default": 0,
"type": "integer"
},
"track_faThresh": {
"default": 0.2,
"type": "number"
},
"maxDist": {
"default": 5,
"type": "integer"
},
"cleanFibers": {
"default": 1,
"type": "integer"
},
"clip2rois": {
"default": 1,
"type": "integer"
},
"phaseEncodeDir": {
"default": 2,
"type": "integer"
},
"track_offsetJitter": {
"default": 0,
"type": "number"
},
"track_nfibers": {
"default": 500000,
"type": "integer"
},
"cutoffUpper": {
"default": 90,
"type": "integer"
},
"qmr_metadata_ndirs": {
"default": 30,
"type": "integer"
},
"numberOfNodes": {
"default": 100,
"type": "integer"
},
"qmr_metadata_bvalue": {
"default": 1000,
"type": "integer"
},
"eddyCorrect": {
"default": 1,
"type": "integer"
},
"numBootStrapSamples": {
"default": 500,
"type": "integer"
},
"flipLrApFlag": {
"default": 0,
"type": "integer"
},
"track_faMaskThresh": {
"default": 0.3,
"type": "number"
},
"auto": {
"default": true,
"type": "boolean",
"id": "-a"
},
"cleanClippedFibers": {
"default": 0,
"type": "integer"
},
"track_wPuncture": {
"default": 0.2,
"type": "number"
},
"base_outname": {
"default": "none",
"type": "string"
},
"maxLen": {
"default": 4,
"type": "integer"
},
"computenorms": {
"default": 1,
"type": "integer"
},
"track_whichAlgorithm": {
"default": 1,
"type": "integer"
},
"track_seedVoxelOffset_1": {
"default": 0.25,
"type": "number"
},
"noiseCalcMethod": {
"default": "b0",
"type": "string"
},
"normalization": {
"default": "spm",
"type": "string"
},
"cutoffLower": {
"default": 10,
"type": "integer"
},
"qmr_runcontrolcomp": {
"default": 1,
"type": "integer"
},
"track_stepSizeMm": {
"default": 1,
"type": "integer"
},
"catTR": {
"default": 0,
"type": "number",
"id": "-tr"
},
"dwOutMm_2": {
"default": 2,
"type": "integer"
},
"track_whichInterp": {
"default": 1,
"type": "integer"
},
"track_maxLengthThreshMm": {
"default": 250,
"type": "integer"
},
"qmr_metadata_age_comp": {
"default": 0,
"type": "integer"
},
"track_seedVoxelOffset_2": {
"default": 0.75,
"type": "number"
},
"fitMethod": {
"default": "ls",
"type": "string"
},
"dwOutMm_3": {
"default": 2,
"type": "integer"
},
"nStep": {
"default": 50,
"type": "integer"
},
"dwOutMm_1": {
"default": 2,
"type": "integer"
},
"rotateBvecsWithCanXform": {
"default": 1,
"type": "integer"
}
}
}
},
"title": "Invocation manifest for AFQ Pipeline: Automated Fiber Quantification Pipeline"
} | o41389 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"Esquio": {
"type": ["object", "null"],
"properties": {
"Products": {
"type": ["array", "null"],
"items": {
"$ref": "#/definitions/Product"
}
}
},
"required": ["Products"]
},
"Feature": {
"type": ["object", "null"],
"properties": {
"Name": {
"type": ["string", "null"]
},
"Enabled": {
"type": "boolean"
},
"Toggles": {
"type": ["array", "null"],
"items": {
"$ref": "#/definitions/Toggle"
}
}
},
"required": ["Name", "Enabled", "Toggles"]
},
"Product": {
"type": ["object", "null"],
"properties": {
"Name": {
"type": ["string", "null"]
},
"Features": {
"type": ["array", "null"],
"items": {
"$ref": "#/definitions/Feature"
}
}
},
"required": ["Name", "Features"]
},
"Toggle": {
"type": ["object", "null"],
"properties": {
"Type": {
"type": ["string", "null"]
},
"Parameters": {}
},
"required": ["Type", "Parameters"]
}
},
"id": "https://json.schemastore.org/esquio.json",
"properties": {
"Esquio": {
"$ref": "#/definitions/Esquio"
}
},
"required": ["Esquio"],
"title": "JSON schema for Esquio configuration files",
"type": "object"
}
| esquio |
{
"$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": [
"hmrc_manual"
]
},
"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": [
"hmrc_manual"
]
},
"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": {
"description": "The main content provided as HTML rendered from govspeak",
"type": "string"
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"type": "object",
"required": [
"child_section_groups"
],
"additionalProperties": false,
"properties": {
"body": {
"$ref": "#/definitions/body"
},
"change_notes": {
"$ref": "#/definitions/hmrc_manual_change_notes"
},
"child_section_groups": {
"$ref": "#/definitions/hmrc_manual_child_section_groups"
},
"organisations": {
"$ref": "#/definitions/manual_organisations"
},
"tags": {
"$ref": "#/definitions/tags"
}
}
},
"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
},
"hmrc_manual_change_notes": {
"description": "A history of changes to HMRC manuals and the associated section. section_id is included and required making it different to manual_change_notes",
"type": "array",
"items": {
"type": "object",
"required": [
"section_id",
"base_path",
"title",
"change_note",
"published_at"
],
"additionalProperties": false,
"properties": {
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"change_note": {
"type": "string"
},
"published_at": {
"type": "string",
"format": "date-time"
},
"section_id": {
"type": "string"
},
"title": {
"type": "string"
}
}
}
},
"hmrc_manual_child_section_groups": {
"description": "Grouped sections of an HMRC manual. Differs from manuals as section_id is required and group titles are optional.",
"type": "array",
"items": {
"type": "object",
"required": [
"child_sections"
],
"additionalProperties": false,
"properties": {
"child_sections": {
"type": "array",
"items": {
"type": "object",
"required": [
"section_id",
"title",
"description",
"base_path"
],
"additionalProperties": false,
"properties": {
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"description": {
"type": "string"
},
"section_id": {
"type": "string"
},
"title": {
"type": "string"
}
}
}
},
"title": {
"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"
]
},
"manual_organisations": {
"description": "A manual\u2019s organisations. TODO: Switch to use organisations in links",
"type": "array",
"items": {
"type": "object",
"required": [
"title",
"abbreviation",
"web_url"
],
"additionalProperties": false,
"properties": {
"abbreviation": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"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
},
"tags": {
"description": "Field used by email-alert-api to trigger email alerts for subscriptions to topics (gov.uk/topic) and policies (gov.uk/policies).",
"type": "object",
"additionalProperties": false,
"properties": {
"additional_topics": {
"type": "array",
"items": {
"type": "string"
}
},
"browse_pages": {
"type": "array",
"items": {
"type": "string"
}
},
"policies": {
"type": "array",
"items": {
"type": "string"
}
},
"primary_topic": {
"type": "array",
"items": {
"type": "string"
}
},
"topics": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"title": {
"type": "string"
},
"update_type": {
"enum": [
"major",
"minor",
"republish"
]
}
}
} | o21258 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1_VolumeError": {
"description": "VolumeError captures an error encountered during a volume operation.",
"properties": {
"message": {
"description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time the error was encountered."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_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": "VolumeAttachmentStatus is the status of a VolumeAttachment request.",
"properties": {
"attachError": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1_VolumeError",
"description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher."
},
"attached": {
"description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.",
"type": [
"boolean",
"null"
]
},
"attachmentMetadata": {
"additionalProperties": {
"type": [
"string",
"null"
]
},
"description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.",
"type": [
"object",
"null"
]
},
"detachError": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1_VolumeError",
"description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher."
}
},
"required": [
"attached"
],
"type": "object"
} | kb_1121_Normalized |
{
"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",
"length",
"width",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The shape (e.g. circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_e9b52ceb |
{
"$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_html_and_govspeak": {
"anyOf": [
{
"type": "string"
}
],
"description": "The main content provided as HTML with the govspeak markdown it's rendered from"
},
"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": {
"change_history": {
"$ref": "#/definitions/change_history"
},
"external_related_links": {
"$ref": "#/definitions/external_related_links"
},
"introduction": {
"$ref": "#/definitions/body_html_and_govspeak"
},
"more_information": {
"$ref": "#/definitions/body_html_and_govspeak"
},
"need_to_know": {
"$ref": "#/definitions/body_html_and_govspeak"
},
"place_type": {
"type": "string"
}
},
"type": "object"
},
"external_link": {
"additionalProperties": false,
"properties": {
"title": {
"type": "string"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"required": [
"title",
"url"
],
"type": "object"
},
"external_related_links": {
"items": {
"$ref": "#/definitions/external_link"
},
"type": "array"
},
"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"
},
"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"
},
"public_updated_at": {
"_format": "date-time",
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"publishing_app_name": {
"description": "The application that published this item.",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
],
"type": "string"
},
"publishing_request_id": {
"description": "A unique identifier used to track publishing requests to rendered content",
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"publishing_scheduled_at": {
"_format": "date-time",
"description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.",
"type": "string"
},
"rendering_app": {
"description": "The application that renders this item.",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
],
"type": "string"
},
"scheduled_publishing_delay_seconds": {
"description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.",
"type": "integer"
},
"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": [
"place"
],
"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"
},
"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": [
"place"
],
"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"
} | o21319 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base length of the shape",
"type": "number"
},
"height": {
"description": "The height of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
}
},
"required": [
"base",
"height",
"radius"
],
"type": "object"
},
"shape": {
"description": "The shape to calculate the area of",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_8cdcc04b |
{
"properties": {
"end_latitude": {
"description": "The latitude of the end point",
"type": "number"
},
"end_longitude": {
"description": "The longitude of the end point",
"type": "number"
},
"start_latitude": {
"description": "The latitude of the starting point",
"type": "number"
},
"start_longitude": {
"description": "The longitude of the starting point",
"type": "number"
}
},
"required": [
"start_latitude",
"start_longitude",
"end_latitude",
"end_longitude"
],
"type": "object"
} | calculate_distance_b54305d2 |
{
"additionalProperties": false,
"properties": {
"dependency_type": {
"default": "jsonpath_ready",
"enum": [
"jsonpath_ready"
],
"title": "Dependency Type",
"type": "string"
},
"expressions": {
"items": {
"type": "string"
},
"title": "Expressions",
"type": "array"
}
},
"title": "JSONPath ready predicate",
"type": "object"
} | o46217 |
{
"description": "A reference to an ordered UNI. The UNI is referenced on an Order by customer order number (PON), and order item reference.",
"properties": {
"buyerPurchaseOrderNumber": {
"description": "The purchase order number for the order that contains the referenced UNI. This is required if the ordered UNI is not on the same order as the orderedUniReference.",
"maxLength": 16,
"type": "string"
},
"objectType": {
"description": "The type of the object, orderedUniReference.",
"enum": [
"orderedUniReference"
],
"type": "string"
},
"orderId": {
"description": "An unique identifier for an order.",
"maxLength": 45,
"type": "string"
},
"orderItemReference": {
"description": "The order item reference for the UNI on the referenced order, or on the current order if a buyerPurchaseOrderNumber is not provided.",
"maxLength": 4,
"type": "string"
}
},
"required": [
"objectType",
"orderItemReference"
],
"title": "orderedUniReference",
"type": "object"
} | o28206 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_RoleRef": {
"description": "RoleRef contains information that points to the role being used",
"properties": {
"apiGroup": {
"description": "APIGroup is the group for the resource being referenced",
"type": "string"
},
"kind": {
"description": "Kind is the type of resource being referenced",
"type": "string"
},
"name": {
"description": "Name is the name of resource being referenced",
"type": "string"
}
},
"required": [
"apiGroup",
"kind",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_Subject": {
"description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.",
"properties": {
"apiGroup": {
"description": "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.",
"type": "string"
},
"kind": {
"description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.",
"type": "string"
},
"name": {
"description": "Name of the object being referenced.",
"type": "string"
},
"namespace": {
"description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.",
"type": "string"
}
},
"required": [
"kind",
"name"
],
"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": "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBinding, and will no longer be served in v1.20.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": [
"string",
"null"
]
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"RoleBinding"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata."
},
"roleRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_RoleRef",
"description": "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error."
},
"subjects": {
"description": "Subjects holds references to the objects the role applies to.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_Subject"
},
"type": [
"array",
"null"
]
}
},
"required": [
"roleRef"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "rbac.authorization.k8s.io",
"kind": "RoleBinding",
"version": "v1beta1"
}
]
} | kb_857_Normalized |
{
"type": "array",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "",
"minItems": 1,
"_uniqueItems": true,
"items": {
"type": "object",
"required": [
"name",
"description",
"isRanked",
"gameMode",
"isActive",
"id",
"contentId"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string",
"minLength": 1
},
"isRanked": {
"type": "boolean"
},
"imageUrl": {},
"gameMode": {
"type": "string",
"minLength": 1
},
"isActive": {
"type": "boolean"
},
"id": {
"type": "string",
"minLength": 1
},
"contentId": {
"type": "string",
"minLength": 1
}
}
}
} | o4262 |
{
"$defs": {
"CollectionVersionConstraintModel": {
"additionalProperties": false,
"title": "CollectionVersionConstraintModel",
"type": "string"
},
"SPDXLicense": {
"$ref": "#/$defs/SPDXLicenseEnum",
"title": "SPDXLicense"
},
"SPDXLicenseEnum": {
"description": "An enumeration.",
"enum": [
"0BSD",
"AAL",
"ADSL",
"AFL-1.1",
"AFL-1.2",
"AFL-2.0",
"AFL-2.1",
"AFL-3.0",
"AGPL-1.0-only",
"AGPL-1.0-or-later",
"AGPL-3.0-only",
"AGPL-3.0-or-later",
"AMDPLPA",
"AML",
"AMPAS",
"ANTLR-PD",
"ANTLR-PD-fallback",
"APAFML",
"APL-1.0",
"APSL-1.0",
"APSL-1.1",
"APSL-1.2",
"APSL-2.0",
"Abstyles",
"AdaCore-doc",
"Adobe-2006",
"Adobe-Glyph",
"Afmparse",
"Aladdin",
"Apache-1.0",
"Apache-1.1",
"Apache-2.0",
"App-s2p",
"Arphic-1999",
"Artistic-1.0",
"Artistic-1.0-Perl",
"Artistic-1.0-cl8",
"Artistic-2.0",
"BSD-1-Clause",
"BSD-2-Clause",
"BSD-2-Clause-Patent",
"BSD-2-Clause-Views",
"BSD-3-Clause",
"BSD-3-Clause-Attribution",
"BSD-3-Clause-Clear",
"BSD-3-Clause-LBNL",
"BSD-3-Clause-Modification",
"BSD-3-Clause-No-Military-License",
"BSD-3-Clause-No-Nuclear-License",
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause-No-Nuclear-Warranty",
"BSD-3-Clause-Open-MPI",
"BSD-4-Clause",
"BSD-4-Clause-Shortened",
"BSD-4-Clause-UC",
"BSD-4.3RENO",
"BSD-4.3TAHOE",
"BSD-Advertising-Acknowledgement",
"BSD-Attribution-HPND-disclaimer",
"BSD-Protection",
"BSD-Source-Code",
"BSL-1.0",
"BUSL-1.1",
"Baekmuk",
"Bahyph",
"Barr",
"Beerware",
"BitTorrent-1.0",
"BitTorrent-1.1",
"Bitstream-Charter",
"Bitstream-Vera",
"BlueOak-1.0.0",
"Borceux",
"Brian-Gladman-3-Clause",
"C-UDA-1.0",
"CAL-1.0",
"CAL-1.0-Combined-Work-Exception",
"CATOSL-1.1",
"CC-BY-1.0",
"CC-BY-2.0",
"CC-BY-2.5",
"CC-BY-2.5-AU",
"CC-BY-3.0",
"CC-BY-3.0-AT",
"CC-BY-3.0-DE",
"CC-BY-3.0-IGO",
"CC-BY-3.0-NL",
"CC-BY-3.0-US",
"CC-BY-4.0",
"CC-BY-NC-1.0",
"CC-BY-NC-2.0",
"CC-BY-NC-2.5",
"CC-BY-NC-3.0",
"CC-BY-NC-3.0-DE",
"CC-BY-NC-4.0",
"CC-BY-NC-ND-1.0",
"CC-BY-NC-ND-2.0",
"CC-BY-NC-ND-2.5",
"CC-BY-NC-ND-3.0",
"CC-BY-NC-ND-3.0-DE",
"CC-BY-NC-ND-3.0-IGO",
"CC-BY-NC-ND-4.0",
"CC-BY-NC-SA-1.0",
"CC-BY-NC-SA-2.0",
"CC-BY-NC-SA-2.0-DE",
"CC-BY-NC-SA-2.0-FR",
"CC-BY-NC-SA-2.0-UK",
"CC-BY-NC-SA-2.5",
"CC-BY-NC-SA-3.0",
"CC-BY-NC-SA-3.0-DE",
"CC-BY-NC-SA-3.0-IGO",
"CC-BY-NC-SA-4.0",
"CC-BY-ND-1.0",
"CC-BY-ND-2.0",
"CC-BY-ND-2.5",
"CC-BY-ND-3.0",
"CC-BY-ND-3.0-DE",
"CC-BY-ND-4.0",
"CC-BY-SA-1.0",
"CC-BY-SA-2.0",
"CC-BY-SA-2.0-UK",
"CC-BY-SA-2.1-JP",
"CC-BY-SA-2.5",
"CC-BY-SA-3.0",
"CC-BY-SA-3.0-AT",
"CC-BY-SA-3.0-DE",
"CC-BY-SA-4.0",
"CC-PDDC",
"CC0-1.0",
"CDDL-1.0",
"CDDL-1.1",
"CDL-1.0",
"CDLA-Permissive-1.0",
"CDLA-Permissive-2.0",
"CDLA-Sharing-1.0",
"CECILL-1.0",
"CECILL-1.1",
"CECILL-2.0",
"CECILL-2.1",
"CECILL-B",
"CECILL-C",
"CERN-OHL-1.1",
"CERN-OHL-1.2",
"CERN-OHL-P-2.0",
"CERN-OHL-S-2.0",
"CERN-OHL-W-2.0",
"CFITSIO",
"CMU-Mach",
"CNRI-Jython",
"CNRI-Python",
"CNRI-Python-GPL-Compatible",
"COIL-1.0",
"CPAL-1.0",
"CPL-1.0",
"CPOL-1.02",
"CUA-OPL-1.0",
"Caldera",
"ClArtistic",
"Clips",
"Community-Spec-1.0",
"Condor-1.1",
"Cornell-Lossless-JPEG",
"Crossword",
"CrystalStacker",
"Cube",
"D-FSL-1.0",
"DL-DE-BY-2.0",
"DOC",
"DRL-1.0",
"DSDP",
"Dotseqn",
"ECL-1.0",
"ECL-2.0",
"EFL-1.0",
"EFL-2.0",
"EPICS",
"EPL-1.0",
"EPL-2.0",
"EUDatagrid",
"EUPL-1.0",
"EUPL-1.1",
"EUPL-1.2",
"Elastic-2.0",
"Entessa",
"ErlPL-1.1",
"Eurosym",
"FDK-AAC",
"FSFAP",
"FSFUL",
"FSFULLR",
"FSFULLRWD",
"FTL",
"Fair",
"Frameworx-1.0",
"FreeBSD-DOC",
"FreeImage",
"GD",
"GFDL-1.1-invariants-only",
"GFDL-1.1-invariants-or-later",
"GFDL-1.1-no-invariants-only",
"GFDL-1.1-no-invariants-or-later",
"GFDL-1.1-only",
"GFDL-1.1-or-later",
"GFDL-1.2-invariants-only",
"GFDL-1.2-invariants-or-later",
"GFDL-1.2-no-invariants-only",
"GFDL-1.2-no-invariants-or-later",
"GFDL-1.2-only",
"GFDL-1.2-or-later",
"GFDL-1.3-invariants-only",
"GFDL-1.3-invariants-or-later",
"GFDL-1.3-no-invariants-only",
"GFDL-1.3-no-invariants-or-later",
"GFDL-1.3-only",
"GFDL-1.3-or-later",
"GL2PS",
"GLWTPL",
"GPL-1.0-only",
"GPL-1.0-or-later",
"GPL-2.0-only",
"GPL-2.0-or-later",
"GPL-3.0-only",
"GPL-3.0-or-later",
"Giftware",
"Glide",
"Glulxe",
"Graphics-Gems",
"HP-1986",
"HPND",
"HPND-Markus-Kuhn",
"HPND-export-US",
"HPND-sell-variant",
"HPND-sell-variant-MIT-disclaimer",
"HTMLTIDY",
"HaskellReport",
"Hippocratic-2.1",
"IBM-pibs",
"ICU",
"IEC-Code-Components-EULA",
"IJG",
"IJG-short",
"IPA",
"IPL-1.0",
"ISC",
"ImageMagick",
"Imlib2",
"Info-ZIP",
"Intel",
"Intel-ACPI",
"Interbase-1.0",
"JPL-image",
"JPNIC",
"JSON",
"Jam",
"JasPer-2.0",
"Kazlib",
"Knuth-CTAN",
"LAL-1.2",
"LAL-1.3",
"LGPL-2.0-only",
"LGPL-2.0-or-later",
"LGPL-2.1-only",
"LGPL-2.1-or-later",
"LGPL-3.0-only",
"LGPL-3.0-or-later",
"LGPLLR",
"LOOP",
"LPL-1.0",
"LPL-1.02",
"LPPL-1.0",
"LPPL-1.1",
"LPPL-1.2",
"LPPL-1.3a",
"LPPL-1.3c",
"LZMA-SDK-9.11-to-9.20",
"LZMA-SDK-9.22",
"Latex2e",
"Leptonica",
"LiLiQ-P-1.1",
"LiLiQ-R-1.1",
"LiLiQ-Rplus-1.1",
"Libpng",
"Linux-OpenIB",
"Linux-man-pages-copyleft",
"MIT",
"MIT-0",
"MIT-CMU",
"MIT-Modern-Variant",
"MIT-Wu",
"MIT-advertising",
"MIT-enna",
"MIT-feh",
"MIT-open-group",
"MITNFA",
"MPL-1.0",
"MPL-1.1",
"MPL-2.0",
"MPL-2.0-no-copyleft-exception",
"MS-LPL",
"MS-PL",
"MS-RL",
"MTLL",
"MakeIndex",
"Martin-Birgmeier",
"Minpack",
"MirOS",
"Motosoto",
"MulanPSL-1.0",
"MulanPSL-2.0",
"Multics",
"Mup",
"NAIST-2003",
"NASA-1.3",
"NBPL-1.0",
"NCGL-UK-2.0",
"NCSA",
"NGPL",
"NICTA-1.0",
"NIST-PD",
"NIST-PD-fallback",
"NLOD-1.0",
"NLOD-2.0",
"NLPL",
"NOSL",
"NPL-1.0",
"NPL-1.1",
"NPOSL-3.0",
"NRL",
"NTP",
"NTP-0",
"Naumen",
"Net-SNMP",
"NetCDF",
"Newsletr",
"Nokia",
"Noweb",
"O-UDA-1.0",
"OCCT-PL",
"OCLC-2.0",
"ODC-By-1.0",
"ODbL-1.0",
"OFFIS",
"OFL-1.0",
"OFL-1.0-RFN",
"OFL-1.0-no-RFN",
"OFL-1.1",
"OFL-1.1-RFN",
"OFL-1.1-no-RFN",
"OGC-1.0",
"OGDL-Taiwan-1.0",
"OGL-Canada-2.0",
"OGL-UK-1.0",
"OGL-UK-2.0",
"OGL-UK-3.0",
"OGTSL",
"OLDAP-1.1",
"OLDAP-1.2",
"OLDAP-1.3",
"OLDAP-1.4",
"OLDAP-2.0",
"OLDAP-2.0.1",
"OLDAP-2.1",
"OLDAP-2.2",
"OLDAP-2.2.1",
"OLDAP-2.2.2",
"OLDAP-2.3",
"OLDAP-2.4",
"OLDAP-2.5",
"OLDAP-2.6",
"OLDAP-2.7",
"OLDAP-2.8",
"OML",
"OPL-1.0",
"OPUBL-1.0",
"OSET-PL-2.1",
"OSL-1.0",
"OSL-1.1",
"OSL-2.0",
"OSL-2.1",
"OSL-3.0",
"OpenPBS-2.3",
"OpenSSL",
"PDDL-1.0",
"PHP-3.0",
"PHP-3.01",
"PSF-2.0",
"Parity-6.0.0",
"Parity-7.0.0",
"Plexus",
"PolyForm-Noncommercial-1.0.0",
"PolyForm-Small-Business-1.0.0",
"PostgreSQL",
"Python-2.0",
"Python-2.0.1",
"QPL-1.0",
"QPL-1.0-INRIA-2004",
"Qhull",
"RHeCos-1.1",
"RPL-1.1",
"RPL-1.5",
"RPSL-1.0",
"RSA-MD",
"RSCPL",
"Rdisc",
"Ruby",
"SAX-PD",
"SCEA",
"SGI-B-1.0",
"SGI-B-1.1",
"SGI-B-2.0",
"SHL-0.5",
"SHL-0.51",
"SISSL",
"SISSL-1.2",
"SMLNJ",
"SMPPL",
"SNIA",
"SPL-1.0",
"SSH-OpenSSH",
"SSH-short",
"SSPL-1.0",
"SWL",
"Saxpath",
"SchemeReport",
"Sendmail",
"Sendmail-8.23",
"SimPL-2.0",
"Sleepycat",
"Spencer-86",
"Spencer-94",
"Spencer-99",
"SugarCRM-1.1.3",
"SunPro",
"Symlinks",
"TAPR-OHL-1.0",
"TCL",
"TCP-wrappers",
"TMate",
"TORQUE-1.1",
"TOSL",
"TPDL",
"TPL-1.0",
"TTWL",
"TU-Berlin-1.0",
"TU-Berlin-2.0",
"UCAR",
"UCL-1.0",
"UPL-1.0",
"Unicode-DFS-2015",
"Unicode-DFS-2016",
"Unicode-TOU",
"Unlicense",
"VOSTROM",
"VSL-1.0",
"Vim",
"W3C",
"W3C-19980720",
"W3C-20150513",
"WTFPL",
"Watcom-1.0",
"Wsuipa",
"X11",
"X11-distribute-modifications-variant",
"XFree86-1.1",
"XSkat",
"Xerox",
"Xnet",
"YPL-1.0",
"YPL-1.1",
"ZPL-1.1",
"ZPL-2.0",
"ZPL-2.1",
"Zed",
"Zend-2.0",
"Zimbra-1.3",
"Zimbra-1.4",
"Zlib",
"blessing",
"bzip2-1.0.6",
"checkmk",
"copyleft-next-0.3.0",
"copyleft-next-0.3.1",
"curl",
"diffmark",
"dvipdfm",
"eGenix",
"etalab-2.0",
"gSOAP-1.3b",
"gnuplot",
"iMatix",
"libpng-2.0",
"libselinux-1.0",
"libtiff",
"libutil-David-Nugent",
"mpi-permissive",
"mpich2",
"mplus",
"psfrag",
"psutils",
"snprintf",
"w3m",
"xinetd",
"xlock",
"xpp",
"zlib-acknowledgement"
],
"title": "SPDXLicenseEnum"
}
},
"$id": "https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/galaxy.json",
"$schema": "http://json-schema.org/draft-07/schema",
"additionalProperties": false,
"examples": ["galaxy.yml"],
"properties": {
"authors": {
"items": {
"type": "string"
},
"title": "Authors",
"type": "array"
},
"build_ignore": {
"items": {
"type": "string"
},
"title": "Build Ignore",
"type": "array"
},
"dependencies": {
"additionalProperties": {
"$ref": "#/$defs/CollectionVersionConstraintModel"
},
"title": "Dependencies",
"type": "object"
},
"description": {
"title": "Description",
"type": "string"
},
"documentation": {
"title": "Documentation",
"type": "string"
},
"homepage": {
"title": "Homepage",
"type": "string"
},
"issues": {
"title": "Issues",
"type": "string"
},
"license": {
"items": {
"$ref": "#/$defs/SPDXLicense"
},
"title": "License",
"type": "array"
},
"license_file": {
"title": "License File",
"type": "string"
},
"manifest": {
"additionalProperties": false,
"markdownDescription": "A dict controlling use of manifest directives used in building the collection artifact.\nThe key directives is a list of MANIFEST.in style directives\nThe key omit_default_directives is a boolean that controls whether the default directives are used.\nMutually exclusive with build_ignore.",
"properties": {
"directives": {
"items": {
"type": "string"
},
"title": "Directives",
"type": "array"
},
"omit_default_directives": {
"title": "Omit Default Directives",
"type": "boolean"
}
},
"title": "Manifest",
"type": "object"
},
"name": {
"minLength": 2,
"pattern": "^[a-z][a-z0-9_]+$",
"title": "Name",
"type": "string"
},
"namespace": {
"minLength": 2,
"pattern": "^[a-z][a-z0-9_]+$",
"title": "Namespace",
"type": "string"
},
"readme": {
"markdownDescription": "The path to the Markdown (.md) readme file. This path is relative to the root of the collection.\nSee [metadata structure](https://docs.ansible.com/ansible/latest/dev_guide/collections_galaxy_meta.html)",
"title": "Readme",
"type": "string"
},
"repository": {
"title": "Repository",
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"title": "Tags",
"type": "array"
},
"version": {
"markdownDescription": "Version must use [SemVer](https://semver.org/) format, which is more restrictive than [PEP-440](https://peps.python.org/pep-0440/). For example `1.0.0-rc1` is valid but `1.0.0rc` is not.",
"minLength": 5,
"pattern": "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$",
"title": "Version",
"type": "string"
}
},
"required": [
"namespace",
"name",
"version",
"readme",
"authors",
"description",
"repository"
],
"title": "Ansible galaxy.yml Schema",
"type": "object"
}
| galaxy |
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "http://labcompass.futurecode.com/room-presets.schema.json",
"type": "array",
"items": {
"type": "object",
"required": [
"roomName",
"goldenDoor",
"variants"
],
"properties": {
"roomName": {
"type": "string"
},
"goldenDoor": {
"type": "boolean"
},
"variants": {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"required": [
"areaCode",
"contentLocations",
"doorLocations",
"minimap"
],
"properties": {
"areaCode": {
"type": "string"
},
"contentLocations": {
"type": "object",
"oneOf": [
{
"additionalProperties": false,
"required": [
"major",
"minor"
],
"properties": {
"major": {
"$ref": "#/definitions/directionList"
},
"minor": {
"$ref": "#/definitions/directionList"
}
}
},
{
"additionalProperties": false,
"required": [
"generic"
],
"properties": {
"generic": {
"$ref": "#/definitions/directionList"
}
}
}
]
},
"doorLocations": {
"$ref": "#/definitions/directionList"
},
"minimap": {
"type": "object",
"required": [
"rows",
"columns",
"directions"
],
"properties": {
"rows": {
"type": "integer"
},
"columns": {
"type": "integer"
},
"directions": {
"type": "object",
"propertyNames": {
"$ref": "#/definitions/direction"
},
"additionalProperties": {
"type": "array",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "integer"
}
}
}
}
}
}
}
}
}
},
"definitions": {
"direction": {
"enum": [
"N",
"NE",
"E",
"SE",
"S",
"SW",
"W",
"NW"
]
},
"directionList": {
"type": "array",
"items": {
"$ref": "#/definitions/direction"
}
}
}
} | o90905 |
{
"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 or triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"radius",
"length"
],
"type": "object"
},
"shape": {
"description": "The type of shape (e.g. circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_c6ab836b |
{
"description": "NodeAddress contains information for the node's address.",
"properties": {
"address": {
"description": "The node address.",
"type": [
"string",
"null"
]
},
"type": {
"description": "Node address type, one of Hostname, ExternalIP or InternalIP.",
"type": [
"string",
"null"
]
}
},
"required": [
"type",
"address"
],
"type": "object"
} | kb_608_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Configuration settings for confgen",
"type": "object",
"properties": {
"templates": {
"title": "The path to the directory containing all templates",
"description": "Can be an absolute or relative path that will be resolved relative to this definition (i.e. not necessarily the $PWD)",
"type": "string"
}
},
"required": [
"templates"
]
} | o32735 |
{
"title": "Invocation manifest for FSL: SIENAX - Brain tissue volume, normalised for subject head size",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"config": {
"type": "object",
"properties": {
"BET": {
"default": "",
"id": "-B",
"type": "string"
},
"BOTTOM": {
"default": "",
"id": "-b",
"type": "string"
},
"DEBUG": {
"default": false,
"id": "-d",
"type": "boolean"
},
"SEG": {
"default": false,
"id": "-2",
"type": "boolean"
},
"S_FAST": {
"default": "",
"id": "-S",
"type": "string"
},
"T2": {
"default": false,
"id": "-t2",
"type": "boolean"
},
"TOP": {
"default": "",
"id": "-t",
"type": "string"
},
"REGIONAL": {
"default": false,
"id": "-r",
"type": "boolean"
}
},
"required": [
"BET",
"BOTTOM",
"DEBUG",
"SEG",
"S_FAST",
"T2",
"TOP",
"REGIONAL"
]
},
"inputs": {
"type": "object",
"properties": {
"key": {
"type": "object"
},
"NIFTI": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
},
"lesion_mask": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
}
},
"required": [
"key",
"NIFTI"
]
}
},
"required": [
"config",
"inputs"
]
} | o41289 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_VolumeError": {
"description": "VolumeError captures an error encountered during a volume operation.",
"properties": {
"message": {
"description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time the error was encountered."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_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": "VolumeAttachmentStatus is the status of a VolumeAttachment request.",
"properties": {
"attachError": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_VolumeError",
"description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher."
},
"attached": {
"description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.",
"type": [
"boolean",
"null"
]
},
"attachmentMetadata": {
"additionalProperties": {
"type": [
"string",
"null"
]
},
"description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.",
"type": [
"object",
"null"
]
},
"detachError": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_VolumeError",
"description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher."
}
},
"required": [
"attached"
],
"type": "object"
} | kb_1123_Normalized |
{
"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": "DeploymentCondition describes the state of a deployment at a certain point.",
"properties": {
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Last time the condition transitioned from one status to another."
},
"lastUpdateTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "The last time this condition was updated."
},
"message": {
"description": "A human readable message indicating details about the transition.",
"type": [
"string",
"null"
]
},
"reason": {
"description": "The reason for the condition's last transition.",
"type": [
"string",
"null"
]
},
"status": {
"description": "Status of the condition, one of True, False, Unknown.",
"type": [
"string",
"null"
]
},
"type": {
"description": "Type of deployment condition.",
"type": [
"string",
"null"
]
}
},
"required": [
"type",
"status"
],
"type": "object"
} | kb_258_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"updated": {
"type": "number"
},
"failed": {
"type": "number"
},
"skipped": {
"type": "number"
},
"logLink": {
"type": "string"
}
}
} | o9850 |
{
"title": "Tlog message",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"ver": {
"description": "Message format version",
"type": "string",
"pattern": "^[0-9]+(\\.[0-9]+)?$"
},
"host": {
"description": "Name of the host recording was made on",
"type": "string"
},
"rec": {
"description": "ID of the recording on the host",
"type": "string"
},
"user": {
"description": "Recorded user name",
"type": "string"
},
"term": {
"description": "Terminal type name",
"type": "string"
},
"session": {
"description": "Audit session ID",
"type": "integer",
"minimum": 1
},
"id": {
"description": "ID of the message within the recording",
"type": "integer",
"minimum": 1
},
"pos": {
"description": "Message position in the recording, milliseconds",
"type": "integer",
"minimum": 0
},
"timing": {
"description": "Distribution of this message's events in time",
"type": "string"
},
"in_txt": {
"description": "Input text with invalid characters scrubbed",
"type": "string"
},
"in_bin": {
"description": "Scrubbed invalid input characters as bytes",
"type": "array",
"items": {
"type": "integer",
"minimum": 0,
"maximum": 255
}
},
"out_txt": {
"description": "Output text with invalid characters scrubbed",
"type": "string"
},
"out_bin": {
"description": "Scrubbed invalid output characters as bytes",
"type": "array",
"items": {
"type": "integer",
"minimum": 0,
"maximum": 255
}
}
},
"required": [
"ver",
"host",
"rec",
"user",
"term",
"session",
"id",
"pos",
"timing"
]
} | o77397 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://localhost:3000/schemas/post-client-response.json#",
"title": "Response returned after the client has been successfully created",
"type": "object",
"additionalProperties": false,
"required": [
"client_id",
"client_secret_expires_at"
],
"properties": {
"client_id": {
"type": "string",
"description": "REQUIRED. OAuth 2.0 client identifier. It SHOULD NOT be currently valid for any other registered client, though an Authorization Server MAY issue the same client identifier to multiple instances of a registered client, at its discretion."
},
"client_secret": {
"type": "string",
"description": "OPTIONAL. OAuth 2.0 client secret. If issued, this MUST be unique for each \"client_id\". This value is used by confidential clients to authenticate to the token endpoint as described in OAuth 2.0 [RFC6749] Section 2.3.1."
},
"client_id_issued_at": {
"type": "string",
"description": "OPTIONAL. Time at which the client identifier was issued. The time is represented as the number of seconds from 1970-01- 01T0:0:0Z as measured in UTC until the date/time."
},
"registration_access_token": {
"type": "string",
"description": "Registration Access Token that can be used at the Client Configuration Endpoint to perform subsequent operations upon the Client registration."
},
"registration_client_uri": {
"type": "string",
"description": "Location of the Client Configuration Endpoint where the Registration Access Token can be used to perform subsequent operations upon the resulting Client registration. Implementations MUST either return both a Client Configuration Endpoint and a Registration Access Token or neither of them."
},
"client_secret_expires_at": {
"type": "string",
"default": 0,
"description": "REQUIRED if \"client_secret\" is issued. Time at which the client secret will expire or 0 if it will not expire. The time is represented as the number of seconds from 1970-01-01T0:0:0Z as measured in UTC until the date/time."
},
"client_uri": {
"type": "string",
"description": "URL of a Web page providing information about the client. If present, the server SHOULD display this URL to the end user in a clickable fashion. It is RECOMMENDED that clients always send this field. The value of this field MUST point to a valid web page. The value of this field MAY be internationalized, as described in Section 2.2."
},
"grant_types": {
"type": "array",
"description": "Array of OAuth 2.0 grant types that the client may use",
"items": {
"type": "string",
"enum": [
"authorization_code",
"implicit",
"password",
"client_credentials",
"refresh_token",
"urn:ietf:params:oauth:grant-type:jwt-bearer",
"urn:ietf:params:oauth:grant-type:saml2-bearer"
]
}
},
"responses_types": {
"type": "array",
"enum": [
"code",
"token"
],
"description": "Array of the OAuth 2.0 response types that the client may use"
},
"client_name": {
"type": "string",
"description": "Human-readable name of the client to be presented to the user during authorization. If omitted, the authorization server MAY display the raw \"client_id\" value to the user instead. It is RECOMMENDED that clients always send this field. The value of this field MAY be internationalized, as described in Section 2.2."
},
"contacts": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of strings representing ways to contact people responsible for this client, typically email addresses. The authorization server MAY make these addresses available to end users for support requests for the client."
},
"logo_uri": {
"type": "string",
"description": "URL that references a logo for the client. If present, the server SHOULD display this image to the end user during approval. The value of this field MUST point to a valid image file. The value of this field MAY be internationalized, as described in Section 2.2."
},
"tos_uri": {
"type": "string",
"description": "URL that points to a human-readable Terms of Service document for the client. The Authorization Server SHOULD display this URL to the end-user if it is given. The Terms of Service usually describe a contractual relationship between the end-user and the client that the end-user accepts when authorizing the client. The value of this field MUST point to a valid web page. The value of this field MAY be internationalized, as described in Section 2.2."
},
"policy_uri": {
"type": "string",
"description": "URL that points to a human-readable Policy document for the client. The authorization server SHOULD display this URL to the end-user if it is given. The policy usually describes how an end-user's data will be used by the client. The value of this field MUST point to a valid web page. The value of this field MAY be internationalized, as described in Section 2.2."
},
"redirect_uris": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of redirect URIs for use in redirect-based flows such as the authorization code and implicit grant types. It is RECOMMENDED that clients using these flows register this parameter, and an authorization server SHOULD require registration of valid redirect URIs for all clients that use these grant types to protect against token and credential theft attacks."
},
"application_type": {
"type": "string",
"enum": [
"native",
"web"
]
},
"token_endpoint_auth_method": {
"type": "string",
"description": "The requested authentication method for the token endpoint",
"description_none": "The client is a public client as defined in OAuth 2.0 and does not have a client secret.",
"description_client_secret_post": "The client uses the HTTP POST parameters defined in OAuth 2.0",
"description_client_secret_basic": "the client uses HTTP Basic defined in OAuth 2.0",
"enum": [
"none",
"client_secret_post",
"client_secret_basic"
]
},
"scope": {
"type": "array",
"items": {
"type": "string"
},
"description": "Space separated list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749]) that the client can use when requesting access tokens. The semantics of values in this list is service specific. If omitted, an authorization server MAY register a client with a default set of scopes."
},
"jwks_uri": {
"type": "string",
"description": "URL of the client's JSON Web Key Set [JWK] document containing the client's public keys. The value of this field MUST point to a valid JWK Set document. These keys can be used by higher level protocols that use signing or encryption."
},
"jwks": {
"type": "string",
"description": "JSON Web Key Set [JWK] value containing the client's public keys. The value of this field MUST be a JSON object containing a valid JWK Set. These keys can be used by higher level protocols that use signing or encryption. This parameter is intended to be used by clients that cannot use the \"jwks_uri\" parameter. For instance, a native application might not have a location to host the contents of the JWK Set that would be reachable by the authorization server. The \"jwks_uri\" and \"jwks\" parameters MUST NOT be used together."
},
"software_id": {
"type": "string",
"description": "Identifier for the software that comprises a client. Unlike \"client_id\", which is issued by the authorization server and may vary between instances, the \"software_id\" is asserted by the client software and is intended to be shared among all instances of the client software. The identifier SHOULD NOT change when software version changes or when a new installation occurs."
},
"software_version": {
"type": "string",
"description": "Version identifier for the software that comprises a client. The value of this field is a string that is intended to be compared using string equality matching. The value of the \"software_version\" SHOULD change on any update to the client software."
}
}
} | o20464 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.