json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup": { "description": "APIGroup contains the name, the supported versions, and the preferred version of a group.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": "string" }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "APIGroup" ], "type": "string" }, "name": { "description": "name is the name of the group.", "type": "string" }, "preferredVersion": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_GroupVersionForDiscovery", "description": "preferredVersion is the version preferred by the API server, which probably is the storage version." }, "serverAddressByClientCIDRs": { "description": "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ServerAddressByClientCIDR" }, "type": "array" }, "versions": { "description": "versions are the versions supported in this group.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_GroupVersionForDiscovery" }, "type": "array" } }, "required": [ "name", "versions" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "APIGroup", "version": "v1" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_GroupVersionForDiscovery": { "description": "GroupVersion contains the \"group/version\" and \"version\" string of a version. It is made a struct to keep extensibility.", "properties": { "groupVersion": { "description": "groupVersion specifies the API group and version in the form \"group/version\"", "type": "string" }, "version": { "description": "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.", "type": "string" } }, "required": [ "groupVersion", "version" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ServerAddressByClientCIDR": { "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.", "properties": { "clientCIDR": { "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.", "type": "string" }, "serverAddress": { "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.", "type": "string" } }, "required": [ "clientCIDR", "serverAddress" ], "type": "object" } }, "description": "APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.", "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" ] }, "groups": { "description": "groups is a list of APIGroup.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup" }, "type": [ "array", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "APIGroupList" ], "type": [ "string", "null" ] } }, "required": [ "groups" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "APIGroupList", "version": "v1" } ] }
kb_19_Normalized
{ "title": "A Statamic Blueprint JSON Schema", "$id": "https://arroba-it.de/statamic.blueprint.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "oneOf": [ { "required": [ "tabs" ] }, { "required": [ "sections" ] } ], "properties": { "title": { "type": "string" }, "tabs": { "title": "The Tabs", "description": "At its most basic, a blueprint has tabs. A tab has a handle, a display name, and an array of sections. Since Statamic 4", "type": "object", "additionalProperties": false, "patternProperties": { "^[A-Za-z_]+?$": { "description": "The handle (name) of a section. This one is on you.", "type": "object", "properties": { "display": { "description": "The displayed text.", "type": "string" }, "sections": { "description": "The Sections of the Tab", "type": "array", "items": { "type": "object", "properties": { "display": { "description": "The displayed text.", "type": "string" }, "instructions": { "description": "Some instructions", "type": "string" }, "fields": { "$ref": "#/$defs/fields" } } }, "additionalItems": false } } } } }, "sections": { "title": "The Sections", "description": "At its most basic, a blueprint has sections. A section has a handle, a display name, and an array of fields. Until Statamic 3", "type": "object", "additionalProperties": false, "patternProperties": { "^[A-Za-z]+?$": { "description": "The handle (name) of a section. This one is on you.", "type": "object", "properties": { "display": { "description": "The displayed text.", "type": "string" }, "fields": { "$ref": "#/$defs/fields" } } } } } }, "$defs": { "fields": { "description": "Here you define the fields of this section.", "type": "array", "uniqueItems": true, "uniqueItemProperties": [ "handle" ], "items": { "type": "object", "properties": { "handle": { "type": "string", "description": "The field's template variable." }, "config": { "type": "object", "properties": { "display": { "type": "string" } } }, "import": { "type": "string" }, "prefix": { "type": "string" }, "field": { "description": "The definition of a single field.", "type": [ "object", "string" ], "anyOf": [ { "type": "string" }, { "$ref": "#/$defs/array" }, { "$ref": "#/$defs/assets" }, { "$ref": "#/$defs/bard" }, { "$ref": "#/$defs/button_group" }, { "$ref": "#/$defs/checkboxes" }, { "$ref": "#/$defs/code" }, { "$ref": "#/$defs/collections" }, { "$ref": "#/$defs/color" }, { "$ref": "#/$defs/date" }, { "$ref": "#/$defs/entries" }, { "$ref": "#/$defs/form" }, { "$ref": "#/$defs/grid" }, { "$ref": "#/$defs/hidden" }, { "$ref": "#/$defs/html" }, { "$ref": "#/$defs/integer" }, { "$ref": "#/$defs/link" }, { "$ref": "#/$defs/list" }, { "$ref": "#/$defs/markdown" }, { "$ref": "#/$defs/radio" }, { "$ref": "#/$defs/range" }, { "$ref": "#/$defs/replicator" }, { "$ref": "#/$defs/revealer" }, { "$ref": "#/$defs/section" }, { "$ref": "#/$defs/select" }, { "$ref": "#/$defs/sites" }, { "$ref": "#/$defs/slug" }, { "$ref": "#/$defs/structures" }, { "$ref": "#/$defs/table" }, { "$ref": "#/$defs/taxonomies" }, { "$ref": "#/$defs/taggable" }, { "$ref": "#/$defs/template" }, { "$ref": "#/$defs/terms" }, { "$ref": "#/$defs/text" }, { "$ref": "#/$defs/textarea" }, { "$ref": "#/$defs/time" }, { "$ref": "#/$defs/toggle" }, { "$ref": "#/$defs/user_groups" }, { "$ref": "#/$defs/user_roles" }, { "$ref": "#/$defs/users" }, { "$ref": "#/$defs/video" }, { "$ref": "#/$defs/yaml" } ], "required": [ "type" ] } }, "dependentRequired": { "field": [ "handle" ] } } }, "array": { "description": "This fieldtype is used to manage key: value array data in the right situation.", "type": "object", "properties": { "display": { "$ref": "#/$defs/display" }, "icon": { "$ref": "#/$defs/icon" }, "instructions": { "$ref": "#/$defs/instructions" }, "instructions_position": { "$ref": "#/$defs/instructions_position" }, "listable": { "$ref": "#/$defs/listable" }, "required": { "$ref": "#/$defs/required" }, "localizable": { "$ref": "#/$defs/localizable" }, "validate": { "$ref": "#/$defs/validate" }, "type": { "const": "array" }, "mode": { "type": "string", "enum": [ "dynamic", "keyed" ] }, "keys": { "type": [ "object", "array" ] }, "value_header": { "type": "string" }, "key_header": { "type": "string" } }, "additionalProperties": true }, "assets": { "description": "The assets fieldtype is used to manage and relate files with your entries.", "type": "object", "properties": { "type": { "const": "assets" }, "mode": { "type": "string", "enum": [ "grid", "list" ], "default": "list" }, "container": { "type": "string" }, "folder": { "type": "string" }, "restrict": { "type": "boolean", "default": false }, "allow_uploads": { "type": "boolean", "default": true }, "show_filename": { "type": "boolean", "default": true }, "max_files": { "type": "integer" } }, "additionalProperties": true }, "bard": { "description": "Bard is our recommended fieldtype for creating long form content from the control panel.", "type": "object", "properties": { "type": { "const": "bard" }, "always_show_set_button": { "description": "Enable to always show the \"Add Set\" button.", "type": "boolean", "default": false }, "sets": { "description": "Sets are configurable blocks of fields that can be inserted anywhere in your Bard content.", "type": "object" }, "buttons": { "description": "Choose which buttons to show in the toolbar.", "type": "array", "items": { "type": "string", "uniqueItems": true, "enum": [ "h2", "h3", "bold", "italic", "unorderedlist", "orderedlist", "removeformat", "quote", "anchor", "image", "table" ] } }, "container": { "description": "Choose which asset container to use for this field.", "type": "string" }, "save_html": { "description": "Save HTML instead of structured data. This simplifies but limits control of your template markup.", "type": "boolean", "default": false }, "toolbar_mode": { "description": "Choose which style of toolbar you prefer.", "type": "string", "enum": [ "fixed", "floating" ], "default": "fixed" }, "link_noopener": { "description": "Set rel=\"noopener\" on all links.", "type": "boolean", "default": false }, "link_noreferrer": { "description": "Set rel=\"noreferrer\" on all links.", "type": "boolean", "default": false }, "target_blank": { "description": "Set target=\"_blank\" on all links.", "type": "boolean", "default": false }, "link_collections": { "description": "Entries from these collections will be available in the link selector. Leaving this empty will make all entries available.", "type": "array", "items": { "type": "string" } }, "reading_time": { "description": "Show estimated reading time at the bottom of the field.", "type": "boolean", "default": false }, "fullscreen": { "description": "Enable to toggle into fullscreen mode.", "type": "boolean", "default": true }, "allow_source": { "description": "Allow Source Mode", "type": "boolean", "default": true }, "enable_input_rules": { "description": "Enable Input Rules", "type": "boolean", "default": true }, "enable_paste_rules": { "description": "Enables Markdown-style shortcuts when typing content.", "type": "boolean", "default": true }, "display": { "$ref": "#/$defs/display" }, "instructions": { "$ref": "#/$defs/instructions" }, "instructions_position": { "$ref": "#/$defs/instructions_position" }, "listable": { "$ref": "#/$defs/listable" }, "required": { "$ref": "#/$defs/required" }, "localizable": { "$ref": "#/$defs/localizable" }, "validate": { "$ref": "#/$defs/validate" } }, "additionalProperties": true }, "button_group": { "description": "The button group fieldtype is a multiple choice input where you only get one choice.", "type": "object", "properties": { "type": { "const": "button_group" }, "options": { "description": "Set the array keys and their optional labels.", "type": [ "object", "array" ] }, "default": { "description": "Set the default value.", "type": "string" } }, "additionalProperties": true }, "checkboxes": { "description": "The checkboxes fieldtype is a multiple choice input.", "type": "object", "properties": { "type": { "const": "checkboxes" }, "inline": { "type": "boolean", "default": "false" }, "options": { "type": [ "object", "array" ] }, "default": { "type": "string" } }, "additionalProperties": true }, "code": { "description": "If your content involves code snippets, this is the fieldtype for you.", "type": "object", "properties": { "type": { "const": "code" }, "theme": { "description": "Choose your preferred theme.", "type": "string", "enum": [ "light", "material" ] }, "mode": { "description": "Choose language for syntax highlighting.", "type": "string", "enum": [ "clike", "css", "diff", "go", "haml", "handlebars", "htmlmixed", "less", "markdown", "gfm", "nginx", "text/x-java", "javascript", "jsx", "text/x-objectivec", "php", "python", "ruby", "scss", "shell", "sql", "twig", "vue", "xml", "yaml-frontmatter" ] }, "indent_type": { "description": "Set your preferred type of indentation.", "type": "string", "enum": [ "tabs", "spaces" ] }, "indent_size": { "description": "Set your preferred indentation size (in spaces).", "type": "integer", "default": 4 }, "key_map": { "description": "Choose preferred set of keyboard shortcuts.", "type": "string", "default": "default", "enum": [ "default", "sublime", "vim" ] }, "line_numbers": { "description": "Show Line Numbers", "type": "boolean", "default": true }, "line_wrapping": { "description": "Enable Line Wrapping", "type": "boolean", "default": true } }, "additionalProperties": true }, "collections": { "description": "This fieldtype is used to view and select from a list of Collections.", "type": "object", "properties": { "type": { "const": "collections" }, "max_items": { "description": "Set a maximum number of selectable items.", "type": "integer" }, "mode": { "description": "Choose your preferred UI style.", "$ref": "#/$defs/userSelectModes" } }, "additionalProperties": true }, "color": { "description": "This fieldtype is a highly configurable color picker with simple and advanced UI modes, support for alpha channel, rgba, hsla, hsva, and more.", "type": "object", "properties": { "type": { "const": "color" }, "swatches": { "description": "Pre-define colors that can be selected from a list. Supports all color mode formats.", "type": "array", "uniqueItems": true }, "theme": { "description": "Choose between a classic and a simpler nano (mini) theme. Default: classic.", "type": "string", "enum": [ "classic", "nano" ] }, "lock_opacity": { "description": "Disables the alpha slider, preventing adjustments to opacity.", "type": "boolean", "default": false }, "default_color_mode": { "description": "Set which color mode you wish to be the default. Default: hex.", "type": "string", "default": "HEXA", "enum": [ "HEXA", "RGBA", "HSLA", "HSVA", "CMYK" ] }, "color_modes": { "description": "Choose which color modes you want to enable in the UI. Available choices: hex, rgba, hsla, hsva, and cmyk. Default: hex.", "type": "array", "uniqueItems": true, "default": "hex", "items": { "type": "string", "enum": [ "hex", "rgba", "hsla", "hsva", "cmyk" ] } } }, "additionalProperties": true }, "date": { "description": "Work with dates, times, and ranges with a variety of user interface options that make you really enjoy basically just picking numbers from a table.", "type": "object", "properties": { "columns": { "type": "integer", "description": "Show multiple months at one time, in columns and rows. Default: 1.", "minimum": 1, "default": 1 }, "earliest_date": { "oneOf": [ { "format": "date" }, { "format": "date-time" } ], "type": "string", "default": "1900-01-01", "description": "Set the earliest selectable date in YYYY-MM-DD format." }, "format": { "type": "string", "description": "How the date should be stored, using the PHP date format. Default: 'Y-m-d' or 'Y-m-d H:m'", "default": "'Y-m-d'" }, "full_width": { "type": "boolean", "description": "Enable to stretch the calendar out like Stretch Armstrong, using the maximum amount of available horizontal space. Default: false", "default": false }, "icon": { "type": "string" }, "inline": { "type": "boolean", "description": "Always show the calendar instead of the text input and dropdown UI. Default: false.", "default": false }, "mode": { "type": "string", "description": "Choose between single or range. Range mode disables the time picker. Default: single.", "enum": [ "single", "range" ], "default": "single" }, "rows": { "type": "integer", "description": "Show multiple months at one time, in columns and rows. Default: 1.", "minimum": 1, "default": 1 }, "time_enabled": { "type": "boolean", "description": "Enable/disable the timepicker. Default: false.", "default": false }, "time_required": { "type": "boolean", "description": "Makes the time field visible and non-dismissible. Default: false.", "default": false }, "type": { "type": "string", "const": "date" } }, "additionalProperties": true }, "entries": { "description": "", "type": "object", "properties": { "type": { "const": "entries" }, "max_items": { "$ref": "#/$defs/max_items" }, "mode": { "$ref": "#/$defs/userSelectModes" }, "create": { "type": "boolean", "default": true }, "collections": { "type": "array", "uniqueItems": true, "items": { "type": "string" } } }, "additionalProperties": true }, "form": { "description": "The Form fieldtype is gives your users a way to pick a form to include along with the current entry.", "type": "object", "properties": { "type": { "const": "form" }, "placeholder": { "$ref": "#/$defs/placeholder" }, "max_items": { "type": "integer", "default": 1 } }, "additionalProperties": true }, "grid": { "description": "The grid fieldtype is a meta fieldtype, a fieldtype that serves as a container for more fieldtypes.", "type": "object", "properties": { "type": { "const": "grid" }, "fields": { "description": "A list of fields, each of which create their own column.", "type": "array", "items": { "type": "object" } }, "mode": { "description": "The Grid is displayed as a table by default. If you have a large number of columns it can get pretty crowded. Choose stacked mode to group rows similar to Replicator. When Sneak Peek is enabled, Grids automatically toggle into stacked mode.", "type": "string", "enum": [ "table", "stacked" ] }, "min_rows": { "description": "The minimum number of required rows.", "type": "integer", "minimum": 0 }, "max_rows": { "description": "The maximum number of rows allowed. Once reached the Add Row button will disappear.", "type": "integer", "minimum": 1 }, "add_row": { "description": "The Add Row button's label.", "type": "string", "minimum": 1 }, "reorderable": { "description": "The minimum number of required rows.", "type": "boolean", "default": true } }, "additionalProperties": true }, "hidden": { "description": "The hidden field is perfect for setting default data when creating new entries.", "type": "object", "properties": { "type": { "const": "hidden" }, "default": { "type": "string" } }, "additionalProperties": true }, "html": { "description": "If you've ever wanted to add a little HTML to your blueprint, this is the way to do it.", "type": "object", "properties": { "type": { "const": "html" }, "html": { "description": "Store whatever HTML you want — it's up to you.", "type": [ "string" ] } }, "additionalProperties": true }, "import": { "description": "Importing Fieldsets. They serve to create reusable sets of fields, just like v2.", "type": "string" }, "integer": { "description": "The integer fieldtype is a text-style input that only accepts integers (numbers) and has increment and decrement controls.", "type": "object", "properties": { "type": { "const": "integer" }, "default": { "type": [ "string", "integer" ] } }, "additionalProperties": true }, "link": { "description": "For when you want to create a link to a URL or entry, this fieldtype is here for you.", "type": "object", "properties": { "type": { "const": "link" }, "collections": { "type": "array" } }, "additionalProperties": true }, "list": { "description": "For when you want to manage a simple YAML list, this fieldtype is here for you.", "type": "object", "properties": { "type": { "const": "list" }, "default": { "type": "array" } }, "additionalProperties": true }, "markdown": { "description": "Write Markdown with the help of formatting buttons, assets integration, fullscreen mode, a Markdown cheatsheet, and HTML preview mode.", "type": "object", "properties": { "type": { "const": "markdown" }, "container": { "description": "Set the name of an asset container to enable browsing, uploading, and inserting assets.", "type": "string" }, "restrict": { "description": "If true, navigation within the asset browser will be disabled. Your users will be restricted to specified the container and folder. Default: false.", "type": "boolean", "default": false }, "automatic_line_breaks": { "description": "Automatically convert line breaks to <br> tags. Default: true.", "type": "boolean", "default": true }, "automatic_links": { "description": "Automatically links any URLs in the text. Default: false.", "type": "boolean", "default": false }, "escape_markup": { "description": "Escapes inline HTML markup. For example, <div> will be replaced with &lt;div&gt;. Default: true.", "type": "boolean", "default": false }, "smartypants": { "description": "Automatically convert straight quotes into curly quotes, dashes into en/em-dashes, and other similar text transformations. Default: false.", "type": "boolean", "default": false }, "antlers": { "$ref": "#/$defs/antlers" }, "default": { "description": "Set the default value.", "type": "string" } }, "additionalProperties": true }, "radio": { "description": "The radio fieldtype is a multiple choice input where you only get one choice.", "type": "object", "properties": { "type": { "const": "radio" }, "options": { "description": "Sets of key/value pairs define the values and labels of the radio options.", "type": [ "object", "array" ] }, "inline": { "description": "Show the radio buttons next to each other in a row instead of stacked vertically. Default: false", "type": "boolean", "default": false }, "cast_booleans": { "type": "boolean", "default": false } }, "additionalProperties": true }, "range": { "description": "Range fields let the user choose a numeric value which must be no less than a given value, and no more than another.", "type": "object", "properties": { "type": { "const": "range" }, "step": { "description": "The minimum size between values.", "type": "integer", "minimum": 1, "default": 1 }, "min": { "description": "The minimum, left-most value.", "type": "integer", "minimum": 0, "default": 0 }, "max": { "description": "The maximum, right-most value.", "type": "integer", "default": 100 }, "default": { "description": "Set the default value.", "type": "integer" } }, "additionalProperties": true }, "replicator": { "description": "The Replicator is a meta fieldtype giving you the ability to define sets of fields that you can dynamically piece together in whatever order and arrangement you imagine.", "type": "object", "properties": { "type": { "const": "replicator" } }, "additionalProperties": true }, "revealer": { "description": "The revealer is a simple button that reveals conditional fields without saving any additional data.", "type": "object", "properties": { "type": { "const": "revealer" } }, "additionalProperties": true }, "section": { "description": "", "type": "object", "properties": { "type": { "const": "section" } }, "additionalProperties": true }, "select": { "description": "Give your users a list of options to choose from.", "type": "object", "properties": { "type": { "const": "select" }, "clearable": { "description": "Allow deselecting any chosen option and making null a possible value. Default: false.", "type": "boolean", "default": false }, "options": { "description": "A set of key/value pairs that define the values and labels. If you don't define the keys, the value and label will be the same.\n\n", "type": [ "array", "object" ] }, "placeholder": { "description": "Set the non-selectable placeholder text. Default: none.", "$ref": "#/$defs/placeholder" }, "default": { "description": "Set the default option key. Default: none.", "type": "string" }, "multiple": { "description": "Allow multiple selections. Default: false.", "type": "boolean", "default": false }, "searchable": { "description": "Enable search with suggestions by typing in the select box. Default: true.", "type": "boolean", "default": true }, "taggable": { "description": "Use a \"tag\" style UI when selecting multiples. Default: false.", "type": "boolean", "default": false }, "push_tags": { "description": "Add newly created options to the list. Default: false.", "type": "boolean", "default": false } }, "additionalProperties": true, "required": [ "options" ] }, "sites": { "description": "", "type": "object", "properties": { "type": { "const": "sites" }, "max_items": { "$ref": "#/$defs/max_items" }, "mode": { "$ref": "#/$defs/userSelectModes" } }, "additionalProperties": true }, "slug": { "description": "", "type": "object", "properties": { "type": { "const": "slug" }, "generate": { "type": "boolean", "default": true } }, "additionalProperties": true }, "structures": { "description": "Use this fieldtype to create a one-way relationship with one or more structures in your site.", "type": "object", "properties": { "type": { "const": "structures" }, "max_items": { "$ref": "#/$defs/max_items" }, "mode": { "$ref": "#/$defs/userSelectModes" } }, "additionalProperties": true }, "table": { "description": "This fieldtype gives you a way to create flexible tabular data.", "type": "object", "properties": { "type": { "const": "table" } }, "additionalProperties": true }, "taggable": { "description": "Users can enter “taggable” values, which are formatted automatically into a YAML list format.", "type": "object", "properties": { "type": { "const": "taggable" }, "placeholder": { "$ref": "#/$defs/placeholder" } }, "additionalProperties": true }, "taxonomies": { "description": "", "type": "object", "properties": { "type": { "const": "taxonomies" }, "max_items": { "$ref": "#/$defs/max_items" }, "mode": { "$ref": "#/$defs/userSelectModes" } }, "additionalProperties": true }, "template": { "description": "This is generally used as a \"system\" field to control an entry's template.", "type": "object", "properties": { "type": { "const": "template" }, "hide_partials": { "type": "boolean", "default": true } }, "additionalProperties": true }, "terms": { "description": "Taxonomies are usually relationships established on the collection-configuration level.", "type": "object", "properties": { "type": { "const": "terms" }, "max_items": { "$ref": "#/$defs/max_items" }, "mode": { "$ref": "#/$defs/userSelectModes" }, "create": { "type": "boolean" }, "taxonomies": { "type": "array" } }, "additionalProperties": true }, "text": { "description": "A text field that has the ability to morph into an intergalactic dragon and devour entire planets!", "type": "object", "properties": { "type": { "const": "text" }, "placeholder": { "$ref": "#/$defs/placeholder" }, "input_type": { "type": "string", "default": "text", "enum": [ "color", "date", "email", "hidden", "month", "number", "password", "tel", "text", "time", "url", "week" ] }, "character_limit": { "type": [ "integer" ] }, "antlers": { "$ref": "#/$defs/antlers" }, "default": { "type": "string" }, "append": { "type": "string" }, "prepend": { "type": "string" } }, "additionalProperties": true }, "textarea": { "description": "A long textarea field that functions like a swimming pool for letters and numbers on a hot day.", "type": "object", "properties": { "type": { "const": "textarea" }, "placeholder": { "$ref": "#/$defs/placeholder" }, "character_limit": { "type": [ "integer", "string" ] }, "antlers": { "$ref": "#/$defs/antlers" }, "default": { "type": "string" } }, "additionalProperties": true }, "time": { "description": "The original time field from the set of Kiefer Sutherland's hit drama \"24\".", "type": "object", "properties": { "type": { "const": "time" }, "default": { "type": "string", "pattern": "^(0[0-9]|1[0-9]|2[0-3]):[0-5][0-9]$" } }, "additionalProperties": true }, "toggle": { "description": "A nice little toggle switch generally used to manage settings-type variables.", "type": "object", "properties": { "type": { "const": "toggle" }, "default": { "type": "boolean", "default": false } }, "additionalProperties": true }, "user_groups": { "description": "The User Group fieldtype gives your users a way to pick one or more User Groups to attach to the current entry.", "type": "object", "properties": { "type": { "const": "user_groups" }, "max_items": { "type": [ "integer", "null" ], "minimum": 1, "default": null }, "mode": { "$ref": "#/$defs/userSelectModes" } }, "additionalProperties": true }, "user_roles": { "description": "The User Role fieldtype gives your users a way to pick one or more User Groups to attach to the current entry.", "type": "object", "properties": { "type": { "const": "user_roles" }, "max_items": { "type": [ "integer", "null" ], "minimum": 1, "default": null }, "mode": { "$ref": "#/$defs/userSelectModes" } }, "additionalProperties": true }, "users": { "description": "The most common use for the Users fieldtype is to set the \"author\" for entries, but it's not the only use.", "type": "object", "properties": { "type": { "const": "users" }, "max_items": { "type": [ "integer", "null" ], "minimum": 1, "default": null }, "mode": { "$ref": "#/$defs/userSelectModes" }, "default": { "type": "string", "const": "current" } }, "additionalProperties": true }, "video": { "description": "", "type": "object", "properties": { "type": { "const": "video" }, "placeholder": { "$ref": "#/$defs/placeholder" }, "default": { "type": "string", "format": "url" } }, "additionalProperties": true }, "yaml": { "description": "This field is a code fieldtype that gets saved as YAML instead of a string.", "type": "object", "properties": { "type": { "const": "yaml" }, "default": { "type": [ "object", "string" ] } }, "additionalProperties": true }, "display": { "description": "The label shown above the field.", "type": "string" }, "icon": { "description": "The icon", "type": "string" }, "instructions": { "description": "Shown under the field's display label, like this very text. Markdown is supported.", "type": "string" }, "instructions_position": { "description": "Where the instructions should be positioned relative to the field. Options: Above or Below.", "type": "string", "enum": [ "above", "below" ] }, "listable": { "description": "Controls whether the field should be shown in control panel listings.", "oneOf": [ { "type": "boolean" }, { "type": "string", "pattern": "hidden" } ] }, "required": { "description": "Control whether or not this field is required.\n\n", "type": "boolean" }, "localizable": { "description": "", "type": "boolean" }, "validate": { "description": "The validation rules for that field", "type": "array", "items": { "anyOf": [ { "$ref": "#/$defs/ruleMin" }, { "$ref": "#/$defs/validationRules" } ], "minItems": 1, "uniqueItems": true } }, "ruleMin": { "type": "string", "pattern": "^((accepted|declined|exclude)_if:\\S+,\\S+|(after|before):[\\w\\d_-]+|(after|before)_or_equal:[\\w\\d_-]+|between:\\d+,\\d+|date_equals:[\\w\\d_-]+|date_format:[\\w\\d_-]+|different:\\S+|digits:\\d+|digits_between:\\d+,\\d+|ends_with:\\S+,\\S+|exclude_unless:\\S+,\\S+|exclude_without:\\S+|exists:\\S+,\\S+|[lg]t(e)?:\\S+|in:\\S+,\\S+|in_array:\\S+|(min|max):\\d+|mimetypes:\\S+|mimes:\\S+|multiple_of:\\d+|not_in:\\S+,\\S+|(not_)?regex:\\S+|prohibited_(if|unless):[\\S_]+,\\S+|prohibits:(\\S)+,(\\S)+|required_(if|unless):\\S+,\\d+|required_(with|with_all|without|without_all):\\S+,\\S+|same:\\S+|size:\\d+|starts_with:\\S+,\\S+|unique:\\S+,\\S+|unique_user_value:[\\{(collection|id|site)\\}]+)$" }, "validationRules": { "type": "string", "enum": [ "accepted", "active_url", "required", "alpha", "alpha_dash", "alpha_num", "array", "bail", "boolean", "confirmed", "current_password", "date", "declined", "dimensions", "distinct", "email", "enum", "exclude", "file", "filled", "image", "integer", "ip", "ipv4", "ipv6", "json", "nullable", "numeric", "password", "present", "prohibited", "string", "timezone", "url", "uuid" ] }, "userSelectModes": { "type": "string", "enum": [ "default", "select", "typeahead" ] }, "placeholder": { "type": "string" }, "antlers": { "description": "Enable Antlers parsing in this field's content.", "type": "boolean", "default": false }, "max_items": { "type": "integer", "minimum": 1 } } }
statamic
{ "$id": "https://json.schemastore.org/airlock-microgateway-3.2.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "DefaultActionDto": { "title": "dto action", "type": "object", "properties": { "enabled": { "type": ["boolean", "null"], "description": "Enable this default header action" }, "name": { "type": ["string", "null"], "description": "Name of the default header action" } }, "additionalProperties": false }, "ExpertSettingsDto-nullable": { "type": ["object", "null"], "properties": { "apache": { "type": ["string", "null"], "description": "Expert settings for the Apache httpd." }, "security_gate": { "type": ["string", "null"], "description": "Expert settings for the Security Gate." } }, "additionalProperties": false }, "PatternDto-nullable": { "type": ["object", "null"], "properties": { "ignore_case": { "type": "boolean", "description": "Whether to ignore case.", "default": "true" }, "inverted": { "type": "boolean", "description": "Whether to invert the match.", "default": "false" }, "pattern": { "type": "string", "description": "A regex pattern used to match, cannot be empty. If you need a pattern that matches every string use \".*\"" } }, "required": ["pattern"], "additionalProperties": false }, "PatternWithRewriteDto-nullable": { "type": ["object", "null"], "properties": { "regex": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "The regular expression, which matches the parts which should be rewritten." } ] }, "substitution": { "type": ["string", "null"], "description": "The rewrite expression." } }, "additionalProperties": false }, "PatternWithoutInvertDto": { "title": "pattern", "type": "object", "properties": { "ignore_case": { "type": "boolean", "description": "Whether to ignore case.", "default": "true" }, "pattern": { "type": "string", "description": "A regex pattern used to match, cannot be empty. If you need a pattern that matches every string use \".*\"" } }, "required": ["pattern"], "additionalProperties": false }, "PatternWithoutInvertDto-nullable": { "anyOf": [ { "type": "null" }, { "$ref": "#/definitions/PatternWithoutInvertDto" } ] }, "RemoveHeaderActionDto-nullable": { "type": ["object", "null"], "properties": { "name": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "A pattern for the header name." } ] }, "value": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "A pattern for the header value." } ] } }, "additionalProperties": false }, "RewriteHeaderValueDto-nullable": { "type": ["object", "null"], "properties": { "name": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "A pattern for the header name." } ] }, "replace": { "type": ["string", "null"], "description": "A string to rewrite the header value with. Can make back-references to the header value pattern." }, "value": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "A pattern for the header value." } ] } }, "additionalProperties": false }, "SimpleHeaderActionDto-nullable": { "type": ["object", "null"], "properties": { "name": { "type": ["string", "null"], "description": "The name of the header to add." }, "value": { "type": ["string", "null"], "description": "The value of the header to add." } }, "additionalProperties": false }, "SimplePatternDto-nullable": { "type": ["object", "null"], "properties": { "pattern": { "type": ["string", "null"], "description": "The actual pattern." } }, "additionalProperties": false } }, "properties": { "apps": { "type": "array", "items": { "title": "application", "type": "object", "properties": { "mappings": { "type": "array", "items": { "title": "mapping", "type": "object", "properties": { "access_token": { "type": ["object", "null"], "properties": { "audittoken": { "type": ["boolean", "null"], "description": "If the 'sub' claim should be extracted from the JWT and be used as audit token of the current session", "default": "false" }, "claims": { "description": "All specified claims are checked and must match the claim's value of the decoded token. If a claim is an array, at least one entry must match the specified regex.", "type": "array", "items": { "title": "claim", "type": "object", "properties": { "claim": { "type": ["string", "null"], "description": "The name of the claim you want to restrict." }, "regex": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "The regular expression that must match the value of the specified claim name." } ] } }, "additionalProperties": false } }, "expiry_checked": { "type": ["boolean", "null"], "description": "If the JWT standard claims expiry (exp) and not before (nbf) will be checked and must be valid.", "default": "false" }, "extraction": { "type": ["object", "null"], "properties": { "cookie": { "type": ["string", "null"], "description": "From which cookie the token should be extracted." }, "header": { "allOf": [ { "$ref": "#/definitions/PatternWithRewriteDto-nullable" }, { "description": "How the token should be extracted from the request headers." } ] }, "mode": { "anyOf": [ { "type": "null" }, { "type": "string", "enum": ["header", "parameter", "cookie"] } ], "description": "From which part of the request the token should be extracted. Possible values are 'header', 'parameter', 'cookie'.", "default": "header" }, "parameter": { "type": ["string", "null"], "description": "From which query parameter the token should be extracted." } }, "additionalProperties": false, "description": "How the token should be extracted." }, "jwks_providers": { "description": "List of JWKS service providers referenced by their name. Can be local or remote providers.", "type": "array", "items": { "type": "string" } }, "mandatory": { "type": ["boolean", "null"], "description": "If disabled, requests without a token are accepted. However, if a token is present,it is extracted and validated and the configured restrictions and role extractions are applied. ", "default": "false" }, "roles": { "description": "Specifies which roles should be extracted from the claims.", "type": "array", "items": { "title": "role", "type": "object", "properties": { "claim": { "type": ["string", "null"], "description": "Name of the claim you want to extract a role from." }, "extraction": { "allOf": [ { "$ref": "#/definitions/PatternWithRewriteDto-nullable" }, { "description": "The regular expression to match the role extraction and the rewrite expression of the role." } ] }, "token_lifetime": { "type": ["boolean", "null"], "description": "If enabled, the expiry claim (exp) of the JWT will be used as the role lifetime.", "default": "false" } }, "additionalProperties": false } }, "signature_mandatory": { "type": ["boolean", "null"], "description": "Enforce a signed JWT", "default": "true" }, "skew": { "type": ["integer", "null"], "description": "The allowed skew when checking expiry / not before in seconds.", "default": "10" }, "tech_client_id_claim": { "type": ["string", "null"], "description": "The claim to extract the technical client id from." } }, "additionalProperties": false }, "allow_rules": { "type": "array", "items": { "title": "allowed roles", "type": "object", "properties": { "content_type": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "A pattern to match the content type for this allow rule." } ] }, "enabled": { "type": "boolean", "description": "Enable the allow rule.", "default": "true" }, "log_only": { "type": "boolean", "description": "Whether to log requests not matching this allow rule instead of blocking them.", "default": "false" }, "method": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "A pattern to match the http method for this allow rule." } ] }, "name": { "type": "string", "description": "Unique name for the allow rule. If omitted, a unique name will be generated. To enable/disable the default allow rule or one from a mapping_template_file, use the same name.", "default": "Allow all" }, "path": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "A pattern to match the path." } ] } }, "additionalProperties": false } }, "api_security": { "type": ["object", "null"], "properties": { "json_content_type": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "JSON objects are parsed only if their content-type matches the specified pattern.", "default": "json" } ] }, "openapi": { "type": ["object", "null"], "properties": { "log_only": { "type": ["boolean", "null"], "description": "If enabled, potential attack requests are only logged but not blocked.", "default": "false" }, "path_matching": { "anyOf": [ { "type": "null" }, { "type": "string", "enum": ["client_view", "backend_view"] } ], "description": "The Microgateway mapping can be configured to rewrite the incoming URL to a different back-end URL (asymmetric mappings). Due to this rewriting, the incoming URL path (client_view) will be different from the back-end URL path (backend_view).", "default": "client_view" }, "response_validation": { "type": ["boolean", "null"], "description": "Check responses against API specification.", "default": "false" }, "spec": { "type": ["string", "null"], "description": "The OpenAPI specification." }, "spec_file": { "type": ["string", "null"], "description": "The OpenAPI file path.", "default": "/config/openapi.json" } }, "additionalProperties": false, "description": "The specification to validate against." }, "treat_json_objects_as_parameters": { "type": ["boolean", "null"], "description": "If enabled, Microgateway parses JSON objects in requests and filters JSON attributes with allow rules and deny rules.", "default": "true" }, "treat_path_segments_as_parameters": { "type": ["boolean", "null"], "description": "If enabled, each path segment is interpreted as a separate parameter value and the deny rules for parameter values are applied to it.", "default": "true" } }, "additionalProperties": false }, "auth": { "type": ["object", "null"], "properties": { "access": { "description": "A list of access restrictions can be created. Each request matching the combination of HTTP method and path of a access restriction must have at least one of the specified roles to access the service. All matching restrictions must be satisfied to gain access.", "type": "array", "items": { "title": "access restriction", "type": "object", "properties": { "method": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "Can contain regular expressions that are applied when the HTTP method of a request matches one of the expressions. Use an empty pattern if all HTTP methods should match." } ] }, "path": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "Can contain regular expressions that are applied when the requested path of the query matches the expressions. Use an empty pattern if all paths should match." } ] }, "roles": { "description": "Can contain a list of roles for this service. Only sessions that have at least one of these roles will be able to access the service.", "type": "array", "items": { "type": "string" } } }, "additionalProperties": false } }, "client_certificate": { "type": ["object", "null"], "properties": { "verification": { "type": "string", "enum": ["inherit", "optional", "required"], "description": "The client certificate verification mode to use on this mapping. This can be used to override the setting from the virtual host with a stronger verification level (e.g. off -> optional or optional -> required). Possible values are 'inherit', 'optional' or 'required'.", "default": "inherit" } }, "additionalProperties": false }, "denied_access_url": { "type": ["string", "null"], "description": "Defines the location of the authentication service. In case the required role for the mapping is missing on the current session, Airlock Gateway will redirect the client to this location. If this value is missing (default), the Global Denied Access URL will be used.", "default": "/auth/check-login" }, "flow": { "anyOf": [ { "type": "null" }, { "type": "string", "enum": [ "redirect", "deny_access", "one_shot", "one_shot_with_body", "ntlm" ] } ], "description": "The authentication flow, allowed values are: redirect, deny_access, one_shot, one_shot_with_body, ntlm", "default": "redirect" }, "logout_propagation_path": { "type": ["string", "null"], "description": "In order to allow clean session termination on back-end systems when an Airlock Gateway session terminates, the administrator can configure one logout path per mapping." } }, "additionalProperties": false }, "backend": { "type": ["object", "null"], "properties": { "expert_settings": { "type": ["object", "null"], "properties": { "security_gate": { "type": ["string", "null"], "description": "Expert settings for the Security Gate." } }, "additionalProperties": false }, "hosts": { "type": "array", "items": { "title": "host", "type": "object", "properties": { "name": { "type": "string", "description": "The hostname of the back-end host. Only characters a-Z, numbers, and the special characters '.', ':', '-' and '_' are allowed.", "default": "backend", "pattern": "^[A-Za-z0-9.\\-_:]+$" }, "port": { "type": "integer", "description": "Configuring a back-end port.", "default": "8080", "minimum": 1, "maximum": 65535 }, "protocol": { "type": "string", "enum": ["https", "http"], "description": "Allowed values are: http, https", "default": "http" } }, "additionalProperties": false } }, "name": { "type": "string", "description": "The unique name of the back-end. Only characters a-Z, numbers, and the special characters '.', ':', '-' and '_' are allowed.", "default": "backendGroup", "pattern": "^[A-Za-z0-9.\\-_:]+$" } }, "additionalProperties": false }, "backend_path": { "type": ["string", "null"], "description": "The back-end path specifies the internal back-end path, i.e. the path of the request sent to the application server.", "default": "/" }, "compress_response_traffic": { "type": ["boolean", "null"], "description": "Specifies whether Airlock Microgateway should compress the output on-the-fly for the client browser if supported and requested by the browser.", "default": "false" }, "control_api": { "type": ["boolean", "null"], "description": "Specifies whether the connected back-end service is allowed to use the Airlock Microgateway Control API via the control cookie mechanism. The Control API is normally used by authentication applications to communicate with the Microgateway.", "default": "false" }, "cookies": { "type": ["object", "null"], "properties": { "encrypted": { "allOf": [ { "$ref": "#/definitions/SimplePatternDto-nullable" }, { "description": "Cookies that should be cryptographically encrypted before being sent to the client." } ] }, "passthrough": { "allOf": [ { "$ref": "#/definitions/SimplePatternDto-nullable" }, { "description": "Cookies that should be passed in plain format to the client." } ] } }, "additionalProperties": false }, "csrf_token": { "type": ["object", "null"], "properties": { "enabled": { "type": ["boolean", "null"], "description": "Whether to enable automatic CSRF token injection and validation on this mapping.", "default": "false" }, "exceptions": { "description": "All incoming URLs that match one of these patterns are accepted by Airlock Microgateway without a valid CSRF token.", "type": ["array", "null"], "items": { "title": "exception", "type": "object", "properties": { "path": { "$ref": "#/definitions/PatternWithoutInvertDto-nullable" } }, "additionalProperties": false } }, "invalid_token_redirect_location": { "type": ["string", "null"], "description": "Specifies the location (e.g. /index.html) to which the client is redirected if a missing or invalid CSRF token is detected.", "default": "/%ENTRYPATH%" } }, "additionalProperties": false }, "deny_rule_groups": { "type": "array", "items": { "title": "denied rule groups", "type": "object", "properties": { "enabled": { "type": ["boolean", "null"], "description": "Enable deny rule group", "default": "true" }, "exceptions": { "type": "array", "items": { "title": "exception", "type": "object", "properties": { "content_type": { "$ref": "#/definitions/PatternDto-nullable" }, "header_name": { "$ref": "#/definitions/PatternDto-nullable" }, "header_value": { "$ref": "#/definitions/PatternDto-nullable" }, "method": { "$ref": "#/definitions/PatternDto-nullable" }, "parameter_name": { "$ref": "#/definitions/PatternDto-nullable" }, "parameter_value": { "$ref": "#/definitions/PatternDto-nullable" }, "path": { "$ref": "#/definitions/PatternDto-nullable" } }, "additionalProperties": false } }, "level": { "anyOf": [ { "type": "null" }, { "type": "string", "enum": ["basic", "standard", "strict"] } ], "description": "Allowed values are: basic, standard, strict.", "default": "standard" }, "log_only": { "type": ["boolean", "null"], "description": "If enabled, offending requests are not blocked but only logged", "default": "false" }, "rule_group_keys": { "description": "If deny rule group key is defined, the settings will only affect the specific deny rule group.", "type": "array", "items": { "type": "string" } } }, "additionalProperties": false } }, "entry_path": { "type": ["object", "null"], "properties": { "enforce_trailing_slashes": { "type": ["boolean", "null"], "description": "Whether a trailing slash is mandatory at the end of the entry path or not.", "default": "false" }, "ignore_case": { "type": ["boolean", "null"], "description": "Whether to ignore case.", "default": "false" }, "type": { "anyOf": [ { "type": "null" }, { "type": "string", "enum": ["directory", "regex"] } ], "description": "Allowed values are: directory, regex.", "default": "directory" }, "value": { "type": ["string", "null"], "description": "This specifies the external URL path.", "default": "/" } }, "additionalProperties": false, "description": "The entry path specifies the external URL path the mapping should be available under." }, "env_cookies": { "type": ["boolean", "null"], "description": "Specifies whether Airlock environment cookies containing useful request information are sent to the connected back-end.", "default": "false" }, "expert_settings": { "$ref": "#/definitions/ExpertSettingsDto-nullable" }, "limits": { "type": ["object", "null"], "properties": { "http_limits": { "type": ["object", "null"], "properties": { "max_parameter_name_length": { "type": ["integer", "null"], "description": "Defines the maximum length of a parameter name in bytes.", "default": "128" }, "max_parameter_value_length": { "type": ["integer", "null"], "description": "Defines the maximum length for a parameter value in bytes.", "default": "1024" }, "max_parameters": { "type": ["integer", "null"], "description": "Defines the maximum number of parameters inside the request.", "default": "128" }, "parameter_length_exception": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "A regular expression which specifies any parameters which should not be checked against these length checks." } ] } }, "additionalProperties": false, "description": "The limits for HTTP parameters." }, "json_limits": { "type": ["object", "null"], "properties": { "max_array_items": { "type": ["integer", "null"], "description": "Defines the maximum number of items in a single JSON array (non-recursive).", "default": "500" }, "max_key_length": { "type": ["integer", "null"], "description": "Defines the maximum length for a JSON key, also known as 'JSON property' or 'JSON object member' in bytes.", "default": "256" }, "max_keys": { "type": ["integer", "null"], "description": "Defines the maximum number of keys of a single JSON object (non-recursive).", "default": "250" }, "max_length_exception": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "Defines a regular expression to exclude JSON keys and the corresponding values from the length checks. The exceptions must be specified in the '#json' format for a JSON key." } ] }, "max_nesting_depth": { "type": ["integer", "null"], "description": "Defines the maximum depth of nesting for JSON objects and JSON arrays.", "default": "100" }, "max_total_entries": { "type": ["integer", "null"], "description": "Defines the maximum number of keys and array items in the whole JSON document (recursive).", "default": "150000" }, "max_value_length": { "type": ["integer", "null"], "description": "Defines the maximum length for a JSON value (string or numbers) in bytes.", "default": "8192" } }, "additionalProperties": false, "description": "The limits for JSON structures." }, "max_path_length": { "type": ["integer", "null"], "description": "Defines the maximum path length for requests to the current mapping in bytes.", "default": "1024" }, "max_request_body_size": { "type": ["integer", "null"], "description": "The maximum allowed total size of the request body in bytes. It specifies the number of bytes from 0 (meaning unlimited) to 2147483647 (2GB) that are allowed in the request body. To restrict the size of file uploads, set this limit to the maximum combined size of all files uploaded at once.", "default": "104857600" } }, "additionalProperties": false }, "mapping_template_file": { "type": ["string", "null"], "description": "The Airlock Gateway mapping template file path.", "default": "/config/mapping.xml" }, "name": { "type": ["string", "null"], "description": "The unique name of the mapping.", "default": "root" }, "operational_mode": { "anyOf": [ { "type": "null" }, { "type": "string", "enum": ["production", "integration"] } ], "description": "Allowed values are: production, integration.", "default": "production" }, "parameter_pollution": { "type": ["object", "null"], "properties": { "mixed_type": { "type": ["object", "null"], "properties": { "block_duplicates": { "type": ["boolean", "null"], "description": "If enabled, requests are blocked if they contain the same parameter names with different parameter types (e.g. \"id\" is present as a POST parameter and as a query parameter simultaneously).", "default": "true" }, "log_only": { "type": ["boolean", "null"], "description": "If enabled, offending requests are not blocked but only logged.", "default": "false" }, "parameter_name_exception": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "Exception pattern to exclude parameters from the parameter pollution detection." } ] } }, "additionalProperties": false }, "same_type": { "type": ["object", "null"], "properties": { "join_duplicates": { "type": ["boolean", "null"], "description": "If enabled, all the different values of a repeated parameter are joined by comma (in order of appearance). The aggregate value is then checked against deny rules (instead of the individual values).", "default": "true" } }, "additionalProperties": false } }, "additionalProperties": false }, "priority": { "type": ["integer", "null"], "description": "Specifies the priority of this mapping (highest: -999, lowest: 999) when a request matches the entry path of multiple mappings.\nAll mappings with entry_path.type regex must have a unique priority.", "default": "0", "minimum": -999, "maximum": 999 }, "request": { "type": ["object", "null"], "properties": { "custom_actions": { "description": "A list of request custom actions executed in order of appearance. Only one action type (e.g. add_header or header_redirect) can be specified in each entry. Create multiple list positions if needed.", "type": ["array", "null"], "items": { "title": "custom action", "type": "object", "properties": { "add_header": { "allOf": [ { "$ref": "#/definitions/SimpleHeaderActionDto-nullable" }, { "description": "An action to add a header to all requests." } ] }, "add_missing_header": { "allOf": [ { "$ref": "#/definitions/SimpleHeaderActionDto-nullable" }, { "description": "An action to add a header to all requests if it is not already present." } ] }, "add_or_replace_header": { "allOf": [ { "$ref": "#/definitions/SimpleHeaderActionDto-nullable" }, { "description": "An action to add or replace an existing header to all requests." } ] }, "geolocation_redirect": { "type": ["object", "null"], "properties": { "continent_codes": { "description": "A list of alpha-2 continent codes to redirect clients from. See here: https://en.wikipedia.org/wiki/List_of_sovereign_states_and_dependent_territories_by_continent_(data_file)", "default": "[]", "type": ["array", "null"], "items": { "type": "string", "default": "[]" } }, "country_codes": { "description": "A list of country codes to redirect clients from. See here for alpha-2 codes to use: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2", "default": "[]", "type": ["array", "null"], "items": { "type": "string", "default": "[]" } }, "status_code": { "type": ["integer", "null"], "description": "The http status code to use on redirect", "default": "303" }, "target_url": { "type": ["string", "null"], "description": "The url to redirect to." } }, "additionalProperties": false, "description": "An action to redirect to a URL based on the geographic location of the request source IP." }, "header_redirect": { "type": ["object", "null"], "properties": { "name": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "A pattern for the header name." } ] }, "status_code": { "type": ["integer", "null"], "description": "The http status code to use on redirect", "default": "303" }, "target_url": { "type": ["string", "null"], "description": "The url to redirect to." }, "value": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "A pattern for the header value." } ] } }, "additionalProperties": false, "description": "An action to redirect to a URL based on a header name or value either matching the given name or value pattern on requests." }, "name": { "type": "string", "description": "A unique name for this action; if not specified, a unique name will be generated." }, "remove_header": { "allOf": [ { "$ref": "#/definitions/RemoveHeaderActionDto-nullable" }, { "description": "An action to remove a header either matching given name or value pattern on requests." } ] }, "rewrite_header_value": { "allOf": [ { "$ref": "#/definitions/RewriteHeaderValueDto-nullable" }, { "description": "An action to rewrite a header value either matching given name or value pattern on requests." } ] } }, "additionalProperties": false } }, "default_actions": { "type": ["array", "null"], "items": { "$ref": "#/definitions/DefaultActionDto" } } }, "additionalProperties": false }, "response": { "type": ["object", "null"], "properties": { "custom_actions": { "description": "A list of request custom actions executed in order of appearance. Only one action type (e.g. add_header or header_redirect) can be specified in each entry. Create multiple list positions if needed.", "type": ["array", "null"], "items": { "title": "custom action", "type": "object", "properties": { "add_header": { "allOf": [ { "$ref": "#/definitions/SimpleHeaderActionDto-nullable" }, { "description": "An action to add a header to all responses." } ] }, "add_missing_header": { "allOf": [ { "$ref": "#/definitions/SimpleHeaderActionDto-nullable" }, { "description": "An action to add a header to all responses if it is not already present." } ] }, "add_or_replace_header": { "allOf": [ { "$ref": "#/definitions/SimpleHeaderActionDto-nullable" }, { "description": "An action to add or replace an existing header on all responses." } ] }, "name": { "type": "string", "description": "A unique name for this action; if not specified, a unique name will be generated." }, "remove_header": { "allOf": [ { "$ref": "#/definitions/RemoveHeaderActionDto-nullable" }, { "description": "An action to remove a header either matching given name or value pattern on responses." } ] }, "rewrite_cookie": { "type": ["object", "null"], "properties": { "cookie": { "allOf": [ { "$ref": "#/definitions/PatternDto-nullable" }, { "description": "A pattern to match the name of the cookie to rewrite. If this is set the name of the cookie must match this pattern for the rewrite to happen." } ] }, "domain": { "allOf": [ { "$ref": "#/definitions/PatternWithoutInvertDto-nullable" }, { "description": "A pattern to match the domain, or part of the domain of a cookie to rewrite it." } ] }, "domain_replace": { "type": ["string", "null"], "description": "What to replace the domain with; Can make back references to the pattern used to match." }, "http_only_mode": { "type": "string", "enum": ["auto", "keep", "remove", "add"], "description": "Whether to `add`, `keep` or `remove` the `HttpOnly` (see: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#HttpOnly) flag on cookies. AUTO will set the flag for encrypted cookies and KEEP it for others.", "default": "auto" }, "path": { "allOf": [ { "$ref": "#/definitions/PatternWithoutInvertDto-nullable" }, { "description": "A pattern to match the path of a response to rewrite." } ] }, "path_replace": { "type": ["string", "null"], "description": "What to replace the path with; Can make back references to the pattern used to match." }, "secure_mode": { "type": "string", "enum": ["auto", "keep", "remove", "add"], "description": "Whether to `add`, `keep` or `remove` the `Secure` (see: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#Secure) flag on cookies. AUTO will set the flag on all connections that use HTTPS and remove it on others.", "default": "auto" } }, "additionalProperties": false, "description": "An action to rewrite a cookie based on patterns for cookie name, domain etc." }, "rewrite_header_value": { "allOf": [ { "$ref": "#/definitions/RewriteHeaderValueDto-nullable" }, { "description": "An action to rewrite a header value either matching given name or value pattern on responses." } ] }, "rewrite_raw_cookie": { "type": ["object", "null"], "properties": { "replace": { "type": ["string", "null"], "description": "A string to rewrite value pattern matches in the cookie value. Can make back references to the pattern used for matching." }, "value": { "allOf": [ { "$ref": "#/definitions/PatternWithoutInvertDto-nullable" }, { "description": "A pattern for the cookie value to apply for matching." } ] } }, "additionalProperties": false, "description": "An action to rewrite the raw value of a cookie matching the given pattern." } }, "additionalProperties": false } }, "default_actions": { "type": ["array", "null"], "items": { "$ref": "#/definitions/DefaultActionDto" } }, "error_page_replacements": { "description": "Replacement rules for error responses returned by backend systems.", "type": ["array", "null"], "items": { "title": "error page replacement", "type": "object", "properties": { "page": { "type": ["string", "null"], "description": "Error page file name that will be delivered to the client. (eg. 400.html)" }, "status_code": { "allOf": [ { "$ref": "#/definitions/SimplePatternDto-nullable" }, { "description": "The http response with the matching status code that should be replaced." } ] } }, "additionalProperties": false } }, "rewrites": { "type": ["object", "null"], "properties": { "any": { "description": "Rewrite the body of HTTP response.", "type": "array", "items": { "title": "rewrite", "type": "object", "properties": { "content": { "allOf": [ { "$ref": "#/definitions/PatternWithoutInvertDto-nullable" }, { "description": "This regular expression pattern defines the content to rewrite." } ] }, "content_type": { "type": "string", "description": "A response from the back-end server is rewritten only if the response header «Content-Type» matches this regular expression.", "default": "^(?:text|application)/(?:html|xhtml)" }, "to": { "type": ["string", "null"], "description": "This is the target string which will replace the string matched by Content Pattern" } }, "additionalProperties": false } }, "html": { "description": "Rewriting HTML content may be necessary to modify URLs in the HTML content if the application creates absolute or incorrect links because it is not reverse proxy compatible", "type": "array", "items": { "title": "html", "type": "object", "properties": { "options": { "description": "This list defines the content to rewrite. Possible values are 'url', event', 'embedded'.", "default": "[ url ]", "type": "array", "items": { "type": "string", "enum": ["url", "event", "embedded"], "default": "[ url ]" } }, "to": { "type": ["string", "null"], "description": "This is the target string which will replace the string matched by URL Pattern" }, "url": { "allOf": [ { "$ref": "#/definitions/PatternWithoutInvertDto-nullable" }, { "description": "The URL pattern." } ] } }, "additionalProperties": false } }, "json": { "description": "Rewrite the json body of http responses.", "type": "array", "items": { "title": "json", "type": "object", "properties": { "content": { "allOf": [ { "$ref": "#/definitions/PatternWithoutInvertDto-nullable" }, { "description": "This regular expression pattern defines the content to rewrite." } ] }, "path": { "type": "string", "description": "The json path of the the property to rewrite." }, "replace": { "type": "string", "description": "This is the target content to replace the matched part with." } }, "additionalProperties": false } }, "location_header": { "description": "Rewrite option to modify the HTTP redirect location header sent from the back-end server before it is sent to the client.", "type": "array", "items": { "title": "location header", "type": "object", "properties": { "to": { "type": ["string", "null"], "description": "This is the target string which will replace the string matched by URL Pattern" }, "url": { "allOf": [ { "$ref": "#/definitions/PatternWithoutInvertDto-nullable" }, { "description": "The redirect URL pattern." } ] } }, "additionalProperties": false } } }, "additionalProperties": false } }, "additionalProperties": false }, "session_handling": { "anyOf": [ { "type": "null" }, { "type": "string", "enum": [ "enforce_session", "optional_session", "optional_session_no_refresh", "ignore_session" ] } ], "description": "Allowed values are: enforce_session, optional_session, optional_session_no_refresh, ignore_session", "default": "ignore_session" }, "threat_handling": { "anyOf": [ { "type": "null" }, { "type": "string", "enum": ["terminate_session", "block", "notify"] } ], "description": "Allowed values are: block, terminate_session, notify.", "default": "block" }, "timeouts": { "type": ["object", "null"], "properties": { "backend_http_response": { "type": ["integer", "null"], "description": "Defines the time in seconds Airlock Microgateway will wait for the back-end HTTP response. In case the request runs into the timeout, Airlock Microgateway will deliver an error page with the corresponding HTTP 503 status code.", "default": "120" }, "idle_session": { "type": ["integer", "null"], "description": "Defines the minimum session idle time in seconds for this mapping. The value will be ignored if minimum session idle timeout is smaller or equal to the global session idle timeout setting.", "default": "0" } }, "additionalProperties": false } }, "additionalProperties": false } }, "virtual_host": { "type": ["object", "null"], "properties": { "aliases": { "description": "Additional hostnames which refer to this virtual host.", "type": "array", "items": { "type": "string" } }, "auth": { "type": ["object", "null"], "properties": { "client_certificate": { "type": ["object", "null"], "properties": { "ca_selection": { "type": ["string", "null"], "description": "The concatenated certificates of the CAs which are sent to the client during the SSL handshake, in PEM format." }, "ca_selection_file": { "type": ["string", "null"], "description": "The file containing the selection CA certificates.", "default": "/secret/auth/client_certificate/selection.crt" }, "ca_validation": { "type": ["string", "null"], "description": "The concatenated certificates of the CAs which are used as trust anchor during chain validation, in PEM format." }, "ca_validation_file": { "type": ["string", "null"], "description": "The file containing the validation CA certificates.", "default": "/secret/auth/client_certificate/validation.crt" }, "crl": { "type": ["string", "null"], "description": "PEM representation of certificate revocation lists. If a client certificate is on such a list it will not be accepted. Although Airlock provides this functionality, it is recommended to check certificates against CRLs and other types of blacklists within the authentication service and not in Airlock." }, "crl_file": { "type": ["string", "null"], "description": "The file containing the crl.", "default": "/secret/auth/client_certificate/client.crl" }, "verification": { "type": "string", "enum": ["off", "optional", "required"], "description": "Defines the default verification mode for client certificates on this virtual host. Possible values are 'off', 'optional' or 'required'.", "default": "off" }, "verification_depth": { "type": "integer", "description": "Maximum number of intermediate certificate issuers.", "default": "1" } }, "additionalProperties": false } }, "additionalProperties": false }, "certificate": { "type": ["object", "null"], "properties": { "ca_chain": { "type": ["string", "null"], "description": "List of certificates of the CA chain for the certificate." }, "ca_chain_file": { "type": ["string", "null"], "description": "The CA chain file path.", "default": "/secret/tls/frontend-server-ca.crt" }, "certificate": { "type": ["string", "null"], "description": "The certificate in PEM format." }, "certificate_file": { "type": ["string", "null"], "description": "The certificate file path.", "default": "/secret/tls/frontend-server.crt" }, "privatekey": { "type": ["string", "null"], "description": "The private key for the certificate in PEM format." }, "privatekey_file": { "type": ["string", "null"], "description": "The private key file path", "default": "/secret/tls/frontend-server.key" } }, "additionalProperties": false }, "encoded_slashes": { "type": "boolean", "description": "Specifies whether encoded slashes (%2F) are allowed in URL path. Attention: combinations of client certificates per mapping and enabled encoded slashes in the same virtual host might result in configurations where client certificate evaluation might be evaded.", "default": "false" }, "expert_settings": { "$ref": "#/definitions/ExpertSettingsDto-nullable" }, "hostname": { "type": "string", "description": "The hostname of the virtual host.", "default": "microgateway" }, "http2_enabled": { "type": "boolean", "description": "Specifies whether HTTP/2 connections are enabled for this host.", "default": "true" }, "http_enabled": { "type": "boolean", "description": "Specifies whether HTTP connections are enabled for this host.", "default": "true" }, "http_port": { "type": "integer", "description": "Specifies the port on which this host listens for HTTP connections.", "default": "8080", "minimum": 1, "maximum": 65535 }, "https_enabled": { "type": "boolean", "description": "Specifies whether HTTPS connections are enabled for this host.", "default": "true" }, "https_port": { "type": "integer", "description": "Specifies the port on which this host listens for HTTPS connections.", "default": "8443", "minimum": 1, "maximum": 65535 }, "name": { "type": "string", "description": "The logical name of the virtual host.", "default": "microgateway" }, "redirects": { "type": ["array", "null"], "items": { "title": "redirect", "type": "object", "properties": { "dest": { "type": "string", "description": "The destination can be relative to the current virtual host or an absolute URL including protocol and host. Relative redirect paths are extended with the incoming scheme and host header.", "minLength": 1, "pattern": "^(http://|https://|ftp://|/)\\S*?$" }, "path": { "allOf": [ { "$ref": "#/definitions/PatternWithoutInvertDto" }, { "description": "The absolute path starting with '/' as a regular expression from which to redirect." } ] }, "status_code": { "type": "integer", "description": "The returned status code. Must be one of: [301, 302, 303, 307, 308]", "default": "303", "minimum": 301, "maximum": 308 } }, "required": ["dest", "path"], "additionalProperties": false } }, "session_cookie_domain": { "type": ["string", "null"], "description": "Specifies the domain for Airlock's session cookie if the cookie is created inside this virtual host." }, "session_cookie_path": { "type": "string", "description": "Specifies the cookie path for Airlock's session cookie if the cookie is created inside this virtual host.", "default": "/" }, "strict_fqdn": { "type": "boolean", "description": "Specifies whether a virtual host should reply only to requests that match the hostname or any of its server alias names.", "default": "false" } }, "additionalProperties": false } }, "additionalProperties": false } }, "deny_rule_groups": { "description": "Custom deny rule groups that can be referenced in mappings on top of the built in Airlock deny rules.", "type": "array", "items": { "title": "denied rule groups", "type": "object", "properties": { "deny_rules": { "description": "Filter rule that blocks requests based on the evaluation of different request attributes.", "type": "array", "items": { "title": "denied rules", "type": "object", "properties": { "content_type": { "$ref": "#/definitions/PatternDto-nullable" }, "header_name": { "$ref": "#/definitions/PatternDto-nullable" }, "header_value": { "$ref": "#/definitions/PatternDto-nullable" }, "method": { "$ref": "#/definitions/PatternDto-nullable" }, "name": { "type": "string", "description": "Unique name. In order to prevent overriding built-in deny rules, the name may not start with '(default)'.", "pattern": "^(?![ \\t\\n]*\\(default(.*)\\))[\\s\\S]*" }, "parameter_name": { "$ref": "#/definitions/PatternDto-nullable" }, "parameter_value": { "$ref": "#/definitions/PatternDto-nullable" }, "path": { "$ref": "#/definitions/PatternDto-nullable" }, "rule_key": { "type": "string", "description": "Unique short name. In order to prevent overriding built-in deny rules, the name may not start with '(default)'.", "pattern": "^(?![ \\t\\n]*\\(default(.*)\\))[\\s\\S]*" } }, "additionalProperties": false } }, "name": { "type": "string", "description": "Unique name. In order to prevent overriding built-in deny rule group, the name may not start with '(default)'.", "pattern": "^(?![ \\t\\n]*\\(default(.*)\\))[\\s\\S]*" }, "rule_group_key": { "type": "string", "description": "Unique short name. In order to prevent overriding built-in deny rule group, the name may not start with '(default)'.", "pattern": "^(?![ \\t\\n]*\\(default(.*)\\))[\\s\\S]*" } }, "additionalProperties": false } }, "expert_settings": { "$ref": "#/definitions/ExpertSettingsDto-nullable" }, "jwks_providers": { "type": ["object", "null"], "properties": { "local": { "description": "JWKS providers that are configured statically.", "default": "[]", "type": "array", "items": { "title": "provider", "type": "object", "properties": { "issuer": { "type": ["string", "null"], "description": "Name of JWKS issuer. Corresponds to the 'Issuer' field in JWT." }, "jwks": { "type": ["string", "null"], "description": "JSON Object that represents the set of JWKS." }, "jwks_file": { "type": ["string", "null"], "description": "JSON file with the definitions of JWKS." }, "name": { "type": "string", "description": "Name by which provider is referenced. Must be unique." } }, "required": ["name"], "additionalProperties": false, "default": "[]" } }, "refresh_interval": { "type": "integer", "description": "Refresh interval for fetching from remote JWKS providers in seconds.", "default": "86400" }, "remote": { "description": "Remote JWKS providers which are fetched according to the jwks_providers.refresh_interval.", "default": "[]", "type": "array", "items": { "title": "provider", "type": "object", "properties": { "issuer": { "type": ["string", "null"], "description": "Name of JWKS issuer. This value is used to restrict the usage of the JWKS to JWTs with a matching issuer (claim 'iss')." }, "name": { "type": "string", "description": "Name by which provider is referenced. Must be unique." }, "service_url": { "type": "string", "description": "URL of JWKS service provider." }, "tls": { "title": "tls", "type": "object", "properties": { "cipher_suite": { "type": "string", "description": "The TLS cipher suite to use. For documentation visit www.openssl.org and search for 'ciphers'.", "default": "DEFAULT" }, "client": { "type": ["object", "null"], "properties": { "ca_chain": { "type": ["string", "null"], "description": "List of certificates of the CA chain for the certificate." }, "ca_chain_file": { "type": ["string", "null"], "description": "The CA chain file path.", "default": "/secret/auth/jwks/tls/client/client-ca.crt" }, "certificate": { "type": ["string", "null"], "description": "The certificate in PEM format." }, "certificate_file": { "type": ["string", "null"], "description": "The certificate file path.", "default": "/secret/auth/jwks/tls/client/client.crt" }, "privatekey": { "type": ["string", "null"], "description": "The private key for the certificate in PEM format." }, "privatekey_file": { "type": ["string", "null"], "description": "The private key file path", "default": "/secret/auth/jwks/tls/client/client.key" } }, "additionalProperties": false }, "force_new_session": { "type": "boolean", "description": "Force new session for each request.", "default": "false" }, "protocol": { "type": "string", "enum": [ "DEFAULT", "TLSv1_0", "TLSv1_1", "TLSv1_2", "TLSv1_3" ], "description": "The TLS protocol to use. For the description of the default values see the Gateway documentation for 'Supported SSL/TLS versions'.", "default": "DEFAULT" }, "server": { "type": ["object", "null"], "properties": { "ca_validation": { "type": ["string", "null"], "description": "The concatenated certificates of the CAs which are used as trust anchor during chain validation, in PEM format." }, "ca_validation_file": { "type": ["string", "null"], "description": "The file containing the validation CA certificates.", "default": "/secret/auth/jwks/tls/server/server-validation.crt" }, "host_name_verification": { "type": "boolean", "description": "Verification which involves a server identity check to mitigate man in the middle attacks.", "default": "false" } }, "additionalProperties": false } }, "additionalProperties": false } }, "required": ["name", "service_url"], "additionalProperties": false, "default": "[]" } } }, "additionalProperties": false, "description": "JWKS Providers which can be referenced in apps[].mappings[].access_token." }, "license": { "type": ["string", "null"], "description": "The encoded license." }, "license_file": { "type": ["string", "null"], "description": "The license file path.", "default": "/secret/license" }, "log": { "type": ["object", "null"], "properties": { "level": { "type": "string", "enum": ["info", "trace"], "description": "Allowed values are: info, trace", "default": "info" } }, "additionalProperties": false }, "metrics": { "title": "metrics", "type": "object", "properties": { "statsd": { "title": "statsd", "type": "object", "properties": { "enabled": { "type": "boolean", "description": "Enable sending of statsd metrics. Default is 'true'", "default": "true" } }, "additionalProperties": false, "description": "Use this to enable sending metrics using the statsd protocol." } }, "additionalProperties": false, "description": "Configuration for metrics sending." }, "remote_ip": { "type": ["object", "null"], "properties": { "header": { "type": "string", "description": "If set, Airlock Microgateway will treat the value of this header field as the useragent IP address.<br />Common values are 'X-Forwarded-For' or 'X-Client-IP'.<br /><strong>Warning</strong>: Make sure that internal_proxies is correctly configured for your setup." }, "internal_proxies": { "description": "List of hostnames, IP addresses or IP address ranges (e.g. 10.0.0.0/8) to trust as presenting a valid Remote-IP header.", "type": "array", "items": { "type": "string" } } }, "required": ["header", "internal_proxies"], "additionalProperties": false }, "session": { "type": ["object", "null"], "properties": { "encryption_passphrase": { "type": ["string", "null"], "description": "Specifies the passphrase for the passphrase based encryption mechanism (PBE)." }, "encryption_passphrase_file": { "type": ["string", "null"], "description": "The path of the passphrase file.", "default": "/secret/passphrase" }, "idle_timeout": { "type": "integer", "description": "Specifies the amount of idle time in seconds, after which an Airlock Microgateway session is terminated. This timeout should be smaller than all other session timeouts of your back-end applications. Even if the timeout can be configured in seconds, per default the resolution of the idle session timeout check is 5 seconds only.", "default": "600" }, "lifetime": { "type": "integer", "description": "Specifies the absolute lifetime of an Airlock Microgateway session in seconds. After this time a session will be terminated.", "default": "28800" }, "redis_hosts": { "description": "Name of the hosts running the Redis Server.", "default": "[]", "type": "array", "items": { "type": "string", "default": "[]" } }, "store_mode": { "type": "string", "enum": ["server", "cluster", "disabled"], "description": "Defines the redis session store connection mode. By default, the Microgateway tries to determine the connection mode depending on the number of redis hosts configured:<br />- server mode if only one host is configured<br />- cluster mode if several hosts are configured<br /><br />Allowed values are: server, cluster and disabled." } }, "additionalProperties": false } }, "type": "object" }
airlock-microgateway-3
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Url schema", "type": "object", "properties": { "rates": { "type": "array", "items": { "type": "object", "properties": { "symbol": { "type": "string", "maximum": 3, "minimum": 3 }, "rate": { "type": "integer", "minimum": 1 } }, "required": [ "symbol", "rate" ] } } }, "required": [ "rates" ] }
o46922
{ "$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": [ "email_alert_signup" ] }, "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": [ "email_alert_signup" ] }, "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", "required": [ "subscriber_list", "summary" ], "additionalProperties": false, "properties": { "breadcrumbs": { "$ref": "#/definitions/email_alert_signup_breadcrumbs" }, "email_alert_type": { "type": "string", "enum": [ "topics", "policies", "countries" ] }, "govdelivery_title": { "type": "string" }, "subscriber_list": { "description": "The attributes used to match subscriber lists in email-alert-api", "type": "object", "minProperties": 1, "properties": { "document_type": { "description": "The document_type used to match subscribers lists", "type": "string" }, "links": { "description": "The links used to match subscribers lists", "type": "object", "additionalProperties": false, "maxProperties": 1, "patternProperties": { "^[a-z_]+$": { "type": "array" } } }, "tags": { "$ref": "#/definitions/tags" } } }, "summary": { "$ref": "#/definitions/email_alert_signup_summary" } } }, "email_alert_signup_breadcrumbs": { "description": "DEPRECATED. Breadcrumbs for email alert signup. Should use parent in links as other formats do.", "type": "array", "items": { "type": "object", "required": [ "link", "title" ], "additionalProperties": false, "properties": { "link": { "type": "string", "format": "uri" }, "title": { "type": "string" } } } }, "email_alert_signup_summary": { "description": "TODO: Use top-level description instead", "type": "string" }, "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 }, "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" ] } } }
o21199
{ "additionalProperties": false, "properties": { "id": { "type": "number" }, "message": { "type": "string" }, "warnings": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }
o13948
{ "anyOf": [ { "$ref": "#/definitions/SkaffoldConfig" } ], "definitions": { "Activation": { "additionalProperties": false, "description": "criteria by which a profile is auto-activated.", "preferredOrder": [ "env", "kubeContext", "command" ], "properties": { "command": { "description": "a Skaffold command for which the profile is auto-activated.", "examples": [ "dev" ], "type": "string", "x-intellij-html-description": "a Skaffold command for which the profile is auto-activated." }, "env": { "description": "a `key=value` pair. The profile is auto-activated if an Environment Variable `key` has value `value`.", "examples": [ "ENV=production" ], "type": "string", "x-intellij-html-description": "a <code>key=value</code> pair. The profile is auto-activated if an Environment Variable <code>key</code> has value <code>value</code>." }, "kubeContext": { "description": "a Kubernetes context for which the profile is auto-activated.", "examples": [ "minikube" ], "type": "string", "x-intellij-html-description": "a Kubernetes context for which the profile is auto-activated." } }, "x-intellij-html-description": "criteria by which a profile is auto-activated." }, "Artifact": { "anyOf": [ { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "description": "*alpha* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "docker" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "docker": { "$ref": "#/definitions/DockerArtifact", "description": "*beta* describes an artifact built from a Dockerfile.", "x-intellij-html-description": "<em>beta</em> describes an artifact built from a Dockerfile." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "description": "*alpha* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "bazel" ], "properties": { "bazel": { "$ref": "#/definitions/BazelArtifact", "description": "*beta* requires bazel CLI to be installed and the sources to contain [Bazel](https://bazel.build/) configuration files.", "x-intellij-html-description": "<em>beta</em> requires bazel CLI to be installed and the sources to contain <a href=\"https://bazel.build/\">Bazel</a> configuration files." }, "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "description": "*alpha* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "jibMaven" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "jibMaven": { "$ref": "#/definitions/JibMavenArtifact", "description": "*alpha* builds images using the [Jib plugin for Maven](https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin).", "x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin\">Jib plugin for Maven</a>." }, "sync": { "$ref": "#/definitions/Sync", "description": "*alpha* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "jibGradle" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "jibGradle": { "$ref": "#/definitions/JibGradleArtifact", "description": "*alpha* builds images using the [Jib plugin for Gradle](https://github.com/GoogleContainerTools/jib/tree/master/jib-gradle-plugin).", "x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/tree/master/jib-gradle-plugin\">Jib plugin for Gradle</a>." }, "sync": { "$ref": "#/definitions/Sync", "description": "*alpha* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "kaniko" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "kaniko": { "$ref": "#/definitions/KanikoArtifact", "description": "*alpha* builds images using [kaniko](https://github.com/GoogleContainerTools/kaniko).", "x-intellij-html-description": "<em>alpha</em> builds images using <a href=\"https://github.com/GoogleContainerTools/kaniko\">kaniko</a>." }, "sync": { "$ref": "#/definitions/Sync", "description": "*alpha* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "custom" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "custom": { "$ref": "#/definitions/CustomArtifact", "description": "*alpha* builds images using a custom build script written by the user.", "x-intellij-html-description": "<em>alpha</em> builds images using a custom build script written by the user." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "description": "*alpha* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified." } } } ], "description": "items that need to be built, along with the context in which they should be built.", "required": [ "image" ], "x-intellij-html-description": "items that need to be built, along with the context in which they should be built." }, "BazelArtifact": { "additionalProperties": false, "description": "*beta* describes an artifact built with [Bazel](https://bazel.build/).", "preferredOrder": [ "target", "args" ], "properties": { "args": { "default": "[]", "description": "additional args to pass to `bazel build`.", "examples": [ "[\"-flag\", \"--otherflag\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional args to pass to <code>bazel build</code>." }, "target": { "description": "`bazel build` target to run.", "examples": [ "//:skaffold_example.tar" ], "type": "string", "x-intellij-html-description": "<code>bazel build</code> target to run." } }, "required": [ "target" ], "x-intellij-html-description": "<em>beta</em> describes an artifact built with <a href=\"https://bazel.build/\">Bazel</a>." }, "BuildConfig": { "anyOf": [ { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy", "local" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "local": { "$ref": "#/definitions/LocalBuild", "description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.", "x-intellij-html-description": "<em>beta</em> describes how to do a build on the local docker daemon and optionally push to a repository." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy", "googleCloudBuild" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "googleCloudBuild": { "$ref": "#/definitions/GoogleCloudBuild", "description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/).", "x-intellij-html-description": "<em>beta</em> describes how to do a remote build on <a href=\"https://cloud.google.com/cloud-build/\">Google Cloud Build</a>." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy", "cluster" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "cluster": { "$ref": "#/definitions/ClusterDetails", "description": "*beta* describes how to do an on-cluster build.", "x-intellij-html-description": "<em>beta</em> describes how to do an on-cluster build." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } } ], "description": "contains all the configuration for the build steps.", "x-intellij-html-description": "contains all the configuration for the build steps." }, "ClusterDetails": { "additionalProperties": false, "description": "*beta* describes how to do an on-cluster build.", "preferredOrder": [ "pullSecret", "pullSecretName", "namespace", "timeout", "dockerConfig", "resources" ], "properties": { "dockerConfig": { "$ref": "#/definitions/DockerConfig", "description": "describes how to mount the local Docker configuration into a pod.", "x-intellij-html-description": "describes how to mount the local Docker configuration into a pod." }, "namespace": { "description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration.", "type": "string", "x-intellij-html-description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration." }, "pullSecret": { "description": "path to the Google Cloud service account secret key file.", "type": "string", "x-intellij-html-description": "path to the Google Cloud service account secret key file." }, "pullSecretName": { "default": "kaniko-secret", "description": "name of the Kubernetes secret for pulling the files from the build context and pushing the final image. If given, the secret needs to contain the Google Cloud service account secret key under the key `kaniko-secret`.", "type": "string", "x-intellij-html-description": "name of the Kubernetes secret for pulling the files from the build context and pushing the final image. If given, the secret needs to contain the Google Cloud service account secret key under the key <code>kaniko-secret</code>." }, "resources": { "$ref": "#/definitions/ResourceRequirements", "description": "define the resource requirements for the kaniko pod.", "x-intellij-html-description": "define the resource requirements for the kaniko pod." }, "timeout": { "description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (`20m`).", "type": "string", "x-intellij-html-description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (<code>20m</code>)." } }, "x-intellij-html-description": "<em>beta</em> describes how to do an on-cluster build." }, "CustomArtifact": { "additionalProperties": false, "description": "*alpha* describes an artifact built from a custom build script written by the user. It can be used to build images with builders that aren't directly integrated with skaffold.", "preferredOrder": [ "buildCommand", "dependencies" ], "properties": { "buildCommand": { "description": "command executed to build the image.", "type": "string", "x-intellij-html-description": "command executed to build the image." }, "dependencies": { "$ref": "#/definitions/CustomDependencies", "description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact.", "x-intellij-html-description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact." } }, "x-intellij-html-description": "<em>alpha</em> describes an artifact built from a custom build script written by the user. It can be used to build images with builders that aren't directly integrated with skaffold." }, "CustomDependencies": { "additionalProperties": false, "description": "*alpha* used to specify dependencies for an artifact built by a custom build script. Either `dockerfile` or `paths` should be specified for file watching to work as expected.", "preferredOrder": [ "dockerfile", "command", "paths", "ignore" ], "properties": { "command": { "description": "represents a custom command that skaffold executes to obtain dependencies. The output of this command *must* be a valid JSON array.", "type": "string", "x-intellij-html-description": "represents a custom command that skaffold executes to obtain dependencies. The output of this command <em>must</em> be a valid JSON array." }, "dockerfile": { "$ref": "#/definitions/DockerfileDependency", "description": "should be set if the artifact is built from a Dockerfile, from which skaffold can determine dependencies.", "x-intellij-html-description": "should be set if the artifact is built from a Dockerfile, from which skaffold can determine dependencies." }, "ignore": { "default": "[]", "description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both `paths` and in `ignore`, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with `paths`.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both <code>paths</code> and in <code>ignore</code>, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with <code>paths</code>." }, "paths": { "default": "[]", "description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization." } }, "x-intellij-html-description": "<em>alpha</em> used to specify dependencies for an artifact built by a custom build script. Either <code>dockerfile</code> or <code>paths</code> should be specified for file watching to work as expected." }, "DateTimeTagger": { "additionalProperties": false, "description": "*beta* tags images with the build timestamp.", "preferredOrder": [ "format", "timezone" ], "properties": { "format": { "default": "2006-01-02_15-04-05.999_MST", "description": "formats the date and time. See [#Time.Format](https://golang.org/pkg/time/#Time.Format).", "type": "string", "x-intellij-html-description": "formats the date and time. See <a href=\"https://golang.org/pkg/time/#Time.Format\">#Time.Format</a>." }, "timezone": { "description": "sets the timezone for the date and time. See [Time.LoadLocation](https://golang.org/pkg/time/#Time.LoadLocation). Defaults to the local timezone.", "type": "string", "x-intellij-html-description": "sets the timezone for the date and time. See <a href=\"https://golang.org/pkg/time/#Time.LoadLocation\">Time.LoadLocation</a>. Defaults to the local timezone." } }, "x-intellij-html-description": "<em>beta</em> tags images with the build timestamp." }, "DeployConfig": { "anyOf": [ { "additionalProperties": false }, { "additionalProperties": false, "preferredOrder": [ "helm" ], "properties": { "helm": { "$ref": "#/definitions/HelmDeploy", "description": "*beta* uses the `helm` CLI to apply the charts to the cluster.", "x-intellij-html-description": "<em>beta</em> uses the <code>helm</code> CLI to apply the charts to the cluster." } } }, { "additionalProperties": false, "preferredOrder": [ "kubectl" ], "properties": { "kubectl": { "$ref": "#/definitions/KubectlDeploy", "description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.", "x-intellij-html-description": "<em>beta</em> uses a client side <code>kubectl apply</code> to deploy manifests. You'll need a <code>kubectl</code> CLI version installed that's compatible with your cluster." } } }, { "additionalProperties": false, "preferredOrder": [ "kustomize" ], "properties": { "kustomize": { "$ref": "#/definitions/KustomizeDeploy", "description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.", "x-intellij-html-description": "<em>beta</em> uses the <code>kustomize</code> CLI to &quot;patch&quot; a deployment for a target environment." } } } ], "description": "contains all the configuration needed by the deploy steps.", "x-intellij-html-description": "contains all the configuration needed by the deploy steps." }, "DockerArtifact": { "additionalProperties": false, "description": "*beta* describes an artifact built from a Dockerfile, usually using `docker build`.", "preferredOrder": [ "dockerfile", "target", "buildArgs", "network", "cacheFrom", "noCache" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "arguments passed to the docker build.", "examples": [ "{\"key1\": \"value1\", \"key2\": \"value2\"}" ], "type": "object", "x-intellij-html-description": "arguments passed to the docker build." }, "cacheFrom": { "default": "[]", "description": "the Docker images used as cache sources.", "examples": [ "[\"golang:1.10.1-alpine3.7\", \"alpine:3.7\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the Docker images used as cache sources." }, "dockerfile": { "default": "Dockerfile", "description": "locates the Dockerfile relative to workspace.", "type": "string", "x-intellij-html-description": "locates the Dockerfile relative to workspace." }, "network": { "description": "passed through to docker and overrides the network configuration of docker builder. If unset, use whatever is configured in the underlying docker daemon. Valid modes are `host`: use the host's networking stack. `bridge`: use the bridged network configuration. `none`: no networking in the container.", "enum": [ "host", "bridge", "none" ], "type": "string", "x-intellij-html-description": "passed through to docker and overrides the network configuration of docker builder. If unset, use whatever is configured in the underlying docker daemon. Valid modes are <code>host</code>: use the host's networking stack. <code>bridge</code>: use the bridged network configuration. <code>none</code>: no networking in the container." }, "noCache": { "default": "false", "description": "used to pass in --no-cache to docker build to prevent caching.", "type": "boolean", "x-intellij-html-description": "used to pass in --no-cache to docker build to prevent caching." }, "target": { "description": "Dockerfile target name to build.", "type": "string", "x-intellij-html-description": "Dockerfile target name to build." } }, "x-intellij-html-description": "<em>beta</em> describes an artifact built from a Dockerfile, usually using <code>docker build</code>." }, "DockerConfig": { "additionalProperties": false, "description": "contains information about the docker `config.json` to mount.", "preferredOrder": [ "path", "secretName" ], "properties": { "path": { "description": "path to the docker `config.json`.", "type": "string", "x-intellij-html-description": "path to the docker <code>config.json</code>." }, "secretName": { "description": "Kubernetes secret that contains the `config.json` Docker configuration. Note that the expected secret type is not 'kubernetes.io/dockerconfigjson' but 'Opaque'.", "type": "string", "x-intellij-html-description": "Kubernetes secret that contains the <code>config.json</code> Docker configuration. Note that the expected secret type is not 'kubernetes.io/dockerconfigjson' but 'Opaque'." } }, "x-intellij-html-description": "contains information about the docker <code>config.json</code> to mount." }, "DockerfileDependency": { "additionalProperties": false, "description": "*alpha* used to specify a custom build artifact that is built from a Dockerfile. This allows skaffold to determine dependencies from the Dockerfile.", "preferredOrder": [ "path", "buildArgs" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax.", "examples": [ "{\"key1\": \"value1\", \"key2\": \"value2\", \"key3\": \"{{.ENV_VARIABLE}}\"}" ], "type": "object", "x-intellij-html-description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax." }, "path": { "description": "locates the Dockerfile relative to workspace.", "type": "string", "x-intellij-html-description": "locates the Dockerfile relative to workspace." } }, "x-intellij-html-description": "<em>alpha</em> used to specify a custom build artifact that is built from a Dockerfile. This allows skaffold to determine dependencies from the Dockerfile." }, "EnvTemplateTagger": { "additionalProperties": false, "description": "*beta* tags images with a configurable template string.", "preferredOrder": [ "template" ], "properties": { "template": { "description": "used to produce the image name and tag. See golang [text/template](https://golang.org/pkg/text/template/). The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section.", "examples": [ "{{.RELEASE}}-{{.IMAGE_NAME}}" ], "type": "string", "x-intellij-html-description": "used to produce the image name and tag. See golang <a href=\"https://golang.org/pkg/text/template/\">text/template</a>. The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section." } }, "required": [ "template" ], "x-intellij-html-description": "<em>beta</em> tags images with a configurable template string." }, "GitTagger": { "additionalProperties": false, "description": "*beta* tags images with the git tag or commit of the artifact's workspace.", "preferredOrder": [ "variant" ], "properties": { "variant": { "description": "determines the behavior of the git tagger. Valid variants are `Tags` (default): use git tags or fall back to abbreviated commit hash. `CommitSha`: use the full git commit sha. `AbbrevCommitSha`: use the abbreviated git commit sha. `TreeSha`: use the full tree hash of the artifact workingdir. `AbbrevTreeSha`: use the abbreviated tree hash of the artifact workingdir.", "enum": [ "Tags", "CommitSha", "AbbrevCommitSha", "TreeSha", "AbbrevTreeSha" ], "type": "string", "x-intellij-html-description": "determines the behavior of the git tagger. Valid variants are <code>Tags</code> (default): use git tags or fall back to abbreviated commit hash. <code>CommitSha</code>: use the full git commit sha. <code>AbbrevCommitSha</code>: use the abbreviated git commit sha. <code>TreeSha</code>: use the full tree hash of the artifact workingdir. <code>AbbrevTreeSha</code>: use the abbreviated tree hash of the artifact workingdir." } }, "x-intellij-html-description": "<em>beta</em> tags images with the git tag or commit of the artifact's workspace." }, "GoogleCloudBuild": { "additionalProperties": false, "description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/docs/). Docker and Jib artifacts can be built on Cloud Build. The `projectId` needs to be provided and the currently logged in user should be given permissions to trigger new builds.", "preferredOrder": [ "projectId", "diskSizeGb", "machineType", "timeout", "dockerImage", "mavenImage", "gradleImage" ], "properties": { "diskSizeGb": { "description": "disk size of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).", "type": "integer", "x-intellij-html-description": "disk size of the VM that runs the build. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions\">Cloud Build Reference</a>." }, "dockerImage": { "default": "gcr.io/cloud-builders/docker", "description": "image that runs a Docker build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Docker build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "gradleImage": { "default": "gcr.io/cloud-builders/gradle", "description": "image that runs a Gradle build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Gradle build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "machineType": { "description": "type of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).", "type": "string", "x-intellij-html-description": "type of the VM that runs the build. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions\">Cloud Build Reference</a>." }, "mavenImage": { "default": "gcr.io/cloud-builders/mvn", "description": "image that runs a Maven build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Maven build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "projectId": { "description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name `gcr.io/myproject/image`, Skaffold will use the `myproject` GCP project.", "type": "string", "x-intellij-html-description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name <code>gcr.io/myproject/image</code>, Skaffold will use the <code>myproject</code> GCP project." }, "timeout": { "description": "amount of time (in seconds) that this build should be allowed to run. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build).", "type": "string", "x-intellij-html-description": "amount of time (in seconds) that this build should be allowed to run. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build\">Cloud Build Reference</a>." } }, "x-intellij-html-description": "<em>beta</em> describes how to do a remote build on <a href=\"https://cloud.google.com/cloud-build/docs/\">Google Cloud Build</a>. Docker and Jib artifacts can be built on Cloud Build. The <code>projectId</code> needs to be provided and the currently logged in user should be given permissions to trigger new builds." }, "HelmConventionConfig": { "description": "image config in the syntax of image.repository and image.tag.", "x-intellij-html-description": "image config in the syntax of image.repository and image.tag." }, "HelmDeploy": { "additionalProperties": false, "description": "*beta* uses the `helm` CLI to apply the charts to the cluster.", "preferredOrder": [ "releases", "flags" ], "properties": { "flags": { "$ref": "#/definitions/HelmDeployFlags", "description": "additional option flags that are passed on the command line to `helm`.", "x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code>." }, "releases": { "description": "a list of Helm releases.", "items": { "$ref": "#/definitions/HelmRelease" }, "type": "array", "x-intellij-html-description": "a list of Helm releases." } }, "required": [ "releases" ], "x-intellij-html-description": "<em>beta</em> uses the <code>helm</code> CLI to apply the charts to the cluster." }, "HelmDeployFlags": { "additionalProperties": false, "description": "additional option flags that are passed on the command line to `helm`.", "preferredOrder": [ "global", "install", "upgrade" ], "properties": { "global": { "default": "[]", "description": "additional flags passed on every command.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on every command." }, "install": { "default": "[]", "description": "additional flags passed to (`helm install`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed to (<code>helm install</code>)." }, "upgrade": { "default": "[]", "description": "additional flags passed to (`helm upgrade`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed to (<code>helm upgrade</code>)." } }, "x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code>." }, "HelmFQNConfig": { "additionalProperties": false, "description": "image config to use the FullyQualifiedImageName as param to set.", "preferredOrder": [ "property" ], "properties": { "property": { "description": "defines the image config.", "type": "string", "x-intellij-html-description": "defines the image config." } }, "x-intellij-html-description": "image config to use the FullyQualifiedImageName as param to set." }, "HelmImageStrategy": { "anyOf": [ { "additionalProperties": false }, { "additionalProperties": false, "preferredOrder": [ "fqn" ], "properties": { "fqn": { "$ref": "#/definitions/HelmFQNConfig", "description": "image configuration uses the syntax `IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG`.", "x-intellij-html-description": "image configuration uses the syntax <code>IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "helm" ], "properties": { "helm": { "$ref": "#/definitions/HelmConventionConfig", "description": "image configuration uses the syntax `IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG`.", "x-intellij-html-description": "image configuration uses the syntax <code>IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG</code>." } } } ], "description": "adds image configurations to the Helm `values` file.", "x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file." }, "HelmPackaged": { "additionalProperties": false, "description": "parameters for packaging helm chart (`helm package`).", "preferredOrder": [ "version", "appVersion" ], "properties": { "appVersion": { "description": "sets the `appVersion` on the chart to this version.", "type": "string", "x-intellij-html-description": "sets the <code>appVersion</code> on the chart to this version." }, "version": { "description": "sets the `version` on the chart to this semver version.", "type": "string", "x-intellij-html-description": "sets the <code>version</code> on the chart to this semver version." } }, "x-intellij-html-description": "parameters for packaging helm chart (<code>helm package</code>)." }, "HelmRelease": { "additionalProperties": false, "description": "describes a helm release to be deployed.", "preferredOrder": [ "name", "chartPath", "valuesFiles", "values", "namespace", "version", "setValues", "setValueTemplates", "wait", "recreatePods", "skipBuildDependencies", "useHelmSecrets", "remote", "overrides", "packaged", "imageStrategy" ], "properties": { "chartPath": { "description": "path to the Helm chart.", "type": "string", "x-intellij-html-description": "path to the Helm chart." }, "imageStrategy": { "$ref": "#/definitions/HelmImageStrategy", "description": "adds image configurations to the Helm `values` file.", "x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file." }, "name": { "description": "name of the Helm release.", "type": "string", "x-intellij-html-description": "name of the Helm release." }, "namespace": { "description": "Kubernetes namespace.", "type": "string", "x-intellij-html-description": "Kubernetes namespace." }, "overrides": { "description": "key-value pairs. If present, Skaffold will build a Helm `values` file that overrides the original and use it to call Helm CLI (`--f` flag).", "x-intellij-html-description": "key-value pairs. If present, Skaffold will build a Helm <code>values</code> file that overrides the original and use it to call Helm CLI (<code>--f</code> flag)." }, "packaged": { "$ref": "#/definitions/HelmPackaged", "description": "parameters for packaging helm chart (`helm package`).", "x-intellij-html-description": "parameters for packaging helm chart (<code>helm package</code>)." }, "recreatePods": { "default": "false", "description": "if `true`, Skaffold will send `--recreate-pods` flag to Helm CLI.", "type": "boolean", "x-intellij-html-description": "if <code>true</code>, Skaffold will send <code>--recreate-pods</code> flag to Helm CLI." }, "remote": { "default": "false", "description": "specifies whether the chart path is remote, or exists on the host filesystem. `remote: true` implies `skipBuildDependencies: true`.", "type": "boolean", "x-intellij-html-description": "specifies whether the chart path is remote, or exists on the host filesystem. <code>remote: true</code> implies <code>skipBuildDependencies: true</code>." }, "setValueTemplates": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send `--set` flag to Helm CLI and append all parsed pairs after the flag.", "type": "object", "x-intellij-html-description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send <code>--set</code> flag to Helm CLI and append all parsed pairs after the flag." }, "setValues": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs. If present, Skaffold will send `--set` flag to Helm CLI and append all pairs after the flag.", "type": "object", "x-intellij-html-description": "key-value pairs. If present, Skaffold will send <code>--set</code> flag to Helm CLI and append all pairs after the flag." }, "skipBuildDependencies": { "default": "false", "description": "should build dependencies be skipped.", "type": "boolean", "x-intellij-html-description": "should build dependencies be skipped." }, "useHelmSecrets": { "default": "false", "description": "instructs skaffold to use secrets plugin on deployment.", "type": "boolean", "x-intellij-html-description": "instructs skaffold to use secrets plugin on deployment." }, "values": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs supplementing the Helm `values` file.", "type": "object", "x-intellij-html-description": "key-value pairs supplementing the Helm <code>values</code> file." }, "valuesFiles": { "default": "[]", "description": "paths to the Helm `values` files.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "paths to the Helm <code>values</code> files." }, "version": { "description": "version of the chart.", "type": "string", "x-intellij-html-description": "version of the chart." }, "wait": { "default": "false", "description": "if `true`, Skaffold will send `--wait` flag to Helm CLI.", "type": "boolean", "x-intellij-html-description": "if <code>true</code>, Skaffold will send <code>--wait</code> flag to Helm CLI." } }, "required": [ "name", "chartPath" ], "x-intellij-html-description": "describes a helm release to be deployed." }, "JSONPatch": { "additionalProperties": false, "description": "patch to be applied by a profile.", "preferredOrder": [ "op", "path", "from", "value" ], "properties": { "from": { "description": "source position in the yaml, used for `copy` or `move` operations.", "type": "string", "x-intellij-html-description": "source position in the yaml, used for <code>copy</code> or <code>move</code> operations." }, "op": { "default": "replace", "description": "operation carried by the patch: `add`, `remove`, `replace`, `move`, `copy` or `test`.", "type": "string", "x-intellij-html-description": "operation carried by the patch: <code>add</code>, <code>remove</code>, <code>replace</code>, <code>move</code>, <code>copy</code> or <code>test</code>." }, "path": { "description": "position in the yaml where the operation takes place. For example, this targets the `dockerfile` of the first artifact built.", "examples": [ "/build/artifacts/0/docker/dockerfile" ], "type": "string", "x-intellij-html-description": "position in the yaml where the operation takes place. For example, this targets the <code>dockerfile</code> of the first artifact built." }, "value": { "description": "value to apply. Can be any portion of yaml.", "x-intellij-html-description": "value to apply. Can be any portion of yaml." } }, "required": [ "path" ], "x-intellij-html-description": "patch to be applied by a profile." }, "JibGradleArtifact": { "additionalProperties": false, "description": "*alpha* builds images using the [Jib plugin for Gradle](https://github.com/GoogleContainerTools/jib/tree/master/jib-gradle-plugin).", "preferredOrder": [ "project", "args" ], "properties": { "args": { "default": "[]", "description": "additional build flags passed to Gradle.", "examples": [ "[\"--no-build-cache\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional build flags passed to Gradle." }, "project": { "description": "selects which Gradle project to build.", "type": "string", "x-intellij-html-description": "selects which Gradle project to build." } }, "x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/tree/master/jib-gradle-plugin\">Jib plugin for Gradle</a>." }, "JibMavenArtifact": { "additionalProperties": false, "description": "*alpha* builds images using the [Jib plugin for Maven](https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin).", "preferredOrder": [ "module", "profile", "args" ], "properties": { "args": { "default": "[]", "description": "additional build flags passed to Maven.", "examples": [ "[\"-x\", \"-DskipTests\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional build flags passed to Maven." }, "module": { "description": "selects which Maven module to build, for a multi module project.", "type": "string", "x-intellij-html-description": "selects which Maven module to build, for a multi module project." }, "profile": { "description": "selects which Maven profile to activate.", "type": "string", "x-intellij-html-description": "selects which Maven profile to activate." } }, "x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin\">Jib plugin for Maven</a>." }, "KanikoArtifact": { "additionalProperties": false, "description": "*alpha* describes an artifact built from a Dockerfile, with kaniko.", "preferredOrder": [ "flags", "dockerfile", "target", "buildArgs", "buildContext", "image", "cache" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax.", "examples": [ "{\"key1\": \"value1\", \"key2\": \"value2\", \"key3\": \"{{.ENV_VARIABLE}}\"}" ], "type": "object", "x-intellij-html-description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax." }, "buildContext": { "$ref": "#/definitions/KanikoBuildContext", "description": "where the build context for this artifact resides.", "x-intellij-html-description": "where the build context for this artifact resides." }, "cache": { "$ref": "#/definitions/KanikoCache", "description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.", "x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds." }, "dockerfile": { "default": "Dockerfile", "description": "locates the Dockerfile relative to workspace.", "type": "string", "x-intellij-html-description": "locates the Dockerfile relative to workspace." }, "flags": { "default": "[]", "description": "additional flags to be passed to Kaniko command line. See [Kaniko Additional Flags](https://github.com/GoogleContainerTools/kaniko#additional-flags). Deprecated - instead the named, unique fields should be used, e.g. `buildArgs`, `cache`, `target`.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags to be passed to Kaniko command line. See <a href=\"https://github.com/GoogleContainerTools/kaniko#additional-flags\">Kaniko Additional Flags</a>. Deprecated - instead the named, unique fields should be used, e.g. <code>buildArgs</code>, <code>cache</code>, <code>target</code>." }, "image": { "description": "Docker image used by the Kaniko pod. Defaults to the latest released version of `gcr.io/kaniko-project/executor`.", "type": "string", "x-intellij-html-description": "Docker image used by the Kaniko pod. Defaults to the latest released version of <code>gcr.io/kaniko-project/executor</code>." }, "target": { "description": "Dockerfile target name to build.", "type": "string", "x-intellij-html-description": "Dockerfile target name to build." } }, "x-intellij-html-description": "<em>alpha</em> describes an artifact built from a Dockerfile, with kaniko." }, "KanikoBuildContext": { "additionalProperties": false, "description": "contains the different fields available to specify a Kaniko build context.", "preferredOrder": [ "gcsBucket", "localDir" ], "properties": { "gcsBucket": { "description": "GCS bucket to which sources are uploaded. Kaniko will need access to that bucket to download the sources.", "type": "string", "x-intellij-html-description": "GCS bucket to which sources are uploaded. Kaniko will need access to that bucket to download the sources." }, "localDir": { "$ref": "#/definitions/LocalDir", "description": "configures how Kaniko mounts sources directly via an `emptyDir` volume.", "x-intellij-html-description": "configures how Kaniko mounts sources directly via an <code>emptyDir</code> volume." } }, "x-intellij-html-description": "contains the different fields available to specify a Kaniko build context." }, "KanikoCache": { "additionalProperties": false, "description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.", "preferredOrder": [ "repo", "hostPath" ], "properties": { "hostPath": { "description": "specifies a path on the host that is mounted to each pod as read only cache volume containing base images. If set, must exist on each node and prepopulated with kaniko-warmer.", "type": "string", "x-intellij-html-description": "specifies a path on the host that is mounted to each pod as read only cache volume containing base images. If set, must exist on each node and prepopulated with kaniko-warmer." }, "repo": { "description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See [Kaniko Caching](https://github.com/GoogleContainerTools/kaniko#caching).", "type": "string", "x-intellij-html-description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See <a href=\"https://github.com/GoogleContainerTools/kaniko#caching\">Kaniko Caching</a>." } }, "x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds." }, "KubectlDeploy": { "additionalProperties": false, "description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.", "preferredOrder": [ "manifests", "remoteManifests", "flags" ], "properties": { "flags": { "$ref": "#/definitions/KubectlFlags", "description": "additional flags passed to `kubectl`.", "x-intellij-html-description": "additional flags passed to <code>kubectl</code>." }, "manifests": { "default": "[\"k8s/*.yaml\"]", "description": "the Kubernetes yaml or json manifests.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the Kubernetes yaml or json manifests." }, "remoteManifests": { "default": "[]", "description": "Kubernetes manifests in remote clusters.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "Kubernetes manifests in remote clusters." } }, "x-intellij-html-description": "<em>beta</em> uses a client side <code>kubectl apply</code> to deploy manifests. You'll need a <code>kubectl</code> CLI version installed that's compatible with your cluster." }, "KubectlFlags": { "additionalProperties": false, "description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete).", "preferredOrder": [ "global", "apply", "delete" ], "properties": { "apply": { "default": "[]", "description": "additional flags passed on creations (`kubectl apply`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on creations (<code>kubectl apply</code>)." }, "delete": { "default": "[]", "description": "additional flags passed on deletions (`kubectl delete`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on deletions (<code>kubectl delete</code>)." }, "global": { "default": "[]", "description": "additional flags passed on every command.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on every command." } }, "x-intellij-html-description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete)." }, "KustomizeDeploy": { "additionalProperties": false, "description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.", "preferredOrder": [ "path", "flags" ], "properties": { "flags": { "$ref": "#/definitions/KubectlFlags", "description": "additional flags passed to `kubectl`.", "x-intellij-html-description": "additional flags passed to <code>kubectl</code>." }, "path": { "default": ".", "description": "path to Kustomization files.", "type": "string", "x-intellij-html-description": "path to Kustomization files." } }, "x-intellij-html-description": "<em>beta</em> uses the <code>kustomize</code> CLI to &quot;patch&quot; a deployment for a target environment." }, "LocalBuild": { "additionalProperties": false, "description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.", "preferredOrder": [ "push", "useDockerCLI", "useBuildkit" ], "properties": { "push": { "description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster.", "type": "boolean", "x-intellij-html-description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster." }, "useBuildkit": { "default": "false", "description": "use BuildKit to build Docker images.", "type": "boolean", "x-intellij-html-description": "use BuildKit to build Docker images." }, "useDockerCLI": { "default": "false", "description": "use `docker` command-line interface instead of Docker Engine APIs.", "type": "boolean", "x-intellij-html-description": "use <code>docker</code> command-line interface instead of Docker Engine APIs." } }, "x-intellij-html-description": "<em>beta</em> describes how to do a build on the local docker daemon and optionally push to a repository." }, "LocalDir": { "additionalProperties": false, "description": "configures how Kaniko mounts sources directly via an `emptyDir` volume.", "preferredOrder": [ "initImage" ], "properties": { "initImage": { "description": "image used to run init container which mounts kaniko context.", "type": "string", "x-intellij-html-description": "image used to run init container which mounts kaniko context." } }, "x-intellij-html-description": "configures how Kaniko mounts sources directly via an <code>emptyDir</code> volume." }, "PortForwardResource": { "additionalProperties": false, "description": "describes a resource to port forward.", "preferredOrder": [ "resourceType", "resourceName", "namespace", "port", "localPort" ], "properties": { "localPort": { "description": "local port to forward to. If the port is unavailable, Skaffold will choose a random open port to forward to. *Optional*.", "type": "integer", "x-intellij-html-description": "local port to forward to. If the port is unavailable, Skaffold will choose a random open port to forward to. <em>Optional</em>." }, "namespace": { "description": "namespace of the resource to port forward.", "type": "string", "x-intellij-html-description": "namespace of the resource to port forward." }, "port": { "description": "resource port that will be forwarded.", "type": "integer", "x-intellij-html-description": "resource port that will be forwarded." }, "resourceName": { "description": "name of the Kubernetes resource to port forward.", "type": "string", "x-intellij-html-description": "name of the Kubernetes resource to port forward." }, "resourceType": { "description": "Kubernetes type that should be port forwarded. Acceptable resource types include: `Service`, `Pod` and Controller resource type that has a pod spec: `ReplicaSet`, `ReplicationController`, `Deployment`, `StatefulSet`, `DaemonSet`, `Job`, `CronJob`.", "type": "string", "x-intellij-html-description": "Kubernetes type that should be port forwarded. Acceptable resource types include: <code>Service</code>, <code>Pod</code> and Controller resource type that has a pod spec: <code>ReplicaSet</code>, <code>ReplicationController</code>, <code>Deployment</code>, <code>StatefulSet</code>, <code>DaemonSet</code>, <code>Job</code>, <code>CronJob</code>." } }, "x-intellij-html-description": "describes a resource to port forward." }, "Profile": { "additionalProperties": false, "description": "*beta* profiles are used to override any `build`, `test` or `deploy` configuration.", "preferredOrder": [ "name", "build", "test", "deploy", "portForward", "patches", "activation" ], "properties": { "activation": { "description": "criteria by which a profile can be auto-activated. The profile is auto-activated if any one of the activations are triggered. An activation is triggered if all of the criteria (env, kubeContext, command) are triggered.", "items": { "$ref": "#/definitions/Activation" }, "type": "array", "x-intellij-html-description": "criteria by which a profile can be auto-activated. The profile is auto-activated if any one of the activations are triggered. An activation is triggered if all of the criteria (env, kubeContext, command) are triggered." }, "build": { "$ref": "#/definitions/BuildConfig", "description": "describes how images are built.", "x-intellij-html-description": "describes how images are built." }, "deploy": { "$ref": "#/definitions/DeployConfig", "description": "describes how images are deployed.", "x-intellij-html-description": "describes how images are deployed." }, "name": { "description": "a unique profile name.", "examples": [ "profile-prod" ], "type": "string", "x-intellij-html-description": "a unique profile name." }, "patches": { "description": "patches applied to the configuration. Patches use the JSON patch notation.", "items": { "$ref": "#/definitions/JSONPatch" }, "type": "array", "x-intellij-html-description": "patches applied to the configuration. Patches use the JSON patch notation." }, "portForward": { "description": "describes user defined resources to port-forward.", "items": { "$ref": "#/definitions/PortForwardResource" }, "type": "array", "x-intellij-html-description": "describes user defined resources to port-forward." }, "test": { "description": "describes how images are tested.", "items": { "$ref": "#/definitions/TestCase" }, "type": "array", "x-intellij-html-description": "describes how images are tested." } }, "required": [ "name" ], "x-intellij-html-description": "<em>beta</em> profiles are used to override any <code>build</code>, <code>test</code> or <code>deploy</code> configuration." }, "ResourceRequirement": { "additionalProperties": false, "description": "stores the CPU/Memory requirements for the pod.", "preferredOrder": [ "cpu", "memory" ], "properties": { "cpu": { "description": "the number cores to be used.", "examples": [ "2`, `2.0` or `200m" ], "type": "string", "x-intellij-html-description": "the number cores to be used." }, "memory": { "description": "the amount of memory to allocate to the pod.", "examples": [ "1Gi` or `1000Mi" ], "type": "string", "x-intellij-html-description": "the amount of memory to allocate to the pod." } }, "x-intellij-html-description": "stores the CPU/Memory requirements for the pod." }, "ResourceRequirements": { "additionalProperties": false, "description": "describes the resource requirements for the kaniko pod.", "preferredOrder": [ "requests", "limits" ], "properties": { "limits": { "$ref": "#/definitions/ResourceRequirement", "description": "[resource limits](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the Kaniko pod.", "x-intellij-html-description": "<a href=\"https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container\">resource limits</a> for the Kaniko pod." }, "requests": { "$ref": "#/definitions/ResourceRequirement", "description": "[resource requests](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the Kaniko pod.", "x-intellij-html-description": "<a href=\"https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container\">resource requests</a> for the Kaniko pod." } }, "x-intellij-html-description": "describes the resource requirements for the kaniko pod." }, "ResourceType": { "description": "describes the Kubernetes resource types used for port forwarding.", "type": "string", "x-intellij-html-description": "describes the Kubernetes resource types used for port forwarding." }, "ShaTagger": { "description": "*beta* tags images with their sha256 digest.", "x-intellij-html-description": "<em>beta</em> tags images with their sha256 digest." }, "SkaffoldConfig": { "additionalProperties": false, "description": "holds the fields parsed from the Skaffold configuration file (skaffold.yaml).", "preferredOrder": [ "apiVersion", "kind", "build", "test", "deploy", "portForward", "profiles" ], "properties": { "apiVersion": { "description": "version of the configuration.", "type": "string", "x-intellij-html-description": "version of the configuration." }, "build": { "$ref": "#/definitions/BuildConfig", "description": "describes how images are built.", "x-intellij-html-description": "describes how images are built." }, "deploy": { "$ref": "#/definitions/DeployConfig", "description": "describes how images are deployed.", "x-intellij-html-description": "describes how images are deployed." }, "kind": { "default": "Config", "description": "always `Config`.", "type": "string", "x-intellij-html-description": "always <code>Config</code>." }, "portForward": { "description": "describes user defined resources to port-forward.", "items": { "$ref": "#/definitions/PortForwardResource" }, "type": "array", "x-intellij-html-description": "describes user defined resources to port-forward." }, "profiles": { "description": "*beta* can override be used to `build`, `test` or `deploy` configuration.", "items": { "$ref": "#/definitions/Profile" }, "type": "array", "x-intellij-html-description": "<em>beta</em> can override be used to <code>build</code>, <code>test</code> or <code>deploy</code> configuration." }, "test": { "description": "describes how images are tested.", "items": { "$ref": "#/definitions/TestCase" }, "type": "array", "x-intellij-html-description": "describes how images are tested." } }, "required": [ "apiVersion", "kind" ], "x-intellij-html-description": "holds the fields parsed from the Skaffold configuration file (skaffold.yaml)." }, "Sync": { "additionalProperties": false, "description": "*alpha* specifies what files to sync into the container. This is a list of sync rules indicating the intent to sync for source files.", "preferredOrder": [ "manual" ], "properties": { "manual": { "description": "manual sync rules indicating the source and destination.", "items": { "$ref": "#/definitions/SyncRule" }, "type": "array", "x-intellij-html-description": "manual sync rules indicating the source and destination." } }, "x-intellij-html-description": "<em>alpha</em> specifies what files to sync into the container. This is a list of sync rules indicating the intent to sync for source files." }, "SyncRule": { "additionalProperties": false, "description": "specifies which local files to sync to remote folders.", "preferredOrder": [ "src", "dest", "strip" ], "properties": { "dest": { "description": "destination path in the container where the files should be synced to.", "examples": [ "\"app/\"" ], "type": "string", "x-intellij-html-description": "destination path in the container where the files should be synced to." }, "src": { "description": "a glob pattern to match local paths against. Directories should be delimited by `/` on all platforms.", "examples": [ "\"css/**/*.css\"" ], "type": "string", "x-intellij-html-description": "a glob pattern to match local paths against. Directories should be delimited by <code>/</code> on all platforms." }, "strip": { "description": "specifies the path prefix to remove from the source path when transplanting the files into the destination folder.", "examples": [ "\"css/\"" ], "type": "string", "x-intellij-html-description": "specifies the path prefix to remove from the source path when transplanting the files into the destination folder." } }, "required": [ "src", "dest" ], "x-intellij-html-description": "specifies which local files to sync to remote folders." }, "TagPolicy": { "additionalProperties": false, "description": "contains all the configuration for the tagging step.", "preferredOrder": [ "gitCommit", "sha256", "envTemplate", "dateTime" ], "properties": { "dateTime": { "$ref": "#/definitions/DateTimeTagger", "description": "*beta* tags images with the build timestamp.", "x-intellij-html-description": "<em>beta</em> tags images with the build timestamp." }, "envTemplate": { "$ref": "#/definitions/EnvTemplateTagger", "description": "*beta* tags images with a configurable template string.", "x-intellij-html-description": "<em>beta</em> tags images with a configurable template string." }, "gitCommit": { "$ref": "#/definitions/GitTagger", "description": "*beta* tags images with the git tag or commit of the artifact's workspace.", "x-intellij-html-description": "<em>beta</em> tags images with the git tag or commit of the artifact's workspace." }, "sha256": { "$ref": "#/definitions/ShaTagger", "description": "*beta* tags images with their sha256 digest.", "x-intellij-html-description": "<em>beta</em> tags images with their sha256 digest." } }, "x-intellij-html-description": "contains all the configuration for the tagging step." }, "TestCase": { "additionalProperties": false, "description": "a list of structure tests to run on images that Skaffold builds.", "preferredOrder": [ "image", "structureTests" ], "properties": { "image": { "description": "artifact on which to run those tests.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "artifact on which to run those tests." }, "structureTests": { "default": "[]", "description": "the [Container Structure Tests](https://github.com/GoogleContainerTools/container-structure-test) to run on that artifact.", "examples": [ "[\"./test/*\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the <a href=\"https://github.com/GoogleContainerTools/container-structure-test\">Container Structure Tests</a> to run on that artifact." } }, "required": [ "image" ], "x-intellij-html-description": "a list of structure tests to run on images that Skaffold builds." } }, "type": "object" }
o6352
{ "definitions": { "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_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "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": { "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.", "format": "int32", "type": [ "integer", "null" ] }, "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", "null" ] }, "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" }
kb_287_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema", "type": "object", "properties": { "$schema": { "enum": [ "https://raw.githubusercontent.com/lmazuel/swagger-to-sdk/master/swagger_to_sdk_config.schema.json" ] }, "meta": { "type": "object", "properties": { "version": { "enum": [ "0.2.0" ], "description": "The version must be 0.2.0" }, "after_scripts": { "type": "array", "items": { "type": "string", "minLength": 1 }, "description": "List of commands to execute after the generation is done. Will be executed in the order of the list. Current working directory will be the cloned path. See also \"envs\" node." }, "autorest_options": { "$ref": "#/definitions/autorest_options" }, "envs": { "type": "object", "patternProperties": { "sdkrel:.*": { "type": "string", "description": "All options prefixed by \"sdkrel:\" can be a relative path that will be solved against SDK folder before being sent to Autorest." } }, "additionalProperties": { "oneOf": [ { "type": "string" }, { "type": "boolean" }, { "type": "number" } ] }, "description": "Environment variables for after_scripts. All options prefixed by \"sdkrel:\" can be a relative path that will be solved against SDK folder before being sent to the scripts." }, "advanced_options": { "type": "object", "properties": { "clone_dir": { "type": "string", "minLength": 1, "description": "Add more layers of folders to clone the repo, if necessary. Right now, useful for Go only. \"sdkrel:\" will consider this as the final folder path." } }, "patternProperties": { "sdkrel:.*": { "$ref": "#/definitions/sdkrelProperty" } }, "description": "" }, "wrapper_filesOrDirs": { "$ref": "#/definitions/wrapper_filesOrDirs" }, "delete_filesOrDirs": { "$ref": "#/definitions/delete_filesOrDirs" }, "generated_relative_base_directory": { "$ref": "#/definitions/generated_relative_base_directory" } }, "additionalProperties": false, "required": [ "version" ] }, "projects": { "type": "object", "additionalProperties": { "type": "object", "properties": { "markdown": { "type": "string", "minLength": 1, "description": "This is an optional parameter which specificy the Autorest MD file path for this project. This is relative to the rest-folder paramter." }, "autorest_options": { "$ref": "#/definitions/autorest_options" }, "wrapper_filesOrDirs": { "$ref": "#/definitions/wrapper_filesOrDirs" }, "delete_filesOrDirs": { "$ref": "#/definitions/delete_filesOrDirs" }, "generated_relative_base_directory": { "$ref": "#/definitions/generated_relative_base_directory" }, "output_dir": { "type": "string", "minLength": 1, "description": "This is the folder in your SDK repository where you want to put the generated files." }, "build_dir": { "type": "string", "minLength": 1, "description": "This is an optional folder where to put metadata about the generation (Autorest version, date of generation, etc.). This can be used by our monitoring system to detect package that needs an update. Be sure this folder is unique in the entire file, to avoid overwritting a file from another project." } }, "additionalProperties": false, "description": "" }, "description": "It's a dict where keys are a project id. The project id has no constraint, but it's recommended to use namespace style, like \"datalake.store.account\" to provide the best flexibility for the --project parameter." } }, "additionalProperties": false, "required": [ "meta" ], "definitions": { "autorest_options": { "properties": { "verbose": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nShow verbose output information." }, "debug": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nShow internal debug information." }, "quiet": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nSuppress output." }, "list-installed": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nShow all installed versions of AutoRest tools." }, "list-available": { "type": "number", "minimum": 1, "default": 10, "description": "An option that will be passed to autorest.\nLists the last nn releases available from github." }, "version": { "type": "string", "minLength": 1, "description": "An option that will be passed to autorest.\nUses specified version of AutoRest (installing if necessary.)\nFor version you can use a version label (see --list-available) or\n-latest: Get latest nightly build.\n-latest-release: Get latest release version." }, "reset": { "enum": [ "" ], "description": "An option that will be passed to autorest.\nRemove all installed versions of AutoRest tools and install the latest (override with --version)." }, "runtime-id": { "type": "string", "minLength": 1, "description": "An option that will be passed to autorest.\nOverrides the platform detection for the dotnet runtime (special case). Refer to the Runtime Identifier (RID) catalog for more details." }, "input-file": { "type": "string", "minLength": 1, "description": "An option that will be passed to autorest.\nAdds the given file to the list of input files for generation process." }, "namespace": { "type": "string", "minLength": 1, "description": "An option that will be passed to autorest.\nSets the namespace to use for the generated code." }, "license-header": { "type": "string", "minLength": 1, "description": "An option that will be passed to autorest.\nText to include as a header comment in generated files. Use NONE to suppress the default header." }, "add-credentials": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nIf specified, the generated client includes a ServiceClientCredentials property and constructor parameter. Authentication behaviors are implemented by extending the ServiceClientCredentials type." }, "package-name": { "type": "string", "minLength": 1, "description": "An option that will be passed to autorest.\nName of the package." }, "package-version": { "type": "string", "minLength": 1, "description": "An option that will be passed to autorest.\nVersion of the package." }, "sync-methods": { "enum": [ "essential", "all", "none" ], "description": "An option that will be passed to autorest.\nSpecifies mode for generating sync wrappers. Supported value are:\nessential - generates only one sync returning body or header (default)\nall - generates one sync method for each async method\nnone - does not generate any sync methods" }, "payload-flattening-threshold": { "type": "number", "minimum": 1, "description": "An option that will be passed to autorest.\nThe maximum number of properties in the request body. If the number of properties in the request body is less than or equal to this value, these properties will be represented as method arguments." }, "override-client-name": { "type": "string", "minLength": 1, "description": "An option that will be passed to autorest.\nName to use for the generated client type. By default, uses the value of the 'Title' field from the input files." }, "use-internal-constructors": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nIndicates whether generated constructors will have an internal protection level." }, "use-datetimeoffset": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nIndicates whether to use DateTimeOffset instead of DateTime to model date-time types." }, "models-name": { "type": "string", "minLength": 1, "description": "An option that will be passed to autorest.\nName to use for the generated client models namespace and folder name. By default, uses the value of 'Models'. This is not currently supported by all code generators." }, "output-file": { "type": "string", "minLength": 1, "description": "An option that will be passed to autorest.\nIf set, will cause generated code to be output to a single file. Not supported by all code generators." }, "message-format": { "enum": [ "regular", "json" ], "description": "An option that will be passed to autorest.\nSpecifies the format, messages will be printed as. JSON format is easier to process programmatically." }, "azure-validator": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nIf set, runs the Azure specific validator plugin." }, "openapi-type": { "enum": [ "arm", "default", "data-plane" ], "description": "An option that will be passed to autorest.\nIndicates the type of configuration file being passed to the azure-validator so that it can run the appropriate class of validation rules accordingly." }, "model-validator": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nIf set, validates the provided OpenAPI definition(s) against provided examples." }, "semantic-validator": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nIf set, semantically verifies the provided OpenAPI definition(s), e.g. checks that a parameter's specified default value matches the parameter's declared type." }, "csharp": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nRuns the C# code generator." }, "nodejs": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nRuns the Node.js JavaScript code generator." }, "python": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nRuns the Python code generator." }, "java": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nRuns the Java code generator." }, "ruby": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nRuns the Ruby code generator." }, "go": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nRuns the Go code generator." }, "typescript": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nRuns the TypeScript code generator." }, "azureresourceschema": { "enum": [ "", true, false ], "description": "An option that will be passed to autorest.\nRuns the Azure Resource Schema code generator." }, "azure-arm": { "type": "boolean", "description": "An option that will be passed to autorest.\nUses the Azure version of the specified code generator." } }, "patternProperties": { "sdkrel:.*": { "$ref": "#/definitions/sdkrelProperty" } }, "additionalProperties": { "oneOf": [ { "type": "string", "description": "An option that will be passed to autorest." }, { "type": "boolean", "description": "An option that will be passed to autorest." }, { "type": "number", "description": "An option that will be passed to autorest." } ] }, "description": "An optional dictionary of options you want to pass to Autorest. This will be passed in any call, but can be override by \"autorest_options\" in each data. Note that you CAN'T override \"--output-folder\" which is filled contextually. All options prefixed by \"sdkrel:\" can be a relative path that will be solved against SDK folder before being sent to Autorest." }, "wrapper_filesOrDirs": { "type": "array", "items": { "type": "string", "description": "A file/directory that will be kept from the generated SDK." }, "description": "An optional list of files/directory to keep when we generate new SDK. This support a Bash-like wildcard syntax (i.e. '*/myfile?.py'). This applies to every Swagger files." }, "delete_filesOrDirs": { "type": "array", "items": { "type": "string", "description": "A file/directory that will be deleted from the generated SDK." }, "description": "An optional list of files/directory to delete from the generated SDK. This support a Bash-like wildcard syntax (i.e. '*/myfile?.py') This applies to every Swagger files." }, "generated_relative_base_directory": { "type": "string", "minLength": 1, "description": "If the data to consider generated by Autorest are not directly in the root folder. For instance, if Autorest generates a networkclient folder and you want to consider this folder as the root of data. This parameter is applied before 'delete_filesOrDirs', consider it in your paths. This applies to every Swagger files." }, "sdkrelProperty": { "type": "string", "description": "All options prefixed by \"sdkrel:\" can be a relative path that will be solved against SDK folder before being sent to Autorest." } } }
o57432
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Measure", "description": "Inches measurement, must be even number of feet", "type": "object", "properties": { "length": { "type": "integer", "minimum": 0, "multipleOf": 12 } } }
o83695
{ "properties": { "allowboundsvcremoval": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "builtin": { "enum": [ "MODIFIABLE", "DELETABLE", "IMMUTABLE", "PARTITION_ALL" ], "readonly": true, "type": "object" }, "consolidatedlconn": { "enum": [ "YES", "NO" ], "type": "string" }, "cookiepassphrase": { "type": "string" }, "dbsttl": { "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" }, "httponlycookieflag": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "maxpipelinenat": { "type": "integer" }, "monitorconnectionclose": { "enum": [ "RESET", "FIN" ], "type": "string" }, "monitorskipmaxclient": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "preferdirectroute": { "enum": [ "YES", "NO" ], "type": "string" }, "retainservicestate": { "enum": [ "ON", "OFF" ], "type": "string" }, "sessionsthreshold": { "readonly": true, "type": "integer" }, "startuprrfactor": { "type": "integer" }, "useencryptedpersistencecookie": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "useportforhashlb": { "enum": [ "YES", "NO" ], "type": "string" }, "usesecuredpersistencecookie": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "vserverspecificmac": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" } }, "title": "lbparameter", "type": "object" }
o30538
{ "$schema": "http://json-schema.org/draft-04/schema", "title": "Git LFS HTTPS Batch API v1 Response", "type": "object", "definitions": { "action": { "type": "object", "properties": { "href": { "type": "string" }, "header": { "type": "object", "additionalProperties": true }, "expires_at": { "type": "string" } }, "required": [ "href" ], "additionalProperties": false } }, "properties": { "objects": { "type": "array", "items": { "type": "object", "properties": { "oid": { "type": "string" }, "size": { "type": "number" }, "actions": { "type": "object", "properties": { "download": { "$ref": "#/definitions/action" }, "upload": { "$ref": "#/definitions/action" }, "verify": { "$ref": "#/definitions/action" } }, "additionalProperties": false }, "error": { "type": "object", "properties": { "code": { "type": "number" }, "message": { "type": "string" } }, "required": [ "code", "message" ], "additionalProperties": false } }, "required": [ "oid", "size" ], "additionalProperties": false } }, "message": { "type": "string" }, "request_id": { "type": "string" }, "documentation_url": { "type": "string" } }, "required": [ "objects" ], "additionalProperties": false }
o48454
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ServerAddressByClientCIDR": { "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.", "properties": { "clientCIDR": { "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.", "type": "string" }, "serverAddress": { "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.", "type": "string" } }, "required": [ "clientCIDR", "serverAddress" ], "type": "object" } }, "description": "APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API.", "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": [ "APIVersions" ], "type": [ "string", "null" ] }, "serverAddressByClientCIDRs": { "description": "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ServerAddressByClientCIDR" }, "type": [ "array", "null" ] }, "versions": { "description": "versions are the api versions that are available.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] } }, "required": [ "versions", "serverAddressByClientCIDRs" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "APIVersions", "version": "v1" } ] }
kb_40_Normalized
{ "properties": { "items": { "items": { "properties": { "name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "name", "quantity", "price" ], "type": "object" }, "type": "array" }, "order_number": { "description": "The order number", "type": "string" } }, "required": [ "order_number", "items" ], "type": "object" }
generate_invoice_aefb5465
{ "properties": { "event_date": { "description": "The date of the event (format: YYYY-MM-DD)", "type": "string" }, "event_location": { "description": "The location of the event", "type": "string" }, "event_time": { "description": "The time of the event (format: HH:MM AM/PM)", "type": "string" }, "event_title": { "description": "The title of the event", "type": "string" } }, "required": [ "event_title", "event_date", "event_time", "event_location" ], "type": "object" }
create_calendar_event_a356bc91
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://mkvtoolnix.download/doc/mkvmerge-identification-output-schema-v6.json", "title": "mkvmerge identification output", "description": "The JSON output produced by mkvmerge's file identification mode", "type": "object", "properties": { "attachments": { "description": "an array describing the attachments found if any", "type": "array", "items": { "type": "object", "properties": { "content_type": { "type": "string", "minLength": 1 }, "description": { "type": "string" }, "file_name": { "type": "string" }, "id": { "type": "integer", "minimum": 0 }, "size": { "type": "integer", "minimum": 0 }, "properties": { "type": "object", "properties": { "uid": { "type": "integer", "minimum": 0 } }, "additionalProperties": false }, "type": { "type": "string" } }, "additionalProperties": false, "required": [ "file_name", "id", "properties", "size" ] } }, "chapters": { "type": "array", "items": { "type": "object", "properties": { "num_entries": { "type": "integer" } }, "additionalProperties": false, "required": [ "num_entries" ] } }, "container": { "description": "information about the identified container", "type": "object", "properties": { "properties": { "description": "additional properties for the container varying by container format", "type": "object", "properties": { "container_type": { "description": "A unique number identifying the container type that's supposed to stay constant over all future releases of MKVToolNix", "type": "integer", "minLength": 1 }, "date_local": { "description": "The muxing date in ISO 8601 format (in local time zone)", "type": "string", "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}([+-][0-9]{2}:[0-9]{2}|Z)$" }, "date_utc": { "description": "The muxing date in ISO 8601 format (in UTC)", "type": "string", "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}([+-][0-9]{2}:[0-9]{2}|Z)$" }, "duration": { "description": "The file's/segment's duration in nanoseconds", "type": "integer", "minimum": 0 }, "is_providing_timecodes": { "description": "States whether or not the container has timestamps for the packets (e.g. Matroska, MP4) or not (e.g. SRT, MP3)", "type": "boolean" }, "muxing_application": { "description": "A Unicode string containing the name and possibly version of the low-level library or application that created the file", "type": "string" }, "next_segment_uid": { "description": "A hexadecimal string of the next segment's UID (only for Matroska files)", "type": "string", "minLength": 32, "maxLength": 32 }, "other_file": { "description": "An array of names of additional files processed as well", "type": "array", "items": { "type": "string" } }, "playlist": { "description": "States whether or not the identified file is a playlist (e.g. MPLS) referring to several other files", "type": "boolean" }, "playlist_chapters": { "description": "The number of chapters in a playlist if it is a one", "type": "integer", "minimum": 0 }, "playlist_duration": { "description": "The total duration in nanoseconds of all files referenced by the playlist if it is a one", "type": "integer", "minimum": 0 }, "playlist_file": { "description": "An array of file names the playlist contains", "type": "array", "items": { "type": "string" } }, "playlist_size": { "description": "The total size in bytes of all files referenced by the playlist if it is a one", "type": "integer", "minimum": 0 }, "previous_segment_uid": { "description": "A hexadecimal string of the previous segment's UID (only for Matroska files)", "type": "string", "minLength": 32, "maxLength": 32 }, "segment_uid": { "description": "A hexadecimal string of the segment's UID (only for Matroska files)", "type": "string", "minLength": 32, "maxLength": 32 }, "title": { "type": "string" }, "writing_application": { "description": "A Unicode string containing the name and possibly version of the high-level application that created the file", "type": "string" } }, "additionalProperties": false }, "recognized": { "description": "States whether or not mkvmerge knows about the format", "type": "boolean" }, "supported": { "description": "States whether or not mkvmerge can read the format", "type": "boolean" }, "type": { "description": "A human-readable description/name for the container format", "type": "string", "minLength": 1 } }, "additionalProperties": false, "required": [ "recognized", "supported" ] }, "errors": { "type": "array", "items": { "type": "string" } }, "file_name": { "description": "the identified file's name", "type": "string", "minLength": 1 }, "global_tags": { "type": "array", "items": { "type": "object", "properties": { "num_entries": { "type": "integer" } }, "additionalProperties": false, "required": [ "num_entries" ] } }, "identification_format_version": { "description": "The output format's version", "type": "integer", "minimum": 6, "maximum": 6 }, "track_tags": { "type": "array", "items": { "type": "object", "properties": { "num_entries": { "type": "integer" }, "track_id": { "type": "integer" } }, "additionalProperties": false, "required": [ "num_entries", "track_id" ] } }, "tracks": { "type": "array", "items": { "type": "object", "properties": { "codec": { "type": "string", "minLength": 1 }, "id": { "type": "integer", "minLength": 0 }, "type": { "type": "string" }, "properties": { "type": "object", "properties": { "aac_is_sbr": { "type": "string", "enum": [ "true", "false", "unknown" ] }, "audio_bits_per_sample": { "type": "integer", "minimum": 0 }, "audio_channels": { "type": "integer", "minimum": 0 }, "audio_sampling_frequency": { "type": "integer", "minimum": 0 }, "codec_delay": { "type": "integer" }, "codec_id": { "type": "string" }, "codec_private_data": { "type": "string" }, "codec_private_length": { "type": "integer", "minimum": 0 }, "content_encoding_algorithms": { "type": "string", "minLength": 1 }, "default_duration": { "type": "integer", "minimum": 0 }, "default_track": { "type": "boolean" }, "display_dimensions": { "type": "string", "pattern": "^[0-9]+x[0-9]+$" }, "enabled_track": { "type": "boolean" }, "forced_track": { "type": "boolean" }, "language": { "type": "string" }, "minimum_timestamp": { "description": "The minimum timestamp in nanoseconds of all the frames of this track found within the first couple of seconds of the file", "type": "integer", "minimum": 0 }, "multiplexed_tracks": { "description": "An array of track IDs indicating which tracks were originally multiplexed within the same track in the source file", "type": "array", "items": { "type": "integer", "minimum": 0 } }, "number": { "type": "integer", "minimum": 0 }, "packetizer": { "type": "string", "minLength": 1 }, "pixel_dimensions": { "type": "string", "pattern": "^[0-9]+x[0-9]+$" }, "stereo_mode": { "type": "integer", "minimum": 0 }, "stream_id": { "type": "string", "pattern": "^[0-9a-f]{2}$" }, "sub_stream_id": { "type": "string", "pattern": "^[0-9a-f]{2}$" }, "tag_artist": { "type": "string" }, "tag_bitsps": { "type": "string" }, "tag_bps": { "type": "string" }, "tag_fps": { "type": "string" }, "tag_title": { "type": "string" }, "teletext_page": { "type": "integer", "minimum": 0 }, "text_subtitles": { "type": "boolean" }, "track_name": { "type": "string" }, "ts_pid": { "type": "integer", "minimum": 0 }, "uid": { "type": "integer", "minimum": 0 } }, "additionalProperties": false } }, "additionalProperties": false, "required": [ "codec", "id", "type" ] } }, "warnings": { "type": "array", "items": { "type": "string" } } } }
o81133
{ "properties": { "dimensions": { "dependencies": { "shape": [ "circle", "rectangle" ] }, "properties": { "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" ], "type": "object" }, "shape": { "description": "The shape (e.g. circle, rectangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_01d19dbe
{ "$schema": "http://json-schema.org/draft-04/schema", "title": "Namespace Value Resource", "description": "A single namespace value within a BEL Namespace.", "type": "object", "additionalProperties": false, "required": [ "namespace_value" ], "properties": { "namespace_value": { "type": "object", "additionalProperties": false, "required": [ "type", "identifier", "name", "title", "species" ], "properties": { "type": { "type": "string" }, "identifier": { "type": "string" }, "name": { "type": "string" }, "title": { "type": [ "null", "string" ] }, "species": { "type": [ "null", "string" ] }, "match_text": { "type": "string" } } } } }
o63151
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "columnConfigs": { "type": "array", "items": { "type": "object", "properties": { "formatter": { "type": "object", "properties": { "format": { "type": "string" }, "scale": { "type": "number" }, "chartType": { "type": "string" } } }, "displayName": { "type": "string" }, "columnId": { "type": "string" }, "columnType": { "type": "string" } }, "required": [ "columnId", "columnType" ] } }, "config": { "type": "object", "properties": { "chartType": { "type": "string" } }, "required": [ "chartType" ] }, "model": { "type": "object", "properties": { "columns": { "type": "array", "items": { "type": "string" } }, "datasets": { "type": "array", "items": { "type": "string" } }, "filters": { "type": "array", "items": { "type": "object", "properties": { "column": { "type": "string" }, "exposed": { "type": "integer", "default": 0 }, "name": { "type": "string" }, "value": { "type": "array", "items": { "oneOf": [ { "type": "string" }, { "type": "number" }, { "type": "null" } ] } }, "operator": { "type": "string" } }, "required": [ "column", "exposed", "name" ] } }, "orderBy": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "column": { "type": "string" }, "order": { "type": "string", "default": "asc" } }, "required": [ "id", "column", "order" ] } }, "limit": { "type": "integer" }, "offset": { "type": "integer" }, "columnOrder": { "type": "array", "items": { "type": "string" } } } }, "visual": { "type": "object", "properties": { "series": { "type": "array", "items": { "type": "object", "properties": { "columnId": { "type": "string" }, "options": { "type": "object", "properties": { "displayDataLabels": { "type": "boolean", "default": true }, "displayTitle": { "type": "boolean", "default": true }, "displayMarkers": { "type": "boolean", "default": true }, "title": { "type": "string" } }, "required": [ "displayDataLabels", "displayTitle", "displayMarkers" ] }, "colorScheme": { "type": "string" }, "color": { "type": "string" } }, "required": [ "columnId" ] } }, "traffic": { "type": "array", "items": { "type": "object", "properties": {} } }, "displayChartTitle": { "type": "boolean", "default": true }, "displayReportMenu": { "type": "boolean", "default": true }, "displayBorder": { "type": "boolean", "default": false }, "displayLegend": { "type": "boolean", "default": false }, "stack": { "type": "boolean", "default": false }, "displaySeries": { "type": "boolean", "default": false }, "displayGridLines": { "type": "boolean", "default": true }, "displayTooltip": { "type": "boolean", "default": true }, "displayXAxisTitle": { "type": "boolean", "default": true }, "labelRotation": { "type": "integer", "enum": [ -90, -45, 0, 45, 90 ], "default": -45 }, "displayXAxisTitleValue": { "type": "string" }, "fontSize": { "type": "string", "default": "Medium" }, "targetLine": { "type": "boolean", "default": false }, "targetLineValue": { "type": "number" }, "targetLineColor": { "type": "string", "format": "color" }, "minNumericSpan": { "type": "string", "default": "Auto" }, "tickInterval": { "type": "string", "default": "auto" }, "tickIntervalValue": { "type": "string" } }, "required": [ "displayChartTitle", "displayReportMenu" ] } }, "required": [ "columnConfigs", "config", "model", "visual" ] }
o13151
{ "$schema": "http://json-schema.org/draft-04/schema#", "properties": { "company": { "description": "e.g. Google or Pied Piper", "type": "string" }, "jobs": { "description": "list of jobs", "items": { "properties": { "apply": { "description": "How to apply? url or email", "type": "string" }, "description": { "description": "You will help us build API for our compression infrastructure.", "type": "string" }, "equity": { "description": "Stock/Options grant range(inclusive) from 0.0 to 1.0", "type": "object" }, "location": { "description": "If empty, location is whole world(remote job), if region is US, Europe etc. it means the remote job is restricted to particular area. Exact location indicates that job is not remote(possible Working From Home).", "type": "string" }, "perks": { "description": "list of perks e.g. ['free food', 'gym membership']", "type": "array" }, "position": { "description": "e.g. Software Engineer or Marketing", "type": "string" }, "posted": { "_format": "date", "description": "ISO 8601 date standard e.g. 2015-01-30", "type": "string" }, "salaryRange": { "description": "Salary range in ISO_4217 format(inclusive)", "type": "object" }, "skills": { "description": "list of skills e.g. ['Javascript', 'Angular.js', 'CSS']", "type": "array" }, "title": { "description": "e.g. Backend Developer or UX Designer", "type": "string" }, "type": { "description": "Full Time, Contract, Cofounder, Internship", "type": "string" }, "url": { "_format": "uri", "description": "URL (as per RFC 3986) to company website, e.g. http://piedpiper.com/jobs/frontend-developer", "type": "string" } }, "type": "object" }, "type": "array" }, "market": { "description": "What is the company target market e.g. SaaS, E-commerce", "type": "string" }, "remoteFriendly": { "description": "If company has a remote DNA. Company embrace remote work and this is ongoing practice", "type": "boolean" }, "size": { "description": "Size of the company. Possible options(inclusive): 1-10, 10-50, 50-200, 200-1000, 1000-5000, 5000+", "type": "string" }, "url": { "_format": "uri", "description": "URL (as per RFC 3986) to company website, e.g. http://piedpiper.com/", "type": "string" } }, "required": [ "company", "url", "remoteFriendly", "market", "size", "jobs" ], "title": "Job Post Schema", "type": "object" }
o57757
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Dashboards", "type": "object", "properties": { "name": { "type": "string" }, "layout": { "type": "object", "properties": { "^\\w+$": { "type": "object", "properties": { "col": { "type": "number" }, "row": { "type": "number" }, "size_x": { "type": "number" } }, "required": [ "col", "row", "size_x" ] } } } }, "required": [ "name" ] }
o74592
{ "properties": { "client_name": { "description": "The name of the client", "type": "string" }, "items": { "items": { "properties": { "name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price per item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "client_name", "items" ], "type": "object" }
create_invoice_f657de16
{ "id": "https://cdn.brytecore.com/packages/schemas/address.json", "$schema": "http://json-schema.org/draft-04/schema#", "description": "A mailing address", "type": "object", "properties": { "streetAddress": { "type": [ "string", "null" ] }, "streetAddress2": { "type": [ "string", "null" ] }, "city": { "type": [ "string", "null" ] }, "county": { "type": [ "string", "null" ] }, "stateProvince": { "type": [ "string", "null" ] }, "postalCode": { "type": [ "string", "null" ] } } }
o2460
{ "properties": { "customer_name": { "description": "The name of the customer", "type": "string" }, "items": { "description": "The items in the transaction", "items": { "properties": { "name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "name", "quantity", "price" ], "type": "object" }, "type": "array" }, "transaction_id": { "description": "The ID of the transaction", "type": "string" } }, "required": [ "customer_name", "transaction_id", "items" ], "type": "object" }
generate_invoice_66cf7be8
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySelectorLabelRequirement": { "description": "A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future.", "properties": { "key": { "description": "The label key that the selector applies to.", "type": "string" }, "values": { "description": "An array of string values. One value must match the label to be selected. Each entry in Values is ORed.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "values" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySelectorTerm": { "description": "A topology selector term represents the result of label queries. A null or empty topology selector term matches no objects. The requirements of them are ANDed. It provides a subset of functionality as NodeSelectorTerm. This is an alpha feature and may change in the future.", "properties": { "matchLabelExpressions": { "description": "A list of topology selector requirements by labels.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySelectorLabelRequirement" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_StorageClass": { "description": "StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.\n\nStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.", "properties": { "allowVolumeExpansion": { "description": "AllowVolumeExpansion shows whether the storage class allow volume expand", "type": "boolean" }, "allowedTopologies": { "description": "Restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySelectorTerm" }, "type": "array" }, "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": "string" }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "StorageClass" ], "type": "string" }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "mountOptions": { "description": "Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. [\"ro\", \"soft\"]. Not validated - mount of the PVs will simply fail if one is invalid.", "items": { "type": "string" }, "type": "array" }, "parameters": { "additionalProperties": { "type": "string" }, "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class.", "type": "object" }, "provisioner": { "description": "Provisioner indicates the type of the provisioner.", "type": "string" }, "reclaimPolicy": { "description": "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.", "type": "string" }, "volumeBindingMode": { "description": "VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.", "type": "string" } }, "required": [ "provisioner" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "StorageClass", "version": "v1beta1" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": { "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", "properties": { "continue": { "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.", "type": "string" }, "remainingItemCount": { "_format": "int64", "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.", "type": "integer" }, "resourceVersion": { "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "StorageClassList is a collection of storage classes.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "storage.k8s.io/v1beta1" ], "type": [ "string", "null" ] }, "items": { "description": "Items is the list of StorageClasses", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_StorageClass" }, "type": [ "array", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "StorageClassList" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "StorageClassList", "version": "v1beta1" } ] }
kb_1030_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "vorgaenger": { "type": "array", "items": { "type": "string" } }, "warteart": { "type": "string", "enum": [ "beginn", "ende" ], "default": "beginn" }, "rechner": { "type": "string" }, "wartezeit": { "type": "string" } }, "required": [ "vorgaenger" ] }
o79711
{ "id": "http://schemas.gdbots.io/json-schema/gdbots/ncr/mixin/edge/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "from_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$" }, "to_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$" }, "multiplicity": { "type": "string", "default": "multi", "enum": [ "unknown", "multi", "simple", "many2one", "one2many", "one2one" ] }, "created_at": { "type": "string", "pattern": "^[1-9]{1}[0-9]{12,15}$" } }, "required": [ "from_ref", "to_ref" ], "additionalProperties": true }
o42792
{ "properties": { "backuplbmethod": { "enum": [ "ROUNDROBIN", "LEASTCONNECTION", "LEASTRESPONSETIME", "SOURCEIPHASH", "LEASTBANDWIDTH", "LEASTPACKETS", "STATICPROXIMITY", "RTT", "CUSTOMLOAD", "API" ], "readonly": true, "type": "string" }, "cip": { "enum": [ "ENABLED", "DISABLED" ], "readonly": true, "type": "string" }, "customheaders": { "readonly": true, "type": "string" }, "dnsrecordtype": { "enum": [ "A", "AAAA", "CNAME", "NAPTR" ], "readonly": true, "type": "string" }, "dynamicweight": { "enum": [ "SERVICECOUNT", "SERVICEWEIGHT", "DISABLED" ], "readonly": true, "type": "string" }, "edr": { "enum": [ "ENABLED", "DISABLED" ], "readonly": true, "type": "string" }, "lbmethod": { "enum": [ "ROUNDROBIN", "LEASTCONNECTION", "LEASTRESPONSETIME", "SOURCEIPHASH", "LEASTBANDWIDTH", "LEASTPACKETS", "STATICPROXIMITY", "RTT", "CUSTOMLOAD", "API" ], "readonly": true, "type": "string" }, "mir": { "enum": [ "ENABLED", "DISABLED" ], "readonly": true, "type": "string" }, "name": { "type": "string" }, "netmask": { "readonly": true, "type": "string" }, "persistenceid": { "readonly": true, "type": "integer" }, "persistencetype": { "enum": [ "SOURCEIP", "NONE" ], "readonly": true, "type": "string" }, "persistmask": { "readonly": true, "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" ], "readonly": true, "type": "string" }, "sitename": { "readonly": true, "type": "string" }, "sitepersistence": { "enum": [ "ConnectionProxy", "HTTPRedirect", "NONE" ], "readonly": true, "type": "string" }, "siteprefix": { "readonly": true, "type": "string" }, "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" }, "statechangetimesec": { "readonly": true, "type": "string" }, "v6netmasklen": { "readonly": true, "type": "integer" }, "v6persistmasklen": { "readonly": true, "type": "integer" }, "vservername": { "type": "string" } }, "title": "gslbdomain_gslbvserver_binding", "type": "object" }
o30467
{ "description": "A **PDF Manager batch** represents the asynchronous execution and eventual population of a **PDF Manager template**, resulting in **PDF Manager zip files**.", "links": [ { "description": "Display existing batch with download URL.", "href": "/api/v1/user_identities/:user_identity_id/pdf_manager_batches/:pdf_manager_batch_id", "http_header": { "x-api-key": "0123456789abcdef0123456789abcdef" }, "method": "GET", "rel": "self", "title": "Show" }, { "description": "List existing batches. As there could potentially be a large number of `download_hrefs`, they are not displayed in this response.", "href": "/api/v1/user_identities/:user_identity_id/pdf_manager_batches", "http_header": { "x-api-key": "0123456789abcdef0123456789abcdef" }, "method": "GET", "rel": "instances", "targetSchema": { "properties": { "href": { "description": "Hypertext reference to this resource.", "example": "/api/v1/user_identities/1/pdf_manager_batches", "pattern": "/api/v1/user_identities/\\d+/pdf_manager_batches", "type": "string" }, "pdf_manager_batches": { "items": { "properties": { "href": { "example": "/api/v1/user_identities/1/pdf_manager_batches/2", "pattern": "/api/v1/user_identities/\\d+/pdf_manager_batches/\\d+", "type": "string" }, "id": { "example": 2, "type": "integer" }, "pdf_manager_template": { "properties": { "href": { "example": "/api/v1/user_identities/1/pdf_manager_templates/2", "pattern": "/api/v1/user_identities/\\d+/pdf_manager_templates/\\d+", "type": "string" }, "id": { "example": 2, "type": "integer" }, "name": { "example": "Accepted Offers for Review", "type": "string" } }, "required": [ "id", "name", "href" ], "type": "object" }, "state": { "enum": [ "initializing", "queued", "in_progress", "available", "success_with_errors", "empty_list", "failed" ], "example": "success_with_errors", "type": "string" }, "updated_at": { "example": "2016-01-05T16:51:00Z", "format": "date-time", "pattern": "\\d\\d\\d\\d-\\d\\d-\\d\\dT\\d\\d:\\d\\d:\\d\\dZ", "type": "string" } }, "required": [ "id", "updated_at", "state", "pdf_manager_template" ], "type": "object" }, "type": "array" } } }, "title": "List" }, { "description": "Initiate the creation of a batch from a template. If you attempt to run the same batch several times in close succession, you will receive the id of the already-running instance of that batch. This is a safeguard to prevent many accidental simultaneous runs of the exact same batch: one must finish before a new one can be initiated.", "href": "/api/v1/user_identities/:user_identity_id/pdf_manager_batches", "http_header": { "x-api-key": "0123456789abcdef0123456789abcdef" }, "method": "POST", "rel": "create", "schema": { "properties": { "pdf_manager_batch": { "properties": { "callback": { "description": "When the batch is completed, WebAdMIT will `POST` to this callback URL. The JSON in the callback body uses the same schema as the GET request.", "example": "https://example.com/my_callback", "format": "uri", "pattern": "^https://", "type": "string" }, "pdf_manager_template_id": { "description": "Unique identifier of the template.", "example": 2, "type": "integer" } }, "required": [ "pdf_manager_template_id" ], "type": "object" } }, "type": "object" }, "title": "Initiate Run" } ], "properties": { "pdf_manager_batch": { "properties": { "download_hrefs": { "comment": "FIXME: Include `items`. See https://github.com/interagent/prmd/issues/275", "description": "When `state` is `\"available\"` or `\"success_with_errors\"`, this is an array of hrefs that can be requested with an API key for downloading the generated PDF files. Otherwise, this is `[]`.", "example": [ "/api/v1/user_identities/1/pdf_manager_zip_files/2/download", "/api/v1/user_identities/1/pdf_manager_zip_files/3/download" ], "type": "array" }, "href": { "description": "Hypertext reference to this resource.", "example": "/api/v1/user_identities/1/pdf_manager_batches/2", "pattern": "/api/v1/user_identities/\\d+/pdf_manager_batches/\\d+", "type": "string" }, "id": { "description": "Unique identifier of this batch.", "type": "integer" }, "pdf_manager_template": { "properties": { "href": { "description": "Hypertext reference to the template.", "example": "/api/v1/user_identities/1/pdf_manager_templates/2", "pattern": "/api/v1/user_identities/\\d+/pdf_manager_templates/\\d+", "type": "string" }, "id": { "description": "Unique identifier of the template.", "example": 2, "type": "integer" }, "name": { "description": "Human-readable name of this PDF Manager template.", "example": "Accepted Offers for Review", "type": "string" } }, "required": [ "id", "name", "href" ], "type": "object" }, "state": { "description": "Current state of this batch.", "enum": [ "initializing", "queued", "in_progress", "available", "success_with_errors", "empty_list", "failed" ], "example": "success_with_errors", "type": "string" }, "updated_at": { "description": "Time that this batch was last updated.", "example": "2016-01-05T16:51:00Z", "format": "date-time", "pattern": "\\d\\d\\d\\d-\\d\\d-\\d\\dT\\d\\d:\\d\\d:\\d\\dZ", "type": "string" } }, "required": [ "href", "id", "updated_at", "state", "download_hrefs", "pdf_manager_template" ], "type": "object" } }, "stability": "production", "strictProperties": true, "title": "PDF Manager Batch", "type": "object" }
o9517
{ "$ref": "#/definitions/light", "definitions": { "light": { "properties": { "intensity": { "default": 1, "description": "brightness of the light", "maximum": 20, "minimum": 1, "type": "integer", "update_frequency": 1001 }, "power": { "default": "on", "description": "Light status", "enum": [ "on", "off" ], "type": "string", "update_frequency": 1000 }, "resourceType": { "default": "sample.light", "description": "Description about resource type", "type": "string" } }, "type": "object" } }, "required": [ "resourceType", "power" ], "title": "Simple Light" }
o91096
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "definitions": { "accountSid": { "title": "Account Sid", "type": "string", "minLength": 1, "messages": { "required": "Account Sid is required" } }, "authToken": { "title": "Auth Token", "type": "string", "minLength": 1, "messages": { "required": "Auth Token is required" } }, "toNumbers": { "title": "Send to ...", "type": "array", "items": { "title": "SMS Number", "type": "string" }, "minItems": 1 }, "fromNumber": { "title": "From Number Template", "type": "string", "minLength": 1 }, "messagingServiceSid": { "title": "Messaging Service Sid Template", "type": "string", "minLength": 1 }, "bodyTemplate": { "title": "Body Template", "type": "string", "minLength": 1 }, "mediaUrl": { "title": "Media URL", "type": "string", "minLength": 1, "format": "uri" }, "maxPrice": { "title": "Max. Price Template", "type": "string" } }, "oneOf": [ { "properties": { "accountSid": { "$ref": "#/definitions/accountSid" }, "authToken": { "$ref": "#/definitions/authToken" }, "toNumbers": { "$ref": "#/definitions/toNumbers" }, "fromNumber": { "$ref": "#/definitions/fromNumber" }, "bodyTemplate": { "$ref": "#/definitions/bodyTemplate" }, "mediaUrl": { "$ref": "#/definitions/mediaUrl" }, "maxPrice": { "$ref": "#/definitions/maxPrice" } }, "allOf": [ { "required": [ "accountSid", "authToken", "toNumbers", "fromNumber" ] }, { "anyOf": [ { "required": [ "bodyTemplate" ] }, { "required": [ "mediaUrl" ] } ] } ], "additionalProperties": false }, { "properties": { "accountSid": { "$ref": "#/definitions/accountSid" }, "authToken": { "$ref": "#/definitions/authToken" }, "toNumbers": { "$ref": "#/definitions/toNumbers" }, "messagingServiceSid": { "$ref": "#/definitions/messagingServiceSid" }, "bodyTemplate": { "$ref": "#/definitions/bodyTemplate" }, "mediaUrl": { "$ref": "#/definitions/mediaUrl" }, "maxPrice": { "$ref": "#/definitions/maxPrice" } }, "allOf": [ { "required": [ "accountSid", "authToken", "toNumbers", "messagingServiceSid" ] }, { "anyOf": [ { "required": [ "bodyTemplate" ] }, { "required": [ "mediaUrl" ] } ] } ], "additionalProperties": false } ] }
o6249
{ "properties": { "humio": { "properties": { "agents": { "default": "all", "description": "Agents to deploy on all cluster agents. Comma (,) separated list of \"filebeat\", \"metricbeat\" or simply \"all\"", "type": "string" }, "containerMetricsEnabled": { "description": "Enabled pulling container metrics from DC/OS", "type": "boolean" }, "dataspace": { "description": "Name of Humio dataspace", "type": "string" }, "dcosAuthenticationToken": { "description": "DC/OS authentication token", "type": "string" }, "globalFields": { "description": "key:value list of global fields added to all events, separated by a semicolon (;). I.e. \"environment:production; owner: Ben\"", "type": "string" }, "host": { "default": "https://cloud.humio.com:443", "description": "Humio url. i.e. https://cloud.humio.com:443", "type": "string" }, "ingestToken": { "description": "Humio ingest token", "type": "string" } }, "required": [ "host", "dataspace", "ingestToken", "agents" ], "type": "object" }, "node": { "properties": { "cpus": { "default": 0.1, "description": "CPU shares to allocate to each Filebeat instance.", "minimum": 0.1, "type": "number" }, "datadir": { "default": "/var/humio/data", "description": "Path of directory", "type": "string" }, "mem": { "default": 512.0, "description": "Memory (MB) to allocate to each Filebeat task.", "minimum": 128.0, "type": "number" } }, "required": [ "cpus", "mem", "datadir" ], "type": "object" }, "service": { "properties": { "name": { "default": "humio-agent", "description": "Name for this Humio application", "type": "string" } }, "required": [ "name" ], "type": "object" } }, "type": "object" }
o46813
{ "additionalProperties": false, "definitions": { "blkio_limit": { "additionalProperties": false, "properties": { "path": { "type": "string" }, "rate": { "type": [ "integer", "string" ] } }, "type": "object" }, "blkio_weight": { "additionalProperties": false, "properties": { "path": { "type": "string" }, "weight": { "type": "integer" } }, "type": "object" }, "constraints": { "service": { "anyOf": [ { "required": [ "build" ] }, { "required": [ "image" ] } ], "id": "#/definitions/constraints/service", "properties": { "build": { "required": [ "context" ] } } } }, "healthcheck": { "additionalProperties": false, "id": "#/definitions/healthcheck", "properties": { "disable": { "type": "boolean" }, "interval": { "type": "string" }, "retries": { "type": "number" }, "start_period": { "type": "string" }, "test": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "timeout": { "type": "string" } }, "type": "object" }, "ipam_config": { "additionalProperties": false, "id": "#/definitions/ipam_config", "properties": { "aux_addresses": { "additionalProperties": false, "patternProperties": { "^.+$": { "type": "string" } }, "type": "object" }, "gateway": { "type": "string" }, "ip_range": { "type": "string" }, "subnet": { "type": "string" } }, "type": "object" }, "labels": { "oneOf": [ { "additionalProperties": false, "patternProperties": { ".+": { "type": "string" } }, "type": "object" }, { "items": { "type": "string" }, "type": "array", "_uniqueItems": true } ] }, "list_of_strings": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "list_or_dict": { "oneOf": [ { "additionalProperties": false, "patternProperties": { ".+": { "type": [ "string", "number", "null" ] } }, "type": "object" }, { "items": { "type": "string" }, "type": "array", "_uniqueItems": true } ] }, "network": { "additionalProperties": false, "id": "#/definitions/network", "properties": { "driver": { "type": "string" }, "driver_opts": { "patternProperties": { "^.+$": { "type": [ "string", "number" ] } }, "type": "object" }, "enable_ipv6": { "type": "boolean" }, "external": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "type": [ "boolean", "object" ] }, "internal": { "type": "boolean" }, "ipam": { "additionalProperties": false, "properties": { "config": { "items": { "$ref": "#/definitions/ipam_config" }, "type": "array" }, "driver": { "type": "string" }, "options": { "additionalProperties": false, "patternProperties": { "^.+$": { "type": "string" } }, "type": "object" } }, "type": "object" }, "labels": { "$ref": "#/definitions/labels" }, "name": { "type": "string" } }, "type": "object" }, "service": { "additionalProperties": false, "dependencies": { "memswap_limit": [ "mem_limit" ] }, "id": "#/definitions/service", "properties": { "blkio_config": { "additionalProperties": false, "properties": { "device_read_bps": { "items": { "$ref": "#/definitions/blkio_limit" }, "type": "array" }, "device_read_iops": { "items": { "$ref": "#/definitions/blkio_limit" }, "type": "array" }, "device_write_bps": { "items": { "$ref": "#/definitions/blkio_limit" }, "type": "array" }, "device_write_iops": { "items": { "$ref": "#/definitions/blkio_limit" }, "type": "array" }, "weight": { "type": "integer" }, "weight_device": { "items": { "$ref": "#/definitions/blkio_weight" }, "type": "array" } }, "type": "object" }, "build": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "args": { "$ref": "#/definitions/list_or_dict" }, "cache_from": { "$ref": "#/definitions/list_of_strings" }, "context": { "type": "string" }, "dockerfile": { "type": "string" }, "extra_hosts": { "$ref": "#/definitions/list_or_dict" }, "isolation": { "type": "string" }, "labels": { "$ref": "#/definitions/labels" }, "network": { "type": "string" }, "shm_size": { "type": [ "integer", "string" ] }, "target": { "type": "string" } }, "type": "object" } ] }, "cap_add": { "$ref": "#/definitions/list_of_strings" }, "cap_drop": { "$ref": "#/definitions/list_of_strings" }, "cgroup_parent": { "type": "string" }, "command": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "container_name": { "type": "string" }, "cpu_count": { "minimum": 0, "type": "integer" }, "cpu_percent": { "maximum": 100, "minimum": 0, "type": "integer" }, "cpu_period": { "type": [ "number", "string" ] }, "cpu_quota": { "type": [ "number", "string" ] }, "cpu_rt_period": { "type": [ "number", "string" ] }, "cpu_rt_runtime": { "type": [ "number", "string" ] }, "cpu_shares": { "type": [ "number", "string" ] }, "cpus": { "minimum": 0, "type": "number" }, "cpuset": { "type": "string" }, "depends_on": { "oneOf": [ { "$ref": "#/definitions/list_of_strings" }, { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9._-]+$": { "additionalProperties": false, "properties": { "condition": { "enum": [ "service_started", "service_healthy" ], "type": "string" } }, "required": [ "condition" ], "type": "object" } }, "type": "object" } ] }, "device_cgroup_rules": { "$ref": "#/definitions/list_of_strings" }, "devices": { "$ref": "#/definitions/list_of_strings" }, "dns": { "$ref": "#/definitions/string_or_list" }, "dns_opt": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "dns_search": { "$ref": "#/definitions/string_or_list" }, "domainname": { "type": "string" }, "entrypoint": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "env_file": { "$ref": "#/definitions/string_or_list" }, "environment": { "$ref": "#/definitions/list_or_dict" }, "expose": { "items": { "format": "expose", "type": [ "string", "number" ] }, "type": "array", "_uniqueItems": true }, "extends": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "file": { "type": "string" }, "service": { "type": "string" } }, "required": [ "service" ], "type": "object" } ] }, "external_links": { "$ref": "#/definitions/list_of_strings" }, "extra_hosts": { "$ref": "#/definitions/list_or_dict" }, "group_add": { "items": { "type": [ "string", "number" ] }, "type": "array", "_uniqueItems": true }, "healthcheck": { "$ref": "#/definitions/healthcheck" }, "hostname": { "type": "string" }, "image": { "type": "string" }, "init": { "type": [ "boolean", "string" ] }, "ipc": { "type": "string" }, "isolation": { "type": "string" }, "labels": { "$ref": "#/definitions/labels" }, "links": { "$ref": "#/definitions/list_of_strings" }, "logging": { "additionalProperties": false, "properties": { "driver": { "type": "string" }, "options": { "type": "object" } }, "type": "object" }, "mac_address": { "type": "string" }, "mem_limit": { "type": [ "number", "string" ] }, "mem_reservation": { "type": [ "string", "integer" ] }, "mem_swappiness": { "type": "integer" }, "memswap_limit": { "type": [ "number", "string" ] }, "network_mode": { "type": "string" }, "networks": { "oneOf": [ { "$ref": "#/definitions/list_of_strings" }, { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9._-]+$": { "oneOf": [ { "additionalProperties": false, "properties": { "aliases": { "$ref": "#/definitions/list_of_strings" }, "ipv4_address": { "type": "string" }, "ipv6_address": { "type": "string" }, "link_local_ips": { "$ref": "#/definitions/list_of_strings" }, "priority": { "type": "number" } }, "type": "object" }, { "type": "null" } ] } }, "type": "object" } ] }, "oom_kill_disable": { "type": "boolean" }, "oom_score_adj": { "maximum": 1000, "minimum": -1000, "type": "integer" }, "pid": { "type": [ "string", "null" ] }, "pids_limit": { "type": [ "number", "string" ] }, "ports": { "items": { "format": "ports", "type": [ "string", "number" ] }, "type": "array", "_uniqueItems": true }, "privileged": { "type": "boolean" }, "read_only": { "type": "boolean" }, "restart": { "type": "string" }, "runtime": { "type": "string" }, "scale": { "type": "integer" }, "security_opt": { "$ref": "#/definitions/list_of_strings" }, "shm_size": { "type": [ "number", "string" ] }, "stdin_open": { "type": "boolean" }, "stop_grace_period": { "_format": "duration", "type": "string" }, "stop_signal": { "type": "string" }, "storage_opt": { "type": "object" }, "sysctls": { "$ref": "#/definitions/list_or_dict" }, "tmpfs": { "$ref": "#/definitions/string_or_list" }, "tty": { "type": "boolean" }, "ulimits": { "patternProperties": { "^[a-z]+$": { "oneOf": [ { "type": "integer" }, { "additionalProperties": false, "properties": { "hard": { "type": "integer" }, "soft": { "type": "integer" } }, "required": [ "soft", "hard" ], "type": "object" } ] } }, "type": "object" }, "user": { "type": "string" }, "userns_mode": { "type": "string" }, "volume_driver": { "type": "string" }, "volumes": { "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "bind": { "properties": { "propagation": { "type": "string" } }, "type": "object" }, "consistency": { "type": "string" }, "read_only": { "type": "boolean" }, "source": { "type": "string" }, "target": { "type": "string" }, "tmpfs": { "properties": { "size": { "type": [ "integer", "string" ] } }, "type": "object" }, "type": { "type": "string" }, "volume": { "properties": { "nocopy": { "type": "boolean" } }, "type": "object" } }, "required": [ "type" ], "type": "object" } ], "_uniqueItems": true }, "type": "array" }, "volumes_from": { "$ref": "#/definitions/list_of_strings" }, "working_dir": { "type": "string" } }, "type": "object" }, "string_or_list": { "oneOf": [ { "type": "string" }, { "$ref": "#/definitions/list_of_strings" } ] }, "volume": { "additionalProperties": false, "id": "#/definitions/volume", "properties": { "driver": { "type": "string" }, "driver_opts": { "patternProperties": { "^.+$": { "type": [ "string", "number" ] } }, "type": "object" }, "external": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "type": [ "boolean", "object" ] }, "labels": { "$ref": "#/definitions/labels" }, "name": { "type": "string" } }, "type": [ "object", "null" ] } }, "patternProperties": { "^x-": {} }, "properties": { "networks": { "id": "#/properties/networks", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/network" } }, "type": "object" }, "services": { "additionalProperties": false, "id": "#/properties/services", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/service" } }, "type": "object" }, "version": { "type": "string" }, "volumes": { "additionalProperties": false, "id": "#/properties/volumes", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/volume" } }, "type": "object" } }, "type": "object" }
o83840
{ "description": "This schema describes the format of a court as sent across the court-api", "properties": { "DX": { "description": "directory exchange of this court. This is used for inter-court post, and also by law professionals.", "maxLength": 200, "minLength": 1, "type": "string" }, "addresses": { "description": "an address for this court", "items": { "properties": { "county": { "maxLength": 200, "minLength": 1, "type": "string" }, "lines": { "description": "the street address", "items": { "description": "one line of this street address", "maxLength": 200, "minLength": 1, "type": "string" }, "maxItems": 4, "minItems": 1, "type": "array", "_uniqueItems": true }, "postcode": { "maxLength": 20, "minLength": 1, "type": "string" }, "town": { "maxLength": 200, "minLength": 1, "type": "string" }, "type": { "description": "the type of address (postal or visiting)", "maxLength": 200, "minLength": 1, "type": "string" } }, "required": [ "type", "postcode", "town", "lines" ], "type": "object" }, "type": "array", "_uniqueItems": true }, "alert": { "description": "important information about this court", "maxLength": 2000, "minLength": 1, "type": "string" }, "areas_of_law": { "description": "the areas of law that this court covers", "items": { "maxLength": 200, "minLength": 1, "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "closed": { "description": "true if this court is no longer active", "type": "boolean" }, "contacts": { "description": "phone contacts for this court", "items": { "properties": { "name": { "description": "the type of phone number (fax, enquiries, etc)", "maxLength": 2000, "minLength": 1, "type": "string" }, "number": { "description": "the phone number of this contact", "maxLength": 2000, "minLength": 1, "type": "string" } }, "required": [ "name", "number" ], "type": "object" }, "type": "array", "_uniqueItems": true }, "court_number": { "description": "official number of this court. This is used on various HMCTS documents and forms.", "maxLength": 200, "minLength": 1, "type": "string" }, "emails": { "description": "email addresses for this court", "items": { "properties": { "address": { "description": "email address", "maxLength": 200, "type": "string" }, "name": { "description": "what this email address is for (enquiries, etc)", "maxLength": 200, "minLength": 1, "type": "string" } }, "required": [ "name", "address" ], "type": "object" }, "type": "array", "_uniqueItems": true }, "facilities": { "description": "facilities available at this court", "items": { "properties": { "description": { "description": "detailed information for this facility", "maxLength": 2000, "minLength": 1, "type": "string" }, "type": { "description": "the type of facility", "maxLength": 200, "minLength": 1, "type": "string" } }, "required": [ "type", "description" ], "type": "object" }, "type": "array", "_uniqueItems": true }, "lat": { "description": "latitude of this court (WGS84)", "maximum": 90, "minimum": -90.0, "type": "number" }, "locale": { "description": "language of the content of this court's description", "enum": [ "en" ], "type": "string" }, "lon": { "description": "longitude of this court (WGS84)", "maximum": 90, "minimum": -90, "type": "number" }, "name": { "description": "the name of a court", "maxLength": 200, "minLength": 1, "type": "string" }, "opening_times": { "description": "opening times of this court", "items": { "properties": { "description": { "description": "detailed information for this type of opening time", "maxLength": 2000, "minLength": 1, "type": "string" }, "name": { "description": "the type of opening time (court building, phone lines, etc)", "maxLength": 200, "minLength": 1, "type": "string" } }, "required": [ "name", "description" ], "type": "object" }, "type": "array", "_uniqueItems": true }, "parking": { "description": "parking available at this court", "items": { "properties": { "description": { "description": "detailed information for this type of parking", "maxLength": 2000, "minLength": 1, "type": "string" }, "type": { "description": "the type of parking", "maxLength": 200, "minLength": 1, "type": "string" } }, "required": [ "type", "description" ], "type": "object" }, "type": "array", "_uniqueItems": true }, "slug": { "description": "the slug used for the public uri for this court", "maxLength": 200, "minLength": 1, "pattern": "^[a-z\\d]+(?:-[a-z\\d]+)*$", "type": "string" }, "update_type": { "description": "type of update. Only 'major' for now", "enum": [ "major" ], "type": "string" }, "updated_at": { "description": "when this court data was last updated", "pattern": "[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}\\.[0-9]+Z", "type": "string" } }, "required": [ "name", "slug", "updated_at", "update_type", "locale", "closed", "areas_of_law", "addresses" ], "title": "Court description", "type": "object" }
o60887
{ "properties": { "animations": { "default": true, "description": "Whether Angular browser animations should be set up.", "type": "boolean", "x-prompt": "Set up browser animations for Angular Material?" }, "project": { "$default": { "$source": "projectName" }, "description": "Name of the project.", "type": "string" }, "theme": { "default": "indigo-pink", "description": "The theme to apply", "type": "string", "x-prompt": { "items": [ { "label": "Indigo/Pink [ Preview: https://material.angular.io?theme=indigo-pink ]", "value": "indigo-pink" }, { "label": "Deep Purple/Amber [ Preview: https://material.angular.io?theme=deeppurple-amber ]", "value": "deeppurple-amber" }, { "label": "Pink/Blue Grey [ Preview: https://material.angular.io?theme=pink-bluegrey ]", "value": "pink-bluegrey" }, { "label": "Purple/Green [ Preview: https://material.angular.io?theme=purple-green ]", "value": "purple-green" }, { "label": "Custom", "value": "custom" } ], "message": "Choose a prebuilt theme name, or \"custom\" for a custom theme:", "type": "list" } }, "typography": { "default": false, "description": "Whether to set up global typography styles.", "type": "boolean", "x-prompt": "Set up global Angular Material typography styles?" } }, "required": [], "title": "Angular Material ng-add schematic", "type": "object" }
o52821
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Artifacts to be fetched by url", "type": [ "array", "null" ], "items": { "type": "object", "description": "A specific artifact to be fetched by URL", "properties": { "url": { "description": "The URL to be used to fetch artifact", "type": "string" }, "md5": { "description": "The md5 checksum of the artifact", "type": "string", "pattern": "^[a-f0-9]{32}$" }, "sha1": { "description": "The sha1 checksum of the artifact", "type": "string", "pattern": "^[a-f0-9]{40}$" }, "sha256": { "description": "The sha256 checksum of the artifact", "type": "string", "pattern": "^[a-f0-9]{64}$" }, "target": { "description": "Name to be used when saving artifact to disk", "type": "string" } }, "additionalProperties": false, "required": [ "url" ], "anyOf": [ { "required": [ "md5" ] }, { "required": [ "sha1" ] }, { "required": [ "sha256" ] } ] } }
o68414
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "radius", "base", "height" ], "type": "object" }, "shape": { "description": "The shape to calculate the area of", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_ee59beb2
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "accessRestrictions": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "additionalTerms": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "budgetRange": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "culturalWeighting": { "maximum": 70, "minimum": 10, "type": "integer" }, "earlyMarketEngagement": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,199}\\S+$)", "type": "string" }, "essentialRequirements": { "items": { "maxLength": 300, "pattern": "^(?:\\S+\\s+){0,29}\\S+$", "type": "string" }, "maxItems": 20, "minItems": 1, "type": "array" }, "evaluationType": { "items": { "enum": [ "Case study", "Reference", "Interview" ] }, "maxItems": 3, "minItems": 0, "type": "array", "_uniqueItems": true }, "location": { "enum": [ "Scotland", "North East England", "North West England", "Yorkshire and the Humber", "East Midlands", "West Midlands", "East of England", "Wales", "London", "South East England", "South West England", "Northern Ireland", "International (outside the UK)" ] }, "niceToHaveRequirements": { "items": { "maxLength": 300, "pattern": "^(?:\\S+\\s+){0,29}\\S+$", "type": "string" }, "maxItems": 20, "minItems": 0, "type": "array" }, "numberOfSuppliers": { "maximum": 15, "minimum": 3, "type": "integer" }, "organisation": { "maxLength": 100, "minLength": 1, "type": "string" }, "participantAccessibilityNeeds": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "participantSpecification": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,199}\\S+$", "type": "string" }, "participantsPerRound": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" }, "priceWeighting": { "maximum": 80, "minimum": 20, "type": "integer" }, "questionAndAnswerSessionDetails": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "researchAddress": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" }, "researchDates": { "maxLength": 100, "minLength": 1, "type": "string" }, "researchFrequency": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" }, "researchOutOfHours": { "items": { "enum": [ "Weekday evenings", "Weekends" ] }, "maxItems": 2, "minItems": 0, "type": "array", "_uniqueItems": true }, "researchPlan": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "researchRounds": { "maxLength": 100, "minLength": 1, "type": "string" }, "successCriteria": { "items": { "maxLength": 300, "pattern": "^(?:\\S+\\s+){0,29}\\S+$", "type": "string" }, "maxItems": 20, "minItems": 1, "type": "array" }, "summary": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,49}\\S+$", "type": "string" }, "technicalWeighting": { "maximum": 70, "minimum": 10, "type": "integer" }, "title": { "maxLength": 100, "minLength": 1, "type": "string" } }, "required": [ "culturalWeighting", "essentialRequirements", "location", "numberOfSuppliers", "organisation", "participantSpecification", "participantsPerRound", "priceWeighting", "researchAddress", "researchDates", "researchFrequency", "researchRounds", "successCriteria", "summary", "technicalWeighting", "title" ], "title": "Digital Outcomes and Specialists 4 User research participants Brief Schema", "type": "object" }
o21074
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "type": "string" }, "permissions": { "type": "array", "items": { "type": "string" } }, "members": { "type": "array", "items": { "$ref": "#/definitions/Person" } } }, "definitions": { "Person": { "type": "object", "properties": { "name": { "type": "string" } } } } }
o39447
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "bulk_publishing": { "type": "boolean" }, "links": { "type": "object", "additionalProperties": false, "properties": { "content_owners": { "description": "References a page of a GDS community responsible for maintaining the guide e.g. Agile delivery community, Design community", "$ref": "#/definitions/guid_list" }, "facet_groups": { "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links.", "$ref": "#/definitions/guid_list" }, "facet_values": { "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups.", "$ref": "#/definitions/guid_list" }, "finder": { "description": "Powers links from content back to finders the content is surfaced on", "$ref": "#/definitions/guid_list" }, "lead_organisations": { "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array.", "$ref": "#/definitions/guid_list" }, "mainstream_browse_pages": { "description": "Powers the /browse section of the site. These are known as sections in some legacy apps.", "$ref": "#/definitions/guid_list" }, "meets_user_needs": { "description": "The user needs this piece of content meets.", "$ref": "#/definitions/guid_list" }, "ordered_related_items": { "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger.", "$ref": "#/definitions/guid_list" }, "ordered_related_items_overrides": { "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation.", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "All organisations linked to this content item. This should include lead organisations.", "$ref": "#/definitions/guid_list" }, "original_primary_publishing_organisation": { "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/guid_list" }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" }, "primary_publishing_organisation": { "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "service_manual_topics": { "description": "References an array of 'service_manual_topic's. Not to be confused with 'topics'.", "$ref": "#/definitions/guid_list" }, "suggested_ordered_related_items": { "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test.", "$ref": "#/definitions/guid_list" }, "taxons": { "description": "Prototype-stage taxonomy label for this content item", "$ref": "#/definitions/guid_list" }, "topics": { "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps.", "$ref": "#/definitions/guid_list" } } }, "previous_version": { "type": "string" } }, "definitions": { "guid": { "type": "string", "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$" }, "guid_list": { "type": "array", "items": { "$ref": "#/definitions/guid" }, "_uniqueItems": true } } }
o21345
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "nifti" ], "type": "object", "properties": { "nifti": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } } } }, "config": { "required": [ "spike_thresh", "nskip" ], "type": "object", "properties": { "spike_thresh": { "default": 6, "type": "number", "descriptiion": "z-score threshold for spike detector. DEFAULT=6.0" }, "nskip": { "default": 6, "type": "integer", "descriptiion": "number of initial time-points to skip. DEFAULT=6" } } } }, "title": "Invocation manifest for CNI: Quality Assurance Report (fMRI)" }
o41530
{ "$comment": "JSON Schema for CRYENGINE 5.2", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "cvars": { "$id": "/definitions/cvars", "type": "string", "title": "Variable name", "description": "CVar name", "default": "sys_target_platforms", "enum": [ "a_poseAlignerDebugDraw", "a_poseAlignerEnable", "a_poseAlignerForceLock", "a_poseAlignerForceNoIntersections", "a_poseAlignerForceNoRootOffset", "a_poseAlignerForceTargetSmoothing", "a_poseAlignerForceWeightOne", "ac_ColliderModeAI", "ac_ColliderModePlayer", "ac_debugAnimEffects", "ac_debugAnimTarget", "ac_debugColliderMode", "ac_debugEntityParams", "ac_DebugFilter", "ac_debugLocations", "ac_debugLocationsGraphs", "ac_debugMotionParams", "ac_debugMovementControlMethods", "ac_debugText", "ac_debugXXXValues", "ac_disableSlidingContactEvents", "ac_enableExtraSolidCollider", "ac_entityAnimClamp", "ac_forceSimpleMovement", "ac_frametime", "ac_movementControlMethodFilter", "ac_movementControlMethodHor", "ac_movementControlMethodVer", "ac_templateMCMs", "ac_useMovementPrediction", "ac_useQueuedRotation", "ag_debugExactPos", "ag_defaultAIStance", "ag_travelSpeedSmoothing", "ag_turnAngleSmoothing", "ag_turnSpeedParamScale", "ag_turnSpeedSmoothing", "ai_AdjustPathsAroundDynamicObstacles", "ai_AgentStatsDist", "ai_AllowedToHit", "ai_AllowedToHitPlayer", "ai_AllTime", "ai_AmbientFireEnable", "ai_AmbientFireQuota", "ai_AmbientFireUpdateInterval", "ai_AttemptStraightPath", "ai_BannedNavSoTime", "ai_BeautifyPath", "ai_BigBrushCheckLimitSize", "ai_BubblesSystem", "ai_BubblesSystemAlertnessFilter", "ai_BubblesSystemAllowPrototypeDialogBubbles", "ai_BubblesSystemDecayTime", "ai_BubblesSystemFontSize", "ai_BubblesSystemNameFilter", "ai_BubblesSystemUseDepthTest", "ai_BurstWhileMovingDestinationRange", "ai_CheckWalkabilityOptimalSectionLength", "ai_CodeCoverageMode", "ai_CollisionAvoidanceAgentExtraFat", "ai_CollisionAvoidanceAgentTimeHorizon", "ai_CollisionAvoidanceClampVelocitiesWithNavigationMesh", "ai_CollisionAvoidanceEnableRadiusIncrement", "ai_CollisionAvoidanceMinSpeed", "ai_CollisionAvoidanceObstacleTimeHorizon", "ai_CollisionAvoidancePathEndCutoffRange", "ai_CollisionAvoidanceRadiusIncrementDecreaseRate", "ai_CollisionAvoidanceRadiusIncrementIncreaseRate", "ai_CollisionAvoidanceRange", "ai_CollisionAvoidanceSmartObjectCutoffRange", "ai_CollisionAvoidanceTargetCutoffRange", "ai_CollisionAvoidanceTimestep", "ai_CollisionAvoidanceUpdateVelocities", "ai_CommunicationForceTestVoicePack", "ai_CommunicationManagerHeighThresholdForTargetPosition", "ai_CompatibilityMode", "ai_CoolMissesBoxHeight", "ai_CoolMissesBoxSize", "ai_CoolMissesCooldown", "ai_CoolMissesMaxLightweightEntityMass", "ai_CoolMissesMinMissDistance", "ai_CoolMissesProbability", "ai_CoverExactPositioning", "ai_CoverMaxEyeCount", "ai_CoverPredictTarget", "ai_CoverSpacing", "ai_CoverSystem", "ai_CrouchVisibleRange", "ai_CrowdControlInPathfind", "ai_DebugBehaviorSelection", "ai_DebugCheckWalkability", "ai_DebugCheckWalkabilityRadius", "ai_DebugCollisionAvoidanceForceSpeed", "ai_DebugDraw", "ai_DebugDrawAdaptiveUrgency", "ai_DebugDrawAmbientFire", "ai_DebugDrawArrowLabelsVisibilityDistance", "ai_DebugDrawAStarOpenList", "ai_DebugDrawAStarOpenListTime", "ai_DebugDrawBannedNavsos", "ai_DebugDrawCollisionAvoidance", "ai_DebugDrawCollisionAvoidanceAgentName", "ai_DebugDrawCommunication", "ai_DebugDrawCommunicationHistoryDepth", "ai_DebugDrawCoolMisses", "ai_DebugDrawCover", "ai_DebugDrawCoverLocations", "ai_DebugDrawCoverOccupancy", "ai_DebugDrawCoverPlanes", "ai_DebugDrawCoverSampler", "ai_DebugDrawCrowdControl", "ai_DebugDrawDamageControl", "ai_DebugDrawDamageParts", "ai_DebugDrawDynamicCoverSampler", "ai_DebugDrawDynamicHideObjectsRange", "ai_DebugDrawEnabledActors", "ai_DebugDrawEnabledPlayers", "ai_DebugDrawExpensiveAccessoryQuota", "ai_DebugDrawFireCommand", "ai_DebugDrawFlight2", "ai_DebugDrawGroups", "ai_DebugDrawHidespotRange", "ai_DebugDrawHideSpotSearchRays", "ai_DebugDrawLightLevel", "ai_DebugDrawNavigation", "ai_DebugDrawNavigationWorldMonitor", "ai_DebugDrawPhysicsAccess", "ai_DebugDrawPlayerActions", "ai_DebugDrawReinforcements", "ai_DebugDrawStanceSize", "ai_DebugDrawVegetationCollisionDist", "ai_DebugDrawVisionMap", "ai_DebugDrawVisionMapObservables", "ai_DebugDrawVisionMapObservers", "ai_DebugDrawVisionMapObserversFOV", "ai_DebugDrawVisionMapStats", "ai_DebugDrawVisionMapVisibilityChecks", "ai_DebugDrawVolumeVoxels", "ai_DebugGlobalPerceptionScale", "ai_DebugHideSpotName", "ai_DebugInterestSystem", "ai_DebugMovementSystem", "ai_DebugMovementSystemActorRequests", "ai_DebugPathfinding", "ai_DebugPerceptionManager", "ai_DebugRangeSignaling", "ai_DebugSignalTimers", "ai_DebugTacticalPoints", "ai_DebugTacticalPointsBlocked", "ai_DebugTargetSilhouette", "ai_DebugTargetTracksAgent", "ai_DebugTargetTracksConfig", "ai_DebugTargetTracksConfig_Filter", "ai_DebugTargetTracksTarget", "ai_DebugTimestamps", "ai_DebugWalkabilityCache", "ai_DrawAgentFOV", "ai_DrawAgentStats", "ai_DrawAgentStatsGroupFilter", "ai_DrawAreas", "ai_DrawAttentionTargetPositions", "ai_DrawBadAnchors", "ai_DrawBulletEvents", "ai_DrawCollisionEvents", "ai_DrawDistanceLUT", "ai_DrawExplosions", "ai_DrawFakeDamageInd", "ai_DrawFakeHitEffects", "ai_DrawFakeTracers", "ai_DrawFireEffectDecayRange", "ai_DrawFireEffectEnabled", "ai_DrawFireEffectMaxAngle", "ai_DrawFireEffectMinDistance", "ai_DrawFireEffectMinTargetFOV", "ai_DrawFireEffectTimeScale", "ai_DrawFormations", "ai_DrawGetEnclosingFailures", "ai_DrawGoals", "ai_DrawGrenadeEvents", "ai_DrawGroupTactic", "ai_DrawHidespots", "ai_DrawModifiers", "ai_DrawModularBehaviorTreeStatistics", "ai_DrawNode", "ai_DrawNodeLinkCutoff", "ai_DrawNodeLinkType", "ai_DrawOffset", "ai_DrawPath", "ai_DrawPathAdjustment", "ai_DrawPathFollower", "ai_DrawPerceptionDebugging", "ai_DrawPerceptionHandlerModifiers", "ai_DrawPerceptionIndicators", "ai_DrawPerceptionModifiers", "ai_DrawPlayerRanges", "ai_DrawProbableTarget", "ai_DrawRadar", "ai_DrawRadarDist", "ai_DrawReadibilities", "ai_DrawRefPoints", "ai_DrawSelectedTargets", "ai_DrawShooting", "ai_DrawSmartObjects", "ai_DrawSoundEvents", "ai_DrawStats", "ai_DrawTargets", "ai_DrawTrajectory", "ai_DrawType", "ai_DrawUpdate", "ai_DynamicHidespotsEnabled", "ai_DynamicVolumeUpdateTime", "ai_DynamicWaypointUpdateTime", "ai_EnableCoolMisses", "ai_EnableORCA", "ai_EnablePerceptionStanceVisibleRange", "ai_EnableWarningsErrors", "ai_EnableWaterOcclusion", "ai_ExtraForbiddenRadiusDuringBeautification", "ai_ExtraRadiusDuringBeautification", "ai_ExtraVehicleAvoidanceRadiusBig", "ai_ExtraVehicleAvoidanceRadiusSmall", "ai_FilterAgentName", "ai_FlowNodeAlertnessCheck", "ai_ForceAGAction", "ai_ForceAGSignal", "ai_ForceAllowStrafing", "ai_ForceLookAimTarget", "ai_ForcePosture", "ai_ForceSerializeAllObjects", "ai_ForceStance", "ai_IgnoreBulletRainStimulus", "ai_IgnorePlayer", "ai_IgnoreSoundStimulus", "ai_IgnoreVisibilityChecks", "ai_IgnoreVisualStimulus", "ai_IncludeNonColEntitiesInNavigation", "ai_InterestSystem", "ai_InterestSystemCastRays", "ai_IntersectionTesterQuota", "ai_IslandConnectionsSystemProfileMemory", "ai_LayerSwitchDynamicLinkBump", "ai_LayerSwitchDynamicLinkBumpDuration", "ai_LobThrowMinAllowedDistanceFromFriends", "ai_LobThrowPercentageOfDistanceToTargetUsedForInaccuracySimulation", "ai_LobThrowTimePredictionForFriendPositions", "ai_LobThrowUseRandomForInaccuracySimulation", "ai_Locate", "ai_LogConsoleVerbosity", "ai_LogFileVerbosity", "ai_LogModularBehaviorTreeExecutionStacks", "ai_LogSignals", "ai_MinActorDynamicObstacleAvoidanceRadius", "ai_MNMAllowDynamicRegenInEditor", "ai_MNMDebugAccessibility", "ai_MNMEditorBackgroundUpdate", "ai_MNMPathfinderConcurrentRequests", "ai_MNMPathFinderDebug", "ai_MNMPathfinderMT", "ai_MNMPathfinderPositionInTrianglePredictionType", "ai_MNMPathFinderQuota", "ai_MNMProfileMemory", "ai_MNMRaycastImplementation", "ai_ModularBehaviorTree", "ai_MovementSystemPathReplanningEnabled", "ai_NavGenThreadJobs", "ai_NavigationSystemMT", "ai_NetworkDebug", "ai_NoUpdate", "ai_ObstacleSizeThreshold", "ai_OutputPersonalLogToConsole", "ai_OverlayMessageDuration", "ai_PathfinderAvoidanceCostForGroupMates", "ai_PathfinderDangerCostForAttentionTarget", "ai_PathfinderDangerCostForExplosives", "ai_PathfinderExplosiveDangerMaxThreatDistance", "ai_PathfinderExplosiveDangerRadius", "ai_PathfinderGroupMatesAvoidanceRadius", "ai_PathfinderUpdateTime", "ai_PathfindTimeLimit", "ai_PathStringPullingIterations", "ai_PlayerAffectedByLight", "ai_PredictivePathFollowing", "ai_ProfileGoals", "ai_ProneVisibleRange", "ai_RadiusForAutoForbidden", "ai_RayCasterQuota", "ai_RecordCommunicationStats", "ai_Recorder", "ai_Recorder_Auto", "ai_Recorder_Buffer", "ai_RecordLog", "ai_RODAliveTime", "ai_RODAmbientFireInc", "ai_RODCombatRangeMod", "ai_RODCoverFireTimeMod", "ai_RODDirInc", "ai_RODFakeHitChance", "ai_RODKillRangeMod", "ai_RODKillZoneInc", "ai_RODLowHealthMercyTime", "ai_RODMoveInc", "ai_RODReactionDarkIllumInc", "ai_RODReactionDirInc", "ai_RODReactionDistInc", "ai_RODReactionLeanInc", "ai_RODReactionMediumIllumInc", "ai_RODReactionSuperDarkIllumInc", "ai_RODReactionTime", "ai_RODStanceInc", "ai_ShowBehaviorCalls", "ai_ShowNavAreas", "ai_SightRangeDarkIllumMod", "ai_SightRangeMediumIllumMod", "ai_SightRangeSuperDarkIllumMod", "ai_SimpleWayptPassability", "ai_SmartPathFollower_decelerationHuman", "ai_SmartPathFollower_decelerationVehicle", "ai_SmartPathFollower_LookAheadPredictionTimeForMovingAlongPathRunAndSprint", "ai_SmartPathFollower_LookAheadPredictionTimeForMovingAlongPathWalk", "ai_SmartPathFollower_useAdvancedPathShortcutting", "ai_SmartPathFollower_useAdvancedPathShortcutting_debug", "ai_SOMSpeedCombat", "ai_SOMSpeedRelaxed", "ai_SoundPerception", "ai_StatsDisplayMode", "ai_StatsTarget", "ai_SteepSlopeAcrossValue", "ai_SteepSlopeUpValue", "ai_SystemUpdate", "ai_TacticalPointsDebugDrawMode", "ai_TacticalPointsDebugFadeMode", "ai_TacticalPointsDebugScaling", "ai_TacticalPointsDebugTime", "ai_TacticalPointsWarnings", "ai_TacticalPointUpdateTime", "ai_TargetTracking", "ai_TargetTracks_GlobalTargetLimit", "ai_UpdateAllAlways", "ai_UpdateInterval", "ai_UpdateProxy", "ai_UseCalculationStopperCounter", "ai_UseSimplePathfindingHeuristic", "ai_UseSmartPathFollower", "ai_UseSmartPathFollower_AABB_based", "ai_UseSmartPathFollower_LookAheadDistance", "ai_VisionMapNumberOfPVSUpdatesPerFrame", "ai_VisionMapNumberOfVisibilityUpdatesPerFrame", "ai_WaterOcclusion", "ban_timeout", "br_breakmaxworldsize", "br_breakworldoffsetx", "br_breakworldoffsety", "c_shakeMult", "ca_AllowMultipleEffectsOfSameName", "ca_AnimWarningLevel", "ca_ApplyJointVelocitiesMode", "ca_AttachmentCullingRation", "ca_AttachmentCullingRationMP", "ca_AttachmentMergingMemoryBudget", "ca_AttachmentTextureMemoryBudget", "ca_CharEditModel", "ca_cloth_air_resistance", "ca_cloth_damping", "ca_cloth_friction", "ca_cloth_max_safe_step", "ca_cloth_max_timestep", "ca_cloth_stiffness", "ca_cloth_stiffness_norm", "ca_cloth_stiffness_tang", "ca_cloth_thickness", "ca_cloth_vars_reset", "ca_ClothBlending", "ca_ClothBypassSimulation", "ca_ClothMaxChars", "ca_DBAUnloadRemoveTime", "ca_DBAUnloadUnregisterTime", "ca_DeathBlendTime", "ca_DebugADIKTargets", "ca_DebugAnimationStreaming", "ca_DebugAnimMemTracking", "ca_DebugAnimUpdates", "ca_DebugAnimUsage", "ca_DebugAnimUsageOnFileAccess", "ca_DebugCommandBuffer", "ca_DebugCriticalErrors", "ca_DebugFacial", "ca_DebugFacialEyes", "ca_DebugModelCache", "ca_DebugSegmentation", "ca_DebugSkeletonEffects", "ca_DebugSWSkinning", "ca_DecalSizeMultiplier", "ca_disable_thread", "ca_DisableAnimationUnloading", "ca_DisableAuxPhysics", "ca_DrawAimIKVEGrid", "ca_DrawAimPoses", "ca_DrawAllSimulatedSockets", "ca_DrawAttachmentOBB", "ca_DrawAttachmentProjection", "ca_DrawAttachments", "ca_DrawAttachmentsMergedForShadows", "ca_DrawBaseMesh", "ca_DrawBBox", "ca_DrawBinormals", "ca_DrawCC", "ca_DrawCGA", "ca_DrawCHR", "ca_DrawCloth", "ca_DrawDecalsBBoxes", "ca_DrawEmptyAttachments", "ca_DrawLocator", "ca_DrawLookIK", "ca_DrawNormals", "ca_DrawPose", "ca_DrawPositionPost", "ca_DrawSkeleton", "ca_DrawTangents", "ca_DrawVEGInfo", "ca_DrawWireframe", "ca_DumpUsedAnims", "ca_eyes_procedural", "ca_FacialAnimationRadius", "ca_FilterJoints", "ca_ForceUpdateSkeletons", "ca_KeepModels", "ca_lipsync_debug", "ca_lipsync_phoneme_crossfade", "ca_lipsync_phoneme_offset", "ca_lipsync_phoneme_strength", "ca_lipsync_vertex_drag", "ca_LoadUncompressedChunks", "ca_LockFeetWithIK", "ca_MemoryDefragEnabled", "ca_MemoryDefragPoolSize", "ca_MemoryUsageLog", "ca_MinInPlaceCAFStreamSize", "ca_MotionBlurMovementThreshold", "ca_NoAnim", "ca_ParametricPoolSize", "ca_physicsProcessImpact", "ca_PrecacheAnimationSets", "ca_PreloadAllCAFs", "ca_ReloadAllCHRPARAMS", "ca_SampleQuatHemisphereFromCurrentPose", "ca_SaveAABB", "ca_SerializeSkeletonAnim", "ca_SnapToVGrid", "ca_StoreAnimNamesOnLoad", "ca_StreamCHR", "ca_StreamDBAInPlace", "ca_thread", "ca_thread0Affinity", "ca_thread1Affinity", "ca_UnloadAnimationCAF", "ca_UnloadAnimationDBA", "ca_useADIKTargets", "ca_UseAimIK", "ca_UseAssetDefinedLod", "ca_UseDecals", "ca_UseFacialAnimation", "ca_UseIMG_AIM", "ca_UseIMG_CAF", "ca_UseJointMasking", "ca_UseLookIK", "ca_UseMorph", "ca_UsePhysics", "ca_UseRecoil", "ca_UseScaling", "ca_vaBlendCullingDebug", "ca_vaBlendCullingThreshold", "ca_vaBlendEnable", "ca_vaBlendPostSkinning", "ca_vaEnable", "ca_Validate", "ca_vaProfile", "ca_vaScaleFactor", "ca_vaSkipVertexAnimationLOD", "ca_vaUpdateTangents", "capture_file_format", "capture_file_name", "capture_file_prefix", "capture_folder", "capture_frame_once", "capture_frames", "cl_AISystem", "cl_bandwidth", "cl_camera_noise", "cl_camera_noise_freq", "cl_comment", "cl_DefaultNearPlane", "cl_DisableHUDText", "cl_ETColorOverrideB", "cl_ETColorOverrideEnable", "cl_ETColorOverrideG", "cl_ETColorOverrideR", "cl_ETFontSizeMultiplier", "cl_ETHideAIDebug", "cl_ETHideAll", "cl_ETHideBehaviour", "cl_ETHideFlowgraph", "cl_ETHideReadability", "cl_ETHideScriptBind", "cl_ETLog", "cl_ETMaxDisplayDistance", "cl_initClientActor", "cl_nickname", "cl_packetRate", "cl_serveraddr", "cl_serverpassword", "cl_serverport", "cl_tokenid", "cl_useCurrentUserNameAsDefault", "cl_ViewSystemDebug", "cl_voice_recording", "cl_voice_volume", "co_coopAnimDebug", "co_slideWhileStreaming", "co_usenewcoopanimsystem", "con_debug", "con_display_last_messages", "con_line_buffer_size", "con_restricted", "con_showonload", "connect_repeatedly_num_attempts", "connect_repeatedly_time_between_attempts", "CV_r_AntialiasingModeEditor", "cvDoVerboseWindowTitle", "d3d11_CBUpdateStats", "d3d11_debugBreakOnce", "d3d11_debugBreakOnMsgID", "d3d11_debugMuteMsgID", "d3d11_debugMuteSeverity", "d3d11_debugruntime", "d3d11_forcedFeatureLevel", "d3d11_preventDriverThreading", "demo_ai", "demo_file", "demo_finish_cmd", "demo_finish_memreplay_sizer", "demo_finish_memreplay_stop", "demo_fixed_timestep", "demo_game_state", "demo_max_frames", "demo_noinfo", "demo_num_orientations", "demo_num_runs", "demo_panoramic", "demo_profile", "demo_quit", "demo_restart_level", "demo_save_every_frame", "demo_savestats", "demo_screenshot_frame", "demo_scroll_pause", "demo_time_of_day", "demo_use_hmd_rotation", "demo_vtune", "dlc_directory", "doc_use_subfolder_for_crash_backup", "doc_validate_surface_types", "drs_dialogAudio", "drs_dialogBinaryFileFormat", "drs_dialogEntityRtpcName", "drs_dialogGlobalRtpcName", "drs_dialogsDefaultTalkAnimation", "drs_dialogsLipsyncAnimationLayer", "drs_dialogsLipsyncTransitionTime", "drs_dialogsSamePriorityCancels", "drs_dialogSubtitles", "drs_fileFormat", "ds_AutoReloadScripts", "ds_LevelNameOverride", "ds_LoadExcelScripts", "ds_LoadSoundsSync", "ds_LogLevel", "ds_PrecacheSounds", "ds_WarnOnMissingLoc", "e_3dEngineLogAlways", "e_3dEngineTempPoolSize", "e_AutoPrecacheCameraJumpDist", "e_AutoPrecacheCgf", "e_AutoPrecacheTerrainAndProcVeget", "e_AutoPrecacheTexturesAndShaders", "e_BBoxes", "e_Brushes", "e_BrushUseTerrainColor", "e_CacheNearestCubePicking", "e_CameraFreeze", "e_CameraGoto", "e_CameraRotationSpeed", "e_CGFMaxFileSize", "e_CharLodMin", "e_CheckOcclusion", "e_CheckOcclusionOutputQueueSize", "e_CheckOcclusionQueueSize", "e_CheckOctreeObjectsBoxSize", "e_Clouds", "e_CoverageBuffer", "e_CoverageBufferAABBExpand", "e_CoverageBufferBias", "e_CoverageBufferCullIndividualBrushesMaxNodeSize", "e_CoverageBufferDebug", "e_CoverageBufferDebugFreeze", "e_CoverageBufferDrawOccluders", "e_CoverageBufferEarlyOut", "e_CoverageBufferEarlyOutDelay", "e_CoverageBufferOccludersViewDistRatio", "e_CoverageBufferRastPolyLimit", "e_CoverageBufferReproj", "e_CoverageBufferShowOccluder", "e_CoverageBufferTerrain", "e_CoverageBufferTerrainExpand", "e_CoverCgfDebug", "e_CullVegActivation", "e_DebugDraw", "e_DebugDrawFilter", "e_DebugDrawListBBoxIndex", "e_DebugDrawListFilter", "e_DebugDrawListSize", "e_DebugDrawShowOnlyCompound", "e_DebugDrawShowOnlyLod", "e_DebugGeomPrep", "e_DebugLights", "e_Decals", "e_DecalsAllowGameDecals", "e_DecalsClip", "e_DecalsDeferredDynamic", "e_DecalsDeferredDynamicDepthScale", "e_DecalsDeferredDynamicMinSize", "e_DecalsDeferredStatic", "e_DecalsForceDeferred", "e_DecalsHitCache", "e_DecalsLifeTimeScale", "e_DecalsMaxTrisInObject", "e_DecalsMaxUpdatesPerFrame", "e_DecalsMaxValidFrames", "e_DecalsMerge", "e_DecalsNeighborMaxLifeTime", "e_DecalsOverlapping", "e_DecalsPlacementTestAreaSize", "e_DecalsPlacementTestMinDepth", "e_DecalsPreCreate", "e_DecalsRange", "e_DecalsScissor", "e_DefaultMaterial", "e_DeferredPhysicsEvents", "e_DeformableObjects", "e_DisplayMemoryUsageIcon", "e_DissolveDistband", "e_DissolveDistMax", "e_DissolveDistMin", "e_DissolveSpriteDistRatio", "e_DissolveSpriteMinDist", "e_DynamicDistanceShadows", "e_DynamicLights", "e_DynamicLightsConsistentSortOrder", "e_DynamicLightsForceDeferred", "e_DynamicLightsFrameIdVisTest", "e_DynamicLightsMaxCount", "e_DynamicLightsMaxEntityLights", "e_Entities", "e_EntitySuppressionLevel", "e_Fog", "e_FogVolumes", "e_FoliageBranchesDamping", "e_FoliageBranchesStiffness", "e_FoliageBranchesTimeout", "e_FoliageBrokenBranchesDamping", "e_FoliageStiffness", "e_FoliageWindActivationDist", "e_ForceDetailLevelForScreenRes", "e_GeomCacheBufferSize", "e_GeomCacheDebug", "e_GeomCacheDebugDrawMode", "e_GeomCacheDebugFilter", "e_GeomCacheDecodeAheadTime", "e_GeomCacheLerpBetweenFrames", "e_GeomCacheMaxBufferAheadTime", "e_GeomCacheMaxPlaybackFromMemorySize", "e_GeomCacheMinBufferAheadTime", "e_GeomCachePreferredDiskRequestSize", "e_GeomCaches", "e_GI", "e_GsmCastFromTerrain", "e_GsmDepthBoundsDebug", "e_GsmLodsNum", "e_GsmRange", "e_GsmRangeStep", "e_GsmStats", "e_GsmViewSpace", "e_HwOcclusionCullingWater", "e_JointStrengthScale", "e_levelStartupFrameDelay", "e_levelStartupFrameNum", "e_LightVolumes", "e_LightVolumesDebug", "e_LodCompMaxSize", "e_LodFaceArea", "e_LodFaceAreaTargetSize", "e_LodMax", "e_LodMin", "e_LodMinTtris", "e_LodRatio", "e_Lods", "e_LodsForceUse", "e_LodTransitionTime", "e_MaxDrawCalls", "e_MaxViewDistance", "e_MaxViewDistFullDistCamHeight", "e_MaxViewDistSpecLerp", "e_MergedMeshes", "e_MergedMeshesActiveDist", "e_MergedMeshesBulletLifetime", "e_MergedMeshesBulletScale", "e_MergedMeshesBulletSpeedFactor", "e_MergedMeshesClusterVisualization", "e_MergedMeshesClusterVisualizationDimension", "e_MergedMeshesDebug", "e_MergedMeshesDeformViewDistMod", "e_MergedMeshesInstanceDist", "e_MergedMeshesLodRatio", "e_MergedMeshesOutdoorOnly", "e_MergedMeshesPool", "e_MergedMeshesPoolSpines", "e_MergedMeshesTesselationSupport", "e_MergedMeshesUseSpines", "e_MergedMeshesViewDistRatio", "e_ObjectLayersActivation", "e_ObjectLayersActivationPhysics", "e_Objects", "e_ObjectsTreeBBoxes", "e_ObjectsTreeNodeMinSize", "e_ObjectsTreeNodeSizeRatio", "e_ObjFastRegister", "e_ObjQuality", "e_ObjShadowCastSpec", "e_ObjStats", "e_OcclusionCullingViewDistRatio", "e_OcclusionLazyHideFrames", "e_OcclusionVolumes", "e_OcclusionVolumesViewDistRatio", "e_OnDemandMaxSize", "e_OnDemandPhysics", "e_Particles", "e_ParticlesAllowRuntimeLoad", "e_ParticlesAnimBlend", "e_ParticlesAudio", "e_ParticlesConvertPfx1", "e_ParticlesCullAgainstOcclusionBuffer", "e_ParticlesCullAgainstViewFrustum", "e_ParticlesDebug", "e_ParticlesDumpMemoryAfterMapLoad", "e_ParticlesForceSeed", "e_ParticlesGI", "e_ParticleShadowsNumGSMs", "e_ParticlesIndexPoolSize", "e_ParticlesLightMinColorThreshold", "e_ParticlesLightMinRadiusThreshold", "e_ParticlesLights", "e_ParticlesLightsViewDistRatio", "e_ParticlesLod", "e_ParticlesMaxDrawScreen", "e_ParticlesMaxScreenFill", "e_ParticlesMinDrawAlpha", "e_ParticlesMinDrawPixels", "e_ParticlesMinPhysicsDynamicBounds", "e_ParticlesMotionBlur", "e_ParticlesObjectCollisions", "e_ParticlesPoolSize", "e_ParticlesPreload", "e_ParticlesProfile", "e_ParticlesQuality", "e_ParticlesSerializeNamedFields", "e_ParticlesShadows", "e_ParticlesSoftIntersect", "e_ParticlesSortQuality", "e_ParticlesThread", "e_ParticlesUseLevelSpecificLibs", "e_ParticlesVertexPoolSize", "e_PermanentRenderObjects", "e_PhysFoliage", "e_PhysMinCellSize", "e_PhysOceanCell", "e_PhysProxyTriLimit", "e_Portals", "e_PortalsBigEntitiesFix", "e_PortalsBlend", "e_PortalsMaxRecursion", "e_PrecacheLevel", "e_PreloadDecals", "e_PreloadMaterials", "e_PrepareDeformableObjectsAtLoadTime", "e_ProcVegetation", "e_ProcVegetationMaxCacheLevels", "e_ProcVegetationMaxChunksInCache", "e_ProcVegetationMaxObjectsInChunk", "e_ProcVegetationMaxSectorsInCache", "e_ProcVegetationMaxViewDistance", "e_Recursion", "e_RecursionViewDistRatio", "e_Render", "e_RenderMeshCollisionTolerance", "e_RenderMeshUpdateAsync", "e_RNTmpDataPoolMaxFrames", "e_Roads", "e_Ropes", "e_ScissorDebug", "e_ScreenShot", "e_ScreenShotDebug", "e_ScreenShotFileFormat", "e_ScreenShotHeight", "e_ScreenShotMapCamHeight", "e_ScreenShotMapCenterX", "e_ScreenShotMapCenterY", "e_ScreenShotMapOrientation", "e_ScreenShotMapSizeX", "e_ScreenShotMapSizeY", "e_ScreenShotMinSlices", "e_ScreenShotQuality", "e_ScreenShotWidth", "e_Shadows", "e_ShadowsAdaptScale", "e_ShadowsBlendCascades", "e_ShadowsBlendCascadesVal", "e_ShadowsCacheObjectLod", "e_ShadowsCacheRenderCharacters", "e_ShadowsCacheUpdate", "e_ShadowsCascadesCentered", "e_ShadowsCascadesDebug", "e_ShadowsCastViewDistRatio", "e_ShadowsCastViewDistRatioLights", "e_ShadowsClouds", "e_ShadowsConstBias", "e_ShadowsConstBiasHQ", "e_ShadowsDebug", "e_ShadowsFrustums", "e_ShadowsLodBiasFixed", "e_ShadowsLodBiasInvis", "e_ShadowsMasksLimit", "e_ShadowsMaxTexRes", "e_ShadowsPerObject", "e_ShadowsPerObjectResolutionScale", "e_ShadowsPoolSize", "e_ShadowsResScale", "e_ShadowsSlopeBias", "e_ShadowsSlopeBiasHQ", "e_ShadowsTessellateCascades", "e_ShadowsTessellateDLights", "e_ShadowsUpdateViewDistRatio", "e_sketch_mode", "e_SkyBox", "e_SkyQuality", "e_SkyType", "e_SkyUpdateRate", "e_Sleep", "e_SQTestBegin", "e_SQTestCount", "e_SQTestDelay", "e_SQTestDistance", "e_SQTestExitOnFinish", "e_SQTestMip", "e_SQTestMoveSpeed", "e_SQTestTextureName", "e_StaticInstancing", "e_StaticInstancingMinInstNum", "e_StatObjBufferRenderTasks", "e_StatObjMerge", "e_StatObjMergeMaxTrisPerDrawCall", "e_StatObjPreload", "e_StatObjRenderFilter", "e_StatObjRenderFilterMode", "e_StatObjStoreMesh", "e_StatObjTessellationMode", "e_StatObjValidate", "e_StatoscopeAllowFpsOverride", "e_StatoscopeConnectTimeout", "e_StatoscopeCreateLogFilePerLevel", "e_StatoscopeDataGroups", "e_StatoscopeDumpAll", "e_StatoscopeEnabled", "e_StatoscopeFilenameUseBuildInfo", "e_StatoscopeFilenameUseDatagroups", "e_StatoscopeFilenameUseMap", "e_StatoscopeFilenameUseTag", "e_StatoscopeFilenameUseTime", "e_StatoscopeIvDataGroups", "e_StatoscopeLogDestination", "e_StatoscopeMaxNumFuncsPerFrame", "e_StatoscopeMinFuncLengthMs", "e_StatoscopeScreenCapWhenGPULimited", "e_StatoscopeScreenshotCapturePeriod", "e_StatoscopeWriteTimeout", "e_StreamAutoMipFactorMax", "e_StreamAutoMipFactorMaxDVD", "e_StreamAutoMipFactorMin", "e_StreamAutoMipFactorSpeedThreshold", "e_StreamCgf", "e_StreamCgfDebug", "e_StreamCgfDebugFilter", "e_StreamCgfDebugHeatMap", "e_StreamCgfDebugMinObjSize", "e_StreamCgfFastUpdateMaxDistance", "e_StreamCgfGridUpdateDistance", "e_StreamCgfMaxNewTasksPerUpdate", "e_StreamCgfMaxTasksInProgress", "e_StreamCgfPoolSize", "e_StreamCgfUpdatePerNodeDistance", "e_StreamCgfVisObjPriority", "e_StreamInstances", "e_StreamInstancesDistRatio", "e_StreamInstancesMaxTasks", "e_StreamPredictionAhead", "e_StreamPredictionAheadDebug", "e_StreamPredictionAlwaysIncludeOutside", "e_StreamPredictionBoxRadius", "e_StreamPredictionDistanceFar", "e_StreamPredictionDistanceNear", "e_StreamPredictionMaxVisAreaRecursion", "e_StreamPredictionMinFarZoneDistance", "e_StreamPredictionMinReportDistance", "e_StreamPredictionTexelDensity", "e_StreamPredictionUpdateTimeSlice", "e_StreamSaveStartupResultsIntoXML", "e_Sun", "e_SunAngleSnapDot", "e_SunAngleSnapSec", "e_svoDebug", "e_svoDispatchX", "e_svoDispatchY", "e_svoDVR", "e_svoDVR_DistRatio", "e_svoEnabled", "e_svoLoadTree", "e_svoMaxAreaSize", "e_svoMaxBricksOnCPU", "e_svoMaxBrickUpdates", "e_svoMaxNodeSize", "e_svoMaxStreamRequests", "e_svoMinNodeSize", "e_svoRender", "e_svoTI_Active", "e_svoTI_AnalyticalGI", "e_svoTI_AnalyticalOccluders", "e_svoTI_AnalyticalOccludersRange", "e_svoTI_AnalyticalOccludersSoftness", "e_svoTI_Apply", "e_svoTI_ConeMaxLength", "e_svoTI_ConstantAmbientDebug", "e_svoTI_Diffuse_Cache", "e_svoTI_Diffuse_Spr", "e_svoTI_DiffuseAmplifier", "e_svoTI_DiffuseBias", "e_svoTI_DiffuseConeWidth", "e_svoTI_DualTracing", "e_svoTI_DynLights", "e_svoTI_EmissiveMultiplier", "e_svoTI_ForceGIForAllLights", "e_svoTI_GsmCascadeLod", "e_svoTI_HalfresKernelPrimary", "e_svoTI_HalfresKernelSecondary", "e_svoTI_HighGlossOcclusion", "e_svoTI_InjectionMultiplier", "e_svoTI_IntegrationMode", "e_svoTI_LowSpecMode", "e_svoTI_MinReflectance", "e_svoTI_MinVoxelOpacity", "e_svoTI_NumberOfBounces", "e_svoTI_ObjectsLod", "e_svoTI_ObjectsMaxViewDistance", "e_svoTI_PointLightsMultiplier", "e_svoTI_PortalsDeform", "e_svoTI_PortalsInject", "e_svoTI_PropagationBooster", "e_svoTI_Reflect_Vox_Max", "e_svoTI_Reflect_Vox_Max_Overhead", "e_svoTI_Reflect_Vox_MaxEdit", "e_svoTI_ResScaleAir", "e_svoTI_ResScaleBase", "e_svoTI_RsmConeMaxLength", "e_svoTI_RsmUseColors", "e_svoTI_RT_MaxDist", "e_svoTI_Saturation", "e_svoTI_Shadow_Sev", "e_svoTI_SkipNonGILights", "e_svoTI_SkyColorMultiplier", "e_svoTI_Specular_FromDiff", "e_svoTI_Specular_Reproj", "e_svoTI_Specular_Sev", "e_svoTI_SpecularAmplifier", "e_svoTI_SSAOAmount", "e_svoTI_SSDepthTrace", "e_svoTI_SunRSMInject", "e_svoTI_TemporalFilteringBase", "e_svoTI_TranslucentBrightness", "e_svoTI_Troposphere_Active", "e_svoTI_Troposphere_Brightness", "e_svoTI_Troposphere_CloudGen_Freq", "e_svoTI_Troposphere_CloudGen_FreqStep", "e_svoTI_Troposphere_CloudGen_Height", "e_svoTI_Troposphere_CloudGen_Scale", "e_svoTI_Troposphere_CloudGenTurb_Freq", "e_svoTI_Troposphere_CloudGenTurb_Scale", "e_svoTI_Troposphere_Density", "e_svoTI_Troposphere_Ground_Height", "e_svoTI_Troposphere_Layer0_Dens", "e_svoTI_Troposphere_Layer0_Height", "e_svoTI_Troposphere_Layer0_Rand", "e_svoTI_Troposphere_Layer1_Dens", "e_svoTI_Troposphere_Layer1_Height", "e_svoTI_Troposphere_Layer1_Rand", "e_svoTI_Troposphere_Snow_Height", "e_svoTI_Troposphere_Subdivide", "e_svoTI_UpdateGeometry", "e_svoTI_UpdateLighting", "e_svoTI_UseLightProbes", "e_svoTI_UseTODSkyColor", "e_svoTI_VegetationMaxOpacity", "e_svoTI_VoxelizaionLODRatio", "e_svoTI_VoxelizaionPostpone", "e_svoTI_VoxelizeHiddenObjects", "e_svoTI_VoxelizeUnderTerrain", "e_svoVoxDistRatio", "e_svoVoxelPoolResolution", "e_svoVoxGenRes", "e_svoVoxNodeRatio", "e_Terrain", "e_TerrainBBoxes", "e_TerrainDeformations", "e_TerrainDetailMaterials", "e_TerrainDetailMaterialsDebug", "e_TerrainDetailMaterialsViewDistXY", "e_TerrainDetailMaterialsViewDistZ", "e_TerrainDrawThisSectorOnly", "e_TerrainLodDistRatio", "e_TerrainLodRatio", "e_TerrainLodRatioHolesMin", "e_TerrainMeshInstancingMinLod", "e_TerrainMeshInstancingShadowBias", "e_TerrainMeshInstancingShadowLodRatio", "e_TerrainOcclusionCulling", "e_TerrainOcclusionCullingDebug", "e_TerrainOcclusionCullingMaxDist", "e_TerrainOcclusionCullingMaxSteps", "e_TerrainOcclusionCullingPrecision", "e_TerrainOcclusionCullingPrecisionDistRatio", "e_TerrainOcclusionCullingStepSize", "e_TerrainOcclusionCullingStepSizeDelta", "e_TerrainTextureLodRatio", "e_TerrainTextureStreamingDebug", "e_TerrainTextureStreamingPoolItemsNum", "e_Tessellation", "e_TessellationMaxDistance", "e_texeldensity", "e_TimeOfDay", "e_TimeOfDayDebug", "e_TimeOfDaySpeed", "e_UseConsoleMtl", "e_Vegetation", "e_VegetationBending", "e_VegetationBoneInfo", "e_VegetationMinSize", "e_VegetationSprites", "e_VegetationSpritesBatching", "e_VegetationSpritesDistanceCustomRatioMin", "e_VegetationSpritesDistanceRatio", "e_VegetationSpritesMinDistance", "e_VegetationSpritesScaleFactor", "e_VegetationUseTerrainColor", "e_VegetationUseTerrainColorDistance", "e_ViewDistCompMaxSize", "e_ViewDistMin", "e_ViewDistRatio", "e_ViewDistRatioCustom", "e_ViewDistRatioDetail", "e_ViewDistRatioLights", "e_ViewDistRatioPortals", "e_ViewDistRatioVegetation", "e_VolObjShadowStrength", "e_VolumetricFog", "e_WaterOcean", "e_WaterOceanBottom", "e_WaterOceanFFT", "e_WaterRipplesDebug", "e_WaterTessellationAmount", "e_WaterTessellationAmountX", "e_WaterTessellationAmountY", "e_WaterTessellationSwathWidth", "e_WaterVolumes", "e_WaterWaves", "e_WaterWavesTessellationAmount", "e_Wind", "e_WindAreas", "e_WindBendingAreaStrength", "e_WindBendingDistRatio", "e_WindBendingStrength", "ed_backgroundUpdatePeriod", "ed_highlightGeometry", "ed_indexfiles", "ed_keepEditorActive", "ed_killmemory_size", "ed_logFileChanges", "ed_lowercasepaths", "ed_MissingAssetResolver", "ed_PhysToolHitExplPress0", "ed_PhysToolHitExplPress1", "ed_PhysToolHitExplR", "ed_PhysToolHitProjMass", "ed_PhysToolHitProjVel0", "ed_PhysToolHitProjVel1", "ed_PhysToolHitVelMax", "ed_PhysToolHitVelMin", "ed_popupMissingAssetResolver", "ed_showErrorDialogOnLoad", "ed_showFrozenHelpers", "ed_useDevManager", "es_activateEntity", "es_bboxes", "es_CharZOffsetSpeed", "es_deactivateEntity", "es_DebrisLifetimeScale", "es_debug", "es_debug_not_seen_timeout", "es_debugDrawEntityIDs", "es_debugEntityLifetime", "es_DebugEntityUsage", "es_DebugEntityUsageFilter", "es_DebugEvents", "es_DebugFindEntity", "es_DebugTimers", "es_DisableTriggers", "es_DrawAreaDebug", "es_DrawAreaGrid", "es_DrawAreas", "es_DrawAudioProxyZRay", "es_DrawProximityTriggers", "es_enable_full_script_save", "es_EntityUpdatePosDelta", "es_FarPhysTimeout", "es_helpers", "es_HitCharacters", "es_HitDeadBodies", "es_ImpulseScale", "es_LayerDebugInfo", "es_LayerSaveLoadSerialization", "es_log_collisions", "es_MaxImpulseAdjMass", "es_MaxJointFx", "es_MaxPhysDist", "es_MaxPhysDistCloth", "es_MaxPhysDistInvisible", "es_MinImpulseVel", "es_not_seen_timeout", "es_profileentities", "es_removeEntity", "es_SaveLoadUseLUANoSaveFlag", "es_SortUpdatesByClass", "es_SplashThreshold", "es_SplashTimeout", "es_UpdateAI", "es_UpdateCollision", "es_UpdateCollisionScript", "es_UpdateContainer", "es_UpdateEntities", "es_UpdatePhysics", "es_UpdateScript", "es_UpdateTimer", "es_updateType", "es_UsePhysVisibilityChecks", "es_VisCheckForUpdate", "ExitOnQuit", "fe_fbx_savetempfile", "ffs_debug", "fg_abortOnLoadError", "fg_debugmodules", "fg_debugmodules_filter", "fg_iDebugNextStep", "fg_iEnableFlowgraphNodeDebugging", "fg_inspectorLog", "fg_noDebugText", "fg_profile", "fg_SystemEnable", "g_aimdebug", "g_allowDisconnectIfUpdateFails", "g_allowSaveLoadInEditor", "g_breakage_debug", "g_breakage_mem_limit", "g_breakage_particles_limit", "g_breakageFadeDelay", "g_breakageFadeTime", "g_breakagelog", "g_breakageMinAxisInertia", "g_breakageNoDebrisCollisions", "g_breakageTreeDec", "g_breakageTreeInc", "g_breakageTreeIncGlass", "g_breakageTreeMax", "g_breakImpulseScale", "g_breaktimeoutframes", "g_debug_stats", "g_debugAspectChanges", "g_debugAspectFilterClass", "g_debugAspectFilterEntity", "g_debugAspectTrap", "g_debugAspectTrapCount", "g_debugDialogBuffers", "g_debugHardwareMouse", "g_debugRMI", "g_debugSaveLoadMemory", "g_disableInputKeyFlowNodeInDevMode", "g_disableSequencePlayback", "g_disableWinKeys", "g_displayCheckpointName", "g_distanceForceNoIk", "g_distanceForceNoLegRaycasts", "g_enableitems", "g_enableloadingscreen", "g_EnableLoadSave", "g_enableMergedMeshRuntimeAreas", "g_forceFastUpdate", "g_gameplayAnalyst", "g_glassAutoShatter", "g_glassAutoShatterMinArea", "g_glassAutoShatterOnExplosions", "g_glassForceTimeout", "g_glassForceTimeoutSpread", "g_glassMaxPanesToBreakPerFrame", "g_glassNoDecals", "g_glassSystemEnable", "g_groundAlignAll", "g_groundeffectsdebug", "g_handleEvents", "g_hostMigrationServerDelay", "g_immersive", "g_joint_breaking", "g_landingBobLandTimeFactor", "g_landingBobTimeFactor", "g_language", "g_languageAudio", "g_localPacketRate", "g_multiplayerEnableVehicles", "g_no_breaking_by_objects", "g_no_secondary_breaking", "g_playerInteractorRadius", "g_procedural_breaking", "g_saveLoadBasicEntityOptimization", "g_saveLoadExtendedLog", "g_saveLoadUseExportedEntityList", "g_showUpdateState", "g_spectatorCollisions", "g_statisticsMode", "g_syncClassRegistry", "g_tree_cut_reuse_dist", "g_userNeverAutoSignsIn", "g_useSinglePosition", "g_useXMLCPBinForSaveLoad", "g_visibilityTimeout", "g_visibilityTimeoutTime", "g_waterHitOnly", "g_XMLCPBAddExtraDebugInfoToXmlDebugFiles", "g_XMLCPBBlockQueueLimit", "g_XMLCPBGenerateXmlDebugFiles", "g_XMLCPBSizeReportThreshold", "g_XMLCPBUseExtraZLibCompression", "gamezero_cam_fov", "gamezero_controller_sensitivity", "gamezero_mouse_sensitivity", "gamezero_pl_boostMultiplier", "gamezero_pl_movementSpeed", "gfx_ampserver", "gfx_debugdraw", "gfx_draw", "gfx_enabled", "gfx_FlashReloadEnabled", "gfx_FlashReloadTime", "gfx_inputevents_triggerrepeat", "gfx_inputevents_triggerstart", "gfx_loadtimethread", "gfx_reloadonlanguagechange", "gfx_uiaction_enable", "gfx_uiaction_folder", "gfx_uiaction_log", "gfx_uiaction_log_filter", "gfx_uievents_editorenabled", "gpu_particle_physics", "gt_show", "gt_showFilter", "gt_showLines", "gt_showPosX", "gt_showPosY", "hmd_driver", "hmd_dynamic_prediction", "hmd_info", "hmd_ipd", "hmd_low_persistence", "hmd_perf_hud", "hmd_post_inject_camera", "hmd_projection", "hmd_projection_screen_dist", "hmd_quad_absolute", "hmd_quad_distance", "hmd_quad_width", "hmd_queue_ahead", "hmd_reference_point", "hmd_social_screen", "hmd_social_screen_keep_aspect", "http_password", "i_bufferedkeys", "i_debug", "i_debugDigitalButtons", "i_forcefeedback", "i_inventory_capacity", "i_itemSystemDebugMemStats", "i_kinectDebug", "i_kinectXboxConnect", "i_kinectXboxConnectIP", "i_kinectXboxConnectPort", "i_kinGlobalExpCorrectionFactor", "i_kinGlobalExpDeviationRadius", "i_kinGlobalExpJitterRadius", "i_kinGlobalExpPredictionFactor", "i_kinGlobalExpSmoothFactor", "i_kinSkeletonMovedDistance", "i_kinSkeletonSmoothType", "i_listActionMaps", "i_lying_item_limit_mp", "i_lying_item_limit_sp", "i_mouse_accel", "i_mouse_accel_max", "i_mouse_buffered", "i_mouse_inertia", "i_mouse_sensitivity", "i_mouse_smooth", "i_precache", "i_seatedTracking", "i_useKinect", "i_xinput", "i_xinput_deadzone_handling", "i_xinput_poll_time", "log_EnableRemoteConsole", "log_IncludeTime", "log_Module", "log_SpamDelay", "log_tick", "log_Verbosity", "log_VerbosityOverridesWriteToFile", "log_WriteToFile", "log_WriteToFileVerbosity", "lua_CodeCoverage", "lua_debugger", "lua_stackonmalloc", "lua_StopOnError", "MemInfo", "MemStats", "MemStatsMaxDepth", "MemStatsThreshold", "mfx_Debug", "mfx_DebugFlowGraphFX", "mfx_DebugVisual", "mfx_DebugVisualFilter", "mfx_Enable", "mfx_EnableAttachedEffects", "mfx_EnableFGEffects", "mfx_ParticleImpactThresh", "mfx_pfx_maxDist", "mfx_pfx_maxScale", "mfx_pfx_minScale", "mfx_RaisedSoundImpactThresh", "mfx_SerializeFGEffects", "mfx_SoundImpactThresh", "mfx_Timeout", "mi_defaultMaterial", "mn_allowEditableDatabasesInPureGame", "mn_LogToFile", "mn_override_preview_file", "mn_sequence_path", "mov_cameraPrecacheTime", "mov_debugSequences", "mov_NoCutscenes", "mov_overrideCam", "movie_physicalentity_animation_lerp", "movie_timeJumpTransitionTime", "net_availableBandwidthClient", "net_availableBandwidthServer", "net_backofftimeout", "net_breakage_sync_entities", "net_bw_aggressiveness", "net_channelstats", "net_connectivity_detection_interval", "net_debug_draw_scale", "net_debugChannelIndex", "net_debugEntityInfo", "net_debugEntityInfoClassName", "net_debugInfo", "net_debugVerboseLevel", "net_dedi_scheduler_client_base_port", "net_dedi_scheduler_server_port", "net_defaultBandwidthShares", "net_defaultPacketRate", "net_defaultPacketRateIdle", "net_disconnect_on_rmi_error", "net_enable_tfrc", "net_enable_voice_chat", "net_enable_watchdog_timer", "net_fragment_expiration_time", "net_highlatencythreshold", "net_highlatencytimelimit", "net_inactivitytimeout", "net_inactivitytimeoutDevmode", "net_keepalive_time", "net_lan_scanport_first", "net_lan_scanport_num", "net_lanbrowser", "net_lobbyUpdateFrequency", "net_log", "net_log_remote_methods", "net_max_fragmented_packets_per_source", "net_maxpacketsize", "net_meminfo", "net_minTCPFriendlyBitRate", "net_netMsgDispatcherDebug", "net_netMsgDispatcherLogging", "net_netMsgDispatcherWarnThreshold", "net_new_queue_behaviour", "net_numNetIDHighBitBits", "net_numNetIDLowBitBits", "net_numNetIDMediumBitBits", "net_packet_read_debug_output", "net_packetfragmentlossrate", "net_PacketLagMax", "net_PacketLagMin", "net_PacketLossRate", "net_phys_debug", "net_phys_lagsmooth", "net_phys_pingsmooth", "net_ping_time", "net_profile_budget_logging", "net_profile_budget_logname", "net_profile_deep_bandwidth_logging", "net_profile_deep_bandwidth_logname", "net_profile_enable", "net_profile_logging", "net_profile_logname", "net_profile_show_socket_measurements", "net_profile_untouched_delay", "net_profile_worst_num_channels", "net_receiveQueueSize", "net_remotetimeestimationwarning", "net_safetysleeps", "net_scheduler_debug", "net_scheduler_debug_mode", "net_scheduler_expiration_period", "net_sendQueueSize", "net_sim_loadprofiles", "net_SimUseProfile", "net_socketBoostTimeout", "net_socketMaxTimeout", "net_socketMaxTimeoutMultiplayer", "net_stats_login", "net_stats_pass", "osm_debug", "osm_enabled", "osm_fbMinScale", "osm_fbScaleDeltaDown", "osm_fbScaleDeltaUp", "osm_historyLength", "osm_stress", "osm_targetFPS", "osm_targetFPSTolerance", "p_accuracy_LCPCG", "p_accuracy_LCPCG_no_improvement", "p_accuracy_MC", "p_approx_caps_len", "p_break_on_validation", "p_CharacterIK", "p_check_out_of_bounds", "p_collision_mode", "p_cull_distance", "p_damping_group_size", "p_debug_explosions", "p_debug_joints", "p_do_step", "p_draw_helpers", "p_draw_helpers_num", "p_enforce_contacts", "p_ent_grid_use_obb", "p_fixed_timestep", "p_fly_mode", "p_force_sync", "p_GEB_max_cells", "p_gravity_z", "p_group_damping", "p_joint_damage_accum", "p_joint_damage_accum_threshold", "p_joint_gravity_step", "p_jump_to_profile_ent", "p_lattice_max_iters", "p_limit_simple_solver_energy", "p_list_active_objects", "p_log_lattice_tension", "p_max_approx_caps", "p_max_bone_velocity", "p_max_contact_gap", "p_max_contact_gap_player", "p_max_contact_gap_simple", "p_max_contacts", "p_max_debris_mass", "p_max_entity_cells", "p_max_LCPCG_contacts", "p_max_LCPCG_fruitless_iters", "p_max_LCPCG_iters", "p_max_LCPCG_microiters", "p_max_LCPCG_microiters_final", "p_max_LCPCG_subiters", "p_max_LCPCG_subiters_final", "p_max_MC_iters", "p_max_MC_mass_ratio", "p_max_MC_vel", "p_max_object_splashes", "p_max_plane_contacts", "p_max_plane_contacts_distress", "p_max_player_velocity", "p_max_substeps", "p_max_substeps_large_group", "p_max_unproj_vel", "p_max_velocity", "p_max_world_step", "p_min_LCPCG_improvement", "p_min_MC_iters", "p_min_separation_speed", "p_net_debugDraw", "p_net_extrapmax", "p_net_interp", "p_net_sequencefrequency", "p_num_bodies_large_group", "p_num_startup_overload_checks", "p_num_threads", "p_penalty_scale", "p_players_can_break", "p_profile", "p_profile_entities", "p_profile_functions", "p_prohibit_unprojection", "p_proxy_highlight_range", "p_proxy_highlight_threshold", "p_ray_fadeout", "p_ray_peak_time", "p_rope_collider_size_limit", "p_single_step_mode", "p_skip_redundant_colldet", "p_splash_dist0", "p_splash_dist1", "p_splash_force0", "p_splash_force1", "p_splash_vel0", "p_splash_vel1", "p_tick_breakable", "p_time_granularity", "p_unproj_vel_scale", "p_use_distance_contacts", "p_use_unproj_vel", "p_wireframe_distance", "pp_LoadOnlineAttributes", "pp_RichSaveGames", "pp_RSFDebugWrite", "pp_RSFDebugWriteOnLoad", "profile", "profile_additionalsub", "profile_allthreads", "profile_callstack", "profile_deep", "profile_disk", "profile_disk_budget", "profile_disk_max_draw_items", "profile_disk_max_items", "profile_disk_timeframe", "profile_disk_type_filter", "profile_filter", "profile_filter_thread", "profile_graph", "profile_graphScale", "profile_log", "profile_network", "profile_pagefaults", "profile_peak", "profile_peak_display", "profile_sampler", "profile_sampler_max_samples", "profile_smooth", "profile_weighting", "profileStreaming", "q_Renderer", "q_ShaderFX", "q_ShaderGeneral", "q_ShaderGlass", "q_ShaderHDR", "q_ShaderIce", "q_ShaderMetal", "q_ShaderPostProcess", "q_ShaderShadow", "q_ShaderSky", "q_ShaderTerrain", "q_ShaderVegetation", "q_ShaderWater", "r_3MonHack", "r_3MonHackHUDFOVX", "r_3MonHackHUDFOVY", "r_3MonHackLeftCGFOffsetX", "r_3MonHackRightCGFOffsetX", "r_AllowLiveMoCap", "r_AntialiasingMode", "r_AntialiasingModeDebug", "r_AntialiasingModeSCull", "r_AntialiasingTAAFalloffHiFreq", "r_AntialiasingTAAFalloffLowFreq", "r_AntialiasingTAAPattern", "r_AntialiasingTAASharpening", "r_ArmourPulseSpeedMultiplier", "r_auxGeom", "r_Batching", "r_BatchType", "r_Beams", "r_BreakOnError", "r_Brightness", "r_buffer_banksize", "r_buffer_enable_lockless_updates", "r_buffer_pool_defrag_dynamic", "r_buffer_pool_defrag_max_moves", "r_buffer_pool_defrag_static", "r_buffer_pool_max_allocs", "r_buffer_sli_workaround", "r_CBufferUseNativeDepth", "r_Character_NoDeform", "r_ChromaticAberration", "r_CloakFadeByDist", "r_CloakFadeLightScale", "r_CloakFadeMaxDistSq", "r_CloakFadeMinDistSq", "r_CloakFadeMinValue", "r_CloakHeatScale", "r_cloakHighlightStrength", "r_CloakInterferenceSparksAlpha", "r_CloakLightScale", "r_CloakMinAmbientIndoors", "r_CloakMinAmbientOutdoors", "r_CloakMinLightValue", "r_CloakRefractionFadeByDist", "r_CloakRefractionFadeMaxDistSq", "r_CloakRefractionFadeMinDistSq", "r_CloakRefractionFadeMinValue", "r_CloakRenderInThermalVision", "r_CloakSparksAlpha", "r_CloakTransitionLightScale", "r_CloudsDebug", "r_CloudsUpdateAlways", "r_ColorBits", "r_ColorGrading", "r_ColorGradingCharts", "r_ColorGradingChartsCache", "r_ColorGradingFilters", "r_ColorGradingLevels", "r_ColorGradingSelectiveColor", "r_ColorRangeCompression", "r_ComputeSkinning", "r_ComputeSkinningDebugDraw", "r_ComputeSkinningMorphs", "r_ComputeSkinningTangents", "r_ConditionalRendering", "r_ConsoleBackbufferHeight", "r_ConsoleBackbufferWidth", "r_constantbuffer_banksize", "r_constantbuffer_watermarm", "r_Contrast", "r_CustomResHeight", "r_CustomResMaxSize", "r_CustomResPreview", "r_CustomResWidth", "r_CustomVisions", "r_D3D12AsynchronousCompute", "r_D3D12BatchResourceBarriers", "r_D3D12EarlyResourceBarriers", "r_D3D12HardwareComputeQueue", "r_D3D12HardwareCopyQueue", "r_D3D12SubmissionThread", "r_D3D12WaitableSwapChain", "r_DebugFontRendering", "r_DebugGBuffer", "r_DebugLayerEffect", "r_DebugLights", "r_DebugLightVolumes", "r_DebugRefraction", "r_DebugRenderMode", "r_DeferredDecals", "r_deferredDecalsDebug", "r_DeferredShadingAmbient", "r_DeferredShadingAmbientLights", "r_DeferredShadingAmbientSClear", "r_DeferredShadingAreaLights", "r_DeferredShadingDBTstencil", "r_DeferredShadingDebug", "r_DeferredShadingDepthBoundsTest", "r_DeferredShadingEnvProbes", "r_DeferredShadingFilterGBuffer", "r_DeferredShadingLBuffersFmt", "r_DeferredShadingLightLodRatio", "r_DeferredShadingLights", "r_DeferredShadingLightStencilRatio", "r_DeferredShadingLightVolumes", "r_DeferredShadingScissor", "r_DeferredShadingSortLights", "r_DeferredShadingSSS", "r_DeferredShadingStencilPrepass", "r_DeferredShadingTiled", "r_DeferredShadingTiledDebug", "r_DeferredShadingTiledHairQuality", "r_DepthBits", "r_DepthOfField", "r_DepthOfFieldBokehQuality", "r_DepthOfFieldDilation", "r_DepthOfFieldMode", "r_DetailDistance", "r_DetailTextures", "r_DisplayInfo", "r_displayinfoTargetFPS", "r_dofMinZ", "r_dofMinZBlendMult", "r_dofMinZScale", "r_DrawNearFarPlane", "r_DrawNearFoV", "r_DrawNearShadows", "r_DrawNearZRange", "r_Driver", "r_durango_async_dips", "r_durango_async_dips_sync", "r_DynTexAtlasCloudsMaxSize", "r_DynTexAtlasDynTexSrcSize", "r_DynTexAtlasSpritesMaxSize", "r_DynTexAtlasVoxTerrainMaxSize", "r_DynTexMaxSize", "r_DynTexSourceSharedRTHeight", "r_DynTexSourceSharedRTWidth", "r_DynTexSourceUseSharedRT", "r_enable_full_gpu_sync", "r_enableAltTab", "r_enableAuxGeom", "r_EnableDebugLayer", "r_EnvCMResolution", "r_EnvTexResolution", "r_EnvTexUpdateInterval", "r_ExcludeMesh", "r_ExcludeShader", "r_FlareHqShafts", "r_Flares", "r_FlaresChromaShift", "r_FlaresIrisShaftMaxPolyNum", "r_FlaresTessellationRatio", "r_FlashMatTexResQuality", "r_FogDepthTest", "r_FogShadows", "r_FogShadowsMode", "r_FogShadowsWater", "r_Fullscreen", "r_FullscreenNativeRes", "r_FullscreenPreemption", "r_FullscreenWindow", "r_Gamma", "r_GeomCacheInstanceThreshold", "r_GeomInstancing", "r_GeomInstancingDebug", "r_GeomInstancingThreshold", "r_GetScreenShot", "r_GpuParticles", "r_GpuParticlesConstantRadiusBoundingBoxes", "r_GpuPhysicsFluidDynamicsDebug", "r_GraphicsPipeline", "r_GraphStyle", "r_HDRBloom", "r_HDRBloomQuality", "r_HDRDebug", "r_HDREyeAdaptationMode", "r_HDREyeAdaptationSpeed", "r_HDRGrainAmount", "r_HDRRangeAdapt", "r_HDRRangeAdaptationSpeed", "r_HDRRangeAdaptLBufferMax", "r_HDRRangeAdaptLBufferMaxRange", "r_HDRRangeAdaptMax", "r_HDRRangeAdaptMaxRange", "r_HDRRendering", "r_HDRTexFormat", "r_HDRVignetting", "r_Height", "r_HeightMapAO", "r_HeightMapAOAmount", "r_HeightMapAORange", "r_HeightMapAOResolution", "r_HideSunInCubemaps", "r_ImposterRatio", "r_ImpostersDraw", "r_ImpostersUpdatePerFrame", "r_LightsSinglePass", "r_Log", "r_LogShaders", "r_LogTexStreaming", "r_LogVBuffers", "r_LogVidMem", "r_MaterialsBatching", "r_MaxSuitPulseSpeedMultiplier", "r_MeasureOverdraw", "r_MeasureOverdrawScale", "r_MergeShadowDrawcalls", "r_MeshInstancePoolSize", "r_MeshPoolSize", "r_MeshPrecache", "r_minimizeLatency", "r_MotionBlur", "r_MotionBlurCameraMotionScale", "r_MotionBlurGBufferVelocity", "r_MotionBlurMaxViewDist", "r_MotionBlurQuality", "r_MotionBlurShutterSpeed", "r_MotionBlurThreshold", "r_MotionVectors", "r_MouseCursorTexture", "r_MSAA", "r_MSAA_debug", "r_MSAA_quality", "r_MSAA_samples", "r_MSAA_threshold_depth", "r_MSAA_threshold_normal", "r_MultiGPU", "r_MultiThreaded", "r_MultiThreadedDrawing", "r_MultiThreadedDrawingMinJobSize", "r_NightVision", "r_NightVisionBrightLevel", "r_NightVisionCamMovNoiseAmount", "r_NightVisionCamMovNoiseBlendSpeed", "r_NightVisionFinalMul", "r_NightVisionSonarLifetime", "r_NightVisionSonarMultiplier", "r_NightVisionSonarRadius", "r_NoDraw", "r_NoDrawNear", "r_NoDrawShaders", "r_NoHWGamma", "r_NormalsLength", "r_overrideDXGIAdapter", "r_overrideDXGIOutput", "r_overrideDXGIOutputFS", "r_overrideRefreshRate", "r_overrideScanlineOrder", "r_OverscanBorderScaleX", "r_OverscanBorderScaleY", "r_OverscanBordersDrawDebugView", "r_ParticlesAmountGI", "r_ParticlesDebug", "r_ParticlesHalfRes", "r_ParticlesHalfResAmount", "r_ParticlesHalfResBlendMode", "r_ParticlesInstanceVertices", "r_ParticlesRefraction", "r_ParticlesSoftIsec", "r_ParticlesTessellation", "r_ParticlesTessellationTriSize", "r_ParticleVerticePoolSize", "r_PostProcessEffects", "r_PostProcessFilters", "r_PostProcessGameFx", "r_PostProcessHUD3D", "r_PostProcessHUD3DCache", "r_PostProcessHUD3DDebugView", "r_PostProcessHUD3DGlowAmount", "r_PostProcessHUD3DShadowAmount", "r_PostProcessHUD3DStencilClear", "r_PostProcessNanoGlassDebugView", "r_PostProcessParamsBlending", "r_PostprocessParamsBlendingTimeScale", "r_PostProcessReset", "r_PredicatedTiling", "r_PrintMemoryLeaks", "r_profiler", "r_profilerTargetFPS", "r_Rain", "r_RainAmount", "r_RainDistMultiplier", "r_RainDropsEffect", "r_RainIgnoreNearest", "r_RainMaxViewDist", "r_RainMaxViewDist_Deferred", "r_RainOccluderSizeTreshold", "r_RC_AutoInvoke", "r_ReadZBufferDirectlyFromVMEM", "r_Reflections", "r_ReflectionsOffset", "r_ReflectionsQuality", "r_ReflectTextureSlots", "r_Refraction", "r_RefractionPartialResolves", "r_RefractionPartialResolvesDebug", "r_ReleaseAllResourcesOnExit", "r_ReloadShaders", "r_RenderMeshHashGridUnitSize", "r_RenderTargetPoolSize", "r_ReprojectOnlyStaticObjects", "r_ReverseDepth", "r_Scissor", "r_ShaderCompilerDontCache", "r_ShaderCompilerFolderName", "r_ShaderCompilerFolderSuffix", "r_ShaderCompilerPort", "r_ShaderCompilerServer", "r_ShaderEmailCCs", "r_ShaderEmailTags", "r_ShadersAllowCompilation", "r_ShadersAsyncActivation", "r_ShadersAsyncCompiling", "r_ShadersAsyncMaxThreads", "r_ShadersCacheDeterministic", "r_ShadersCompileAutoActivate", "r_ShadersDebug", "r_ShadersDurango", "r_ShadersDX11", "r_ShadersEditing", "r_ShadersExport", "r_ShadersGL4", "r_ShadersGLES3", "r_ShadersIgnoreIncludesChanging", "r_ShadersImport", "r_ShadersLazyUnload", "r_ShadersLogCacheMisses", "r_ShadersOrbis", "r_ShadersPrecacheAllLights", "r_ShadersRemoteCompiler", "r_ShadersSubmitRequestline", "r_ShadowBlur", "r_ShadowBluriness", "r_ShadowCastingLightsMaxCount", "r_ShadowGen", "r_ShadowGenDepthClip", "r_ShadowGenMode", "r_ShadowJittering", "r_ShadowMaskStencilPrepass", "r_ShadowPass", "r_ShadowPoolMaxFrames", "r_ShadowPoolMaxTimeslicedUpdatesPerFrame", "r_ShadowsAdaptionMin", "r_ShadowsAdaptionRangeClamp", "r_ShadowsAdaptionSize", "r_ShadowsBias", "r_ShadowsCache", "r_ShadowsCacheFormat", "r_ShadowsCacheResolutions", "r_ShadowsDepthBoundNV", "r_ShadowsGridAligned", "r_ShadowsMaskDownScale", "r_ShadowsMaskResolution", "r_ShadowsNearestMapResolution", "r_ShadowsParticleAnimJitterAmount", "r_ShadowsParticleJitterAmount", "r_ShadowsParticleKernelSize", "r_ShadowsParticleNormalEffect", "r_ShadowsPCFiltering", "r_ShadowsScreenSpace", "r_ShadowsStencilPrePass", "r_ShadowsUseClipVolume", "r_ShadowTexFormat", "r_Sharpening", "r_ShowBufferUsage", "r_ShowDynTextures", "r_ShowDynTexturesFilter", "r_ShowDynTexturesMaxCount", "r_ShowLightBounds", "r_ShowLines", "r_ShowNormals", "r_ShowTangents", "r_ShowTexture", "r_ShowTimeGraph", "r_ShowVideoMemoryStats", "r_SilhouettePOM", "r_SkipAlphaTested", "r_Snow", "r_SnowDisplacement", "r_SnowFlakeClusters", "r_SnowHalfRes", "r_SoftAlphaTest", "r_SonarVision", "r_ssdo", "r_ssdoAmountAmbient", "r_ssdoAmountDirect", "r_ssdoAmountReflection", "r_ssdoColorBleeding", "r_ssdoHalfRes", "r_ssdoRadius", "r_ssdoRadiusMax", "r_ssdoRadiusMin", "r_SSReflections", "r_SSReflHalfRes", "r_Stats", "r_statsMinDrawCalls", "r_StencilBits", "r_StereoDevice", "r_StereoEnableMgpu", "r_StereoEyeDist", "r_StereoFlipEyes", "r_StereoGammaAdjustment", "r_StereoHudScreenDist", "r_StereoMode", "r_StereoNearGeoScale", "r_StereoOutput", "r_stereoScaleCoefficient", "r_StereoScreenDist", "r_StereoStrength", "r_sunshafts", "r_Supersampling", "r_SupersamplingFilter", "r_SyncToFrameFence", "r_TessellationDebug", "r_TessellationTriangleSize", "r_TexAtlasSize", "r_TexBindMode", "r_TexelsPerMeter", "r_TexLog", "r_TexMaxAnisotropy", "r_TexMinAnisotropy", "r_TexNoAnisoAlphaTest", "r_TexNoLoad", "r_TexPostponeLoading", "r_TexPreallocateAtlases", "r_TextureCompiling", "r_TextureCompilingIndicator", "r_TextureCompressor", "r_TextureLodDistanceRatio", "r_texturesskiplowermips", "r_TexturesStreaming", "r_TexturesStreamingDebug", "r_TexturesStreamingDebugDumpIntoLog", "r_TexturesStreamingDebugFilter", "r_TexturesStreamingDebugMinMip", "r_TexturesStreamingDebugMinSize", "r_texturesstreamingDeferred", "r_TexturesStreamingDisableNoStreamDuringLoad", "r_texturesstreamingJobUpdate", "r_TexturesStreamingMaxRequestedJobs", "r_TexturesStreamingMaxRequestedMB", "r_TexturesStreamingMinReadSizeKB", "r_texturesstreamingMinUsableMips", "r_TexturesStreamingMipBias", "r_TexturesStreamingMipClampDVD", "r_TexturesStreamingMipFading", "r_TexturesStreamingNoUpload", "r_TexturesStreamingOnlyVideo", "r_TexturesStreamingPostponeMips", "r_TexturesStreamingPostponeThresholdKB", "r_texturesstreamingPostponeThresholdMip", "r_TexturesStreamingPrecacheRounds", "r_TexturesStreamingResidencyEnabled", "r_TexturesStreamingResidencyThrottle", "r_TexturesStreamingResidencyTime", "r_TexturesStreamingResidencyTimeTestLimit", "r_texturesstreamingSkipMips", "r_TexturesStreamingSuppress", "r_TexturesStreamingSync", "r_TexturesStreamingUpdateType", "r_texturesstreampooldefragmentation", "r_texturesstreampooldefragmentationmaxamount", "r_texturesstreampooldefragmentationmaxmoves", "r_TexturesStreamPoolSecondarySize", "r_TexturesStreamPoolSize", "r_ThermalVision", "r_ThermalVisionViewCloakFlickerMaxIntensity", "r_ThermalVisionViewCloakFlickerMinIntensity", "r_ThermalVisionViewCloakFrequencyPrimary", "r_ThermalVisionViewCloakFrequencySecondary", "r_ThermalVisionViewDistance", "r_transient_pool_size", "r_TransparentPasses", "r_TranspDepthFixup", "r_Unlit", "r_UpdateInstances", "r_UseDisplacementFactor", "r_UseESRAM", "r_UseHWSkinning", "r_UseMaterialLayers", "r_UseMergedPosts", "r_UsePersistentRTForModelHUD", "r_UseShadowsPool", "r_UseZPass", "r_ValidateDraw", "r_VegetationSpritesDebug", "r_VegetationSpritesGenAlways", "r_VegetationSpritesMaxLightingUpdates", "r_VegetationSpritesNoGen", "r_VegetationSpritesTexRes", "r_VisAreaClipLightsPerPixel", "r_VolumetricClouds", "r_VolumetricCloudsPipeline", "r_VolumetricCloudsRaymarchStepNum", "r_VolumetricCloudsShadowResolution", "r_VolumetricCloudsStereoReprojection", "r_VolumetricCloudsTemporalReprojection", "r_VolumetricFogDownscaledSunShadow", "r_VolumetricFogDownscaledSunShadowRatio", "r_VolumetricFogMinimumLightBulbSize", "r_VolumetricFogReprojectionBlendFactor", "r_VolumetricFogReprojectionMode", "r_VolumetricFogSample", "r_VolumetricFogShadow", "r_VolumetricFogSunLightCorrection", "r_VolumetricFogTexDepth", "r_VolumetricFogTexScale", "r_VSync", "r_WaterCaustics", "r_WaterCausticsDeferred", "r_WaterCausticsDistance", "r_WaterGodRays", "r_WaterGodRaysDistortion", "r_WaterReflections", "r_WaterReflectionsMGPU", "r_WaterReflectionsMinVisiblePixelsUpdate", "r_WaterReflectionsMinVisUpdateDistanceMul", "r_WaterReflectionsMinVisUpdateFactorMul", "r_WaterReflectionsQuality", "r_WaterReflectionsUseMinOffset", "r_WaterTessellationHW", "r_WaterUpdateDistance", "r_WaterUpdateFactor", "r_WaterUpdateThread", "r_WaterVolumeCaustics", "r_WaterVolumeCausticsDensity", "r_WaterVolumeCausticsMaxDist", "r_WaterVolumeCausticsRes", "r_WaterVolumeCausticsSnapFactor", "r_Width", "r_WindowIconTexture", "r_wireframe", "r_ZFightingDepthScale", "r_ZFightingExtrude", "r_ZPassDepthSorting", "r_ZPassOnly", "r_ZPrepassMaxDist", "rc_debugVerboseLevel", "rcon_password", "s_AudioEventPoolSize", "s_AudioImplName", "s_AudioLoggingOptions", "s_AudioObjectPoolSize", "s_AudioObjectsDebugFilter", "s_AudioObjectsRayType", "s_AudioPrimaryPoolSize", "s_AudioProxiesInitType", "s_AudioStandaloneFilePoolSize", "s_AudioTriggersDebugFilter", "s_DefaultStandaloneFilesAudioTrigger", "s_DrawAudioDebug", "s_FileCacheManagerDebugFilter", "s_FileCacheManagerSize", "s_FullObstructionMaxDistance", "s_IgnoreWindowFocus", "s_OcclusionHighDistance", "s_OcclusionMaxDistance", "s_OcclusionMaxSyncDistance", "s_OcclusionMediumDistance", "s_OcclusionRayLengthOffset", "s_PositionUpdateThreshold", "s_SDLMixerPrimaryPoolSize", "s_SDLMixerStandaloneFileExtension", "s_ShowActiveAudioObjectsOnly", "s_TickWithMainThread", "s_VelocityTrackingThreshold", "STAP_DEBUG", "STAP_DISABLE", "STAP_LOCK_EFFECTOR", "STAP_OVERRIDE_TRACK_FACTOR", "STAP_TRANSLATION_FEATHER", "STAP_TRANSLATION_FUDGE", "stats_FpsBuckets", "stats_PakFile", "stats_Particles", "stats_RenderBatchStats", "stats_RenderSummary", "stats_Warnings", "sv_AISystem", "sv_autoconfigurl", "sv_bandwidth", "sv_bind", "sv_DedicatedCPUPercent", "sv_DedicatedCPUVariance", "sv_DedicatedMaxRate", "sv_dumpstats", "sv_dumpstatsperiod", "sv_gamerules", "sv_gamerulesdefault", "sv_lanonly", "sv_levelrotation", "sv_LoadAllLayersForResList", "sv_map", "sv_maxmemoryusage", "sv_maxplayers", "sv_maxspectators", "sv_packetRate", "sv_password", "sv_port", "sv_ranked", "sv_requireinputdevice", "sv_servername", "sv_timeofdayenable", "sv_timeofdaylength", "sv_timeofdaystart", "sv_timeout_disconnect", "sw_debugInfo", "sw_draw_bbox", "sw_forceGlobalInSWForNewAI", "sw_gridSize", "sys_affinity", "sys_AI", "sys_asserts", "sys_audio_disable", "sys_bp_frames", "sys_bp_frames_threshold", "sys_bp_time_threshold", "sys_budget_frametime", "sys_budget_numdrawcalls", "sys_budget_numpolys", "sys_budget_soundchannels", "sys_budget_soundCPU", "sys_budget_soundmem", "sys_budget_streamingthroughput", "sys_budget_sysmem", "sys_budget_videomem", "sys_build_folder", "sys_DeactivateConsole", "sys_debug_plugins", "sys_deferAudioUpdateOptim", "sys_display_threads", "sys_dll_ai", "sys_dll_game", "sys_dll_response_system", "sys_dump_aux_threads", "sys_dump_type", "sys_enable_budgetmonitoring", "sys_entities", "sys_error_debugbreak", "sys_filesystemCaseSensitivity", "sys_firstlaunch", "sys_flash", "sys_flash_address_space", "sys_flash_allow_reset_mesh_cache", "sys_flash_check_filemodtime", "sys_flash_curve_tess_error", "sys_flash_debugdraw", "sys_flash_debugdraw_depth", "sys_flash_debuglog", "sys_flash_edgeaa", "sys_flash_info", "sys_flash_info_histo_scale", "sys_flash_info_peak_exclude", "sys_flash_info_peak_tolerance", "sys_flash_log_options", "sys_flash_reset_mesh_cache", "sys_flash_static_pool_size", "sys_flash_stereo_maxparallax", "sys_flash_use_arenas", "sys_flash_video_soundvolume", "sys_flash_video_subaudiovolume", "sys_flash_warning_level", "sys_float_exceptions", "sys_force_installtohdd_mode", "sys_game_folder", "sys_game_name", "sys_highrestimer", "sys_ime", "sys_initpreloadpacks", "sys_job_system_enable", "sys_job_system_filter", "sys_job_system_max_worker", "sys_job_system_profiler", "sys_keyboard", "sys_keyboard_break", "sys_limit_phys_thread_count", "sys_livecreate", "sys_LoadFrontendShaderCache", "sys_localization_debug", "sys_localization_encode", "sys_localization_folder", "sys_LocalMemoryDiagramAlpha", "sys_LocalMemoryDiagramDistance", "sys_LocalMemoryDiagramRadius", "sys_LocalMemoryDiagramStreamingSpeedDistance", "sys_LocalMemoryDiagramStreamingSpeedRadius", "sys_LocalMemoryDiagramWidth", "sys_LocalMemoryDrawText", "sys_LocalMemoryGeometryLimit", "sys_LocalMemoryGeometryStreamingSpeedLimit", "sys_LocalMemoryInnerViewDistance", "sys_LocalMemoryLogText", "sys_LocalMemoryMaxMSecBetweenCalls", "sys_LocalMemoryObjectAlpha", "sys_LocalMemoryObjectHeight", "sys_LocalMemoryObjectWidth", "sys_LocalMemoryOptimalMSecPerSec", "sys_LocalMemoryOuterViewDistance", "sys_LocalMemoryStreamingSpeedObjectLength", "sys_LocalMemoryStreamingSpeedObjectWidth", "sys_LocalMemoryTextureLimit", "sys_LocalMemoryTextureStreamingSpeedLimit", "sys_LocalMemoryWarningRatio", "sys_log_asserts", "sys_logallocations", "sys_max_step", "sys_MaxFPS", "sys_maxTimeStepForMovieSystem", "sys_memory_debug", "sys_MemoryDeadListSize", "sys_menupreloadpacks", "sys_min_step", "sys_no_crash_dialog", "sys_noupdate", "sys_PakDisableNonLevelRelatedPaks", "sys_PakInMemorySizeLimit", "sys_PakLoadCache", "sys_PakLoadModePaks", "sys_PakLogAllFileAccess", "sys_PakLogInvalidFileAccess", "sys_PakLogMissingFiles", "sys_PakMessageInvalidFileAccess", "sys_PakPriority", "sys_PakReadSlice", "sys_PakSaveFastLoadResourceList", "sys_PakSaveLevelResourceList", "sys_PakSaveMenuCommonResourceList", "sys_PakSaveTotalResourceList", "sys_PakStreamCache", "sys_PakTotalInMemorySizeLimit", "sys_PakValidateFileHash", "sys_perfhud", "sys_perfhud_fpsBucketsExclusive", "sys_perfhud_pause", "sys_physics", "sys_physics_enable_MT", "sys_preload", "sys_ProfileLevelLoading", "sys_ProfileLevelLoadingDump", "sys_rendersplashscreen", "sys_resource_cache_folder", "sys_root", "sys_scale3DMouseTranslation", "sys_Scale3DMouseYPR", "sys_screensaver_allowed", "sys_simple_http_base_port", "sys_SimulateTask", "sys_spec", "sys_spec_full", "sys_spec_gameeffects", "sys_spec_light", "sys_spec_objectdetail", "sys_spec_particles", "sys_spec_physics", "sys_spec_postprocessing", "sys_spec_quality", "sys_spec_shading", "sys_spec_shadows", "sys_spec_sound", "sys_spec_texture", "sys_spec_textureresolution", "sys_spec_volumetriceffects", "sys_spec_water", "sys_SSInfo", "sys_streaming_debug", "sys_streaming_debug_filter", "sys_streaming_debug_filter_file_name", "sys_streaming_debug_filter_min_time", "sys_streaming_in_blocks", "sys_streaming_max_bandwidth", "sys_streaming_max_finalize_per_frame", "sys_streaming_memory_budget", "sys_streaming_requests_grouping_time_period", "sys_streaming_resetstats", "sys_streaming_use_optical_drive_thread", "sys_target_platforms", "sys_trackview", "sys_UncachedStreamReads", "sys_update_profile_time", "sys_use_mono", "sys_usePlatformSavingAPI", "sys_usePlatformSavingAPIEncryption", "sys_user_folder", "sys_version", "sys_vr_support", "sys_vtune", "sys_warnings", "sys_WER", "t_Debug", "t_FixedStep", "t_MaxStep", "t_Scale", "t_Smoothing", "v_autoDisable", "v_clientPredict", "v_clientPredictAdditionalTime", "v_clientPredictMaxTime", "v_clientPredictSmoothing", "v_clientPredictSmoothingConst", "v_debug_flip_over", "v_debug_mem", "v_debug_reorient", "v_debugCollisionDamage", "v_debugdraw", "v_debugSuspensionIK", "v_debugVehicle", "v_debugViewAbove", "v_debugViewAboveH", "v_debugViewDetach", "v_disable_hull", "v_disableEntry", "v_draw_components", "v_draw_helpers", "v_draw_passengers", "v_draw_seats", "v_draw_tm", "v_driverControlledMountedGuns", "v_enableMannequin", "v_FlippedExplosionPlayerMinDistance", "v_FlippedExplosionRetryTimeMS", "v_FlippedExplosionTimeToExplode", "v_goliathMode", "v_independentMountedGuns", "v_lights", "v_lights_enable_always", "v_playerTransitions", "v_ragdollPassengers", "v_serverControlled", "v_set_passenger_tm", "v_show_all", "v_slipFrictionModFront", "v_slipFrictionModRear", "v_slipSlopeFront", "v_slipSlopeRear", "v_staticTreadDeform", "v_testClientPredict", "v_transitionAnimations", "v_vehicle_quality" ] }, "commands": { "$id": "/definitions/commands", "type": "string", "title": "Command name", "description": "Console command name", "default": "", "enum": [ "_TestFormatMessage", "ai_CheckGoalpipes", "ai_commTest", "ai_commTestStop", "ai_DebugAgent", "ai_debugMNMAgentType", "ai_dumpCheckpoints", "ai_MNMCalculateAccessibility", "ai_MNMComputeConnectedIslands", "ai_NavigationReloadConfig", "ai_Recorder_Start", "ai_Recorder_Stop", "ai_reload", "ai_resetCommStats", "ai_writeCommStats", "audit_cvars", "ban", "ban_remove", "ban_status", "Bind", "ca_DebugText", "connect", "connect_repeatedly", "ConsoleHide", "ConsoleShow", "demo", "demo_StartDemoChain", "demo_StartDemoLevel", "disconnect", "disconnectchannel", "drs_sendSignal", "ds_Dump", "ds_DumpSessions", "ds_Reload", "dump_action_maps", "dump_maps", "dump_stats", "DumpCommandsVars", "DumpVars", "e_DebugDrawListCMD", "e_ParticleListEffects", "e_ParticleListEmitters", "e_ParticleMemory", "e_ReloadSurfaces", "e_StatoscopeAddUserMarker", "ed_disable_game_mode", "ed_goto", "ed_killmemory", "ed_randomize_variations", "eqp_DumpPacks", "es_AudioListenerOffset", "es_compile_area_grid", "es_debugAnim", "es_dump_entities", "es_dump_entity_classes_in_use", "exec", "ffs_PlayEffect", "ffs_Reload", "ffs_StopAllEffects", "fg_InspectAction", "fg_InspectEntity", "fg_Inspector", "fg_reloadClasses", "fg_writeDocumentation", "g_dump_stats", "g_dumpClassRegistry", "g_saveLoadDumpEntity", "gamedata_playback", "gamedata_record", "gamedata_stop_record_or_playback", "gfx_reload_all", "gt_AddToDebugList", "gt_RemoveFromDebugList", "hmd_recenter_pose", "http_startserver", "http_stopserver", "i_dropitem", "i_giveallitems", "i_giveammo", "i_givedebugitems", "i_giveitem", "i_listitems", "i_reloadActionMaps", "i_saveweaponposition", "kick", "kickid", "load", "LoadConfig", "LocalizationDumpLoadedInfo", "lua_debugger_show", "lua_dump_coverage", "lua_dump_state", "lua_garbagecollect", "lua_reload_script", "map", "memDumpAllocs", "memReplayAddSizerTree", "memReplayDumpSymbols", "memReplayInfo", "memReplayLabel", "memReplayPause", "memReplayResume", "memReplayStop", "memResetAllocs", "mfx_Reload", "mfx_ReloadFGEffects", "mn_DebugAI", "mn_listAssets", "mn_reload", "mov_goToFrameEditor", "net_dump_object_state", "net_DumpMessageApproximations", "net_getChannelPerformanceMetrics", "net_netMsgDispatcherClearStats", "net_pb_cl_enable", "net_pb_sv_enable", "net_set_cdkey", "net_setChannelPerformanceMetrics", "open_url", "osm_setFBScale", "play", "py", "q_Quality", "quit", "r_ColorGradingChartImage", "r_DumpFontNames", "r_DumpFontTexture", "r_getposteffectparamf", "r_OptimiseShaders", "r_OverscanBorders", "r_PrecacheShaderList", "r_setposteffectparamf", "r_ShowRenderTarget", "r_StatsShaderList", "rcon_command", "rcon_connect", "rcon_disconnect", "rcon_startserver", "rcon_stopserver", "readabilityReload", "record", "RecordClip", "ReloadDialogData", "RunUnitTests", "s_ExecuteTrigger", "s_SetRtpc", "s_SetSwitchState", "s_StopTrigger", "save", "save_genstrings", "SaveLevelStats", "Screenshot", "so_reload", "status", "stopdemo", "stoprecording", "sw", "sys_crashtest", "sys_crashtest_thread", "sys_job_system_dump_job_list", "sys_LvlRes_finalstep", "sys_LvlRes_findunused", "sys_reload_plugin", "sys_RestoreSpec", "sys_StroboscopeDumpResults", "sys_StroboscopeStart", "sys_StroboscopeStop", "sys_threads_dump_thread_config_list", "test_delegate", "test_playersBounds", "test_profile", "test_reset", "unload", "v_dump_classes", "v_exit_player", "v_reload_system", "version", "VisRegTest", "voice_mute", "wait_frames", "wait_seconds" ] } }, "id": "https://json.schemastore.org/cryproj.52.schema", "properties": { "console_variables": { "$id": "/properties/console_variables", "type": "array", "uniqueItems": true, "items": { "$id": "/properties/console_variables/items", "type": "object", "properties": { "name": { "$id": "/properties/console_variables/items/properties/name", "$ref": "#/definitions/cvars" }, "value": { "$id": "/properties/console_variables/items/properties/value", "type": "string", "title": "Value of the CVar", "description": "The default value of the CVar", "default": "pc,ps4,xboxone,linux" } }, "required": ["name", "value"] } }, "content": { "$id": "/properties/content", "type": "object", "properties": { "assets": { "$id": "/properties/content/properties/assets", "type": "array", "items": { "$id": "/properties/content/properties/assets/items", "type": "string", "title": "Assets folder", "description": "This indicates where the assets are stored", "default": "Assets", "examples": ["Assets"] } }, "code": { "$id": "/properties/content/properties/code", "type": "array", "items": { "$id": "/properties/content/properties/code/items", "type": "string", "title": "Code folder", "description": "This indicates where the code is stored", "default": "Code", "examples": ["Code"] } }, "libs": { "$id": "/properties/content/properties/libs", "type": "array", "items": { "$id": "/properties/content/properties/libs/items", "type": "object", "properties": { "name": { "$id": "/properties/content/properties/libs/items/properties/name", "type": "string", "title": "Lib's name", "default": "", "examples": ["Blank"] }, "shared": { "$id": "/properties/content/properties/libs/items/properties/shared", "type": "object", "properties": { "any": { "$id": "/properties/content/properties/libs/items/properties/shared/properties/any", "type": "string", "title": "Lib's name to import for all the supported platforms", "default": "", "examples": ["CryGameSDK"] }, "win_x64": { "$id": "/properties/content/properties/libs/items/properties/shared/properties/win_x64", "type": "string", "title": "Lib's name to import for the win_x64 platform", "default": "", "examples": ["bin/win_x64/Game.dll"] }, "win_x86": { "$id": "/properties/content/properties/libs/items/properties/shared/properties/win_x86", "type": "string", "title": "Lib's name to import for the win_x86 platform", "default": "", "examples": ["bin/win_x86/Game.dll"] } } } } } } }, "required": ["code"] }, "info": { "$id": "/properties/info", "type": "object", "properties": { "name": { "$id": "/properties/info/properties/name", "type": "string", "title": "Project name", "description": "This indicates the project name", "default": "", "examples": ["MyFancyProject"] }, "guid": { "$id": "/properties/info/properties/guid", "type": "string", "title": "Project GUID", "default": "", "pattern": "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}" } }, "required": ["name"] }, "require": { "$id": "/properties/require", "type": "object", "properties": { "engine": { "$id": "/properties/require/properties/engine", "type": "string", "title": "Engine version", "description": "This indicates which engine version will be used", "default": "", "examples": ["engine-5.4"], "enum": ["engine-5.2"] }, "plugins": { "$id": "/properties/require/properties/plugins", "type": "array", "items": { "$id": "/properties/require/properties/plugins/items", "type": "object", "properties": { "path": { "$id": "/properties/require/properties/plugins/items/properties/path", "type": "string", "title": "Plugin name", "description": "Required plugin's name", "examples": [ "CryDefaultEntities", "CrySensorSystem", "CryPerceptionSystem", "CryUserAnalytics", "CryOSVR", "CryOculusVR", "CryOpenVR", "CryLobby" ] }, "type": { "$id": "/properties/require/properties/plugins/items/properties/type", "type": "string", "title": "Plugin type", "description": "EPluginType::Native if it's a C++ plugin, EPluginType::Managed if it's a C# one", "default": "", "examples": ["EPluginType::Native", "EPluginType::Managed"], "enum": ["EPluginType::Native", "EPluginType::Managed"] }, "platforms": { "$id": "/properties/plugins/items/properties/platforms", "type": "array", "items": { "$id": "/properties/plugins/items/properties/platforms/items", "type": "string", "title": "This plugin will be used only by these platforms", "default": "", "examples": ["PS4"], "enum": ["pc", "ps4", "xboxone", "linux"] } } }, "required": ["path", "type"] } } }, "required": ["engine"] }, "type": { "$id": "/properties/type", "type": "string", "title": "", "default": "", "examples": [""] }, "version": { "$id": "/properties/version", "type": "integer", "title": "Project version", "default": 1, "examples": [1] }, "console_commands": { "$id": "/properties/console_commands", "type": "array", "uniqueItems": true, "items": { "$id": "/properties/console_commands/items", "type": "object", "properties": { "name": { "$id": "/properties/console_commands/items/properties/name", "$ref": "#/definitions/commands" }, "value": { "$id": "/properties/console_commands/items/properties/value", "type": "string", "title": "Value of the command", "description": "Arguments that has to be passed to the command. Leave empty if it has not parameters", "default": "" } }, "required": ["name", "value"] } } }, "required": ["content", "info", "require", "version"], "title": "CryProj schema", "type": "object" }
cryproj
{ "$schema": "http://json-schema.org/draft-04/schema", "required": [ "FechaCreacion", "Version", "Listado", "Cantidad" ], "type": "object", "properties": { "FechaCreacion": { "type": "string" }, "Version": { "type": "string" }, "Listado": { "items": { "required": [ "TipoConvocatoria", "JustificacionMontoEstimado", "Tipo", "UnidadTiempoDuracionContrato", "FonoResponsableContrato", "EstadoPublicidadOfertas", "UnidadTiempoEvaluacion", "UnidadTiempoContratoLicitacion", "EsBaseTipo", "Etapas", "EmailResponsablePago", "Fechas", "Nombre", "TomaRazon", "EsRenovable", "NombreResponsableContrato", "Tiempo", "ValorTiempoRenovacion", "DiasCierreLicitacion", "CodigoExterno", "SubContratacion", "DireccionEntrega", "NombreResponsablePago", "Contrato", "Modalidad", "CodigoEstado", "Estado", "FechaCierre", "EstadoEtapas", "Items", "FuenteFinanciamiento", "TipoPago", "TiempoDuracionContrato", "CodigoTipo", "MontoEstimado", "Moneda", "ExtensionPlazo", "Obras", "ProhibicionContratacion", "Comprador", "UnidadTiempo", "DireccionVisita", "PeriodoTiempoRenovacion", "CantidadReclamos", "ObservacionContract", "Informada", "Adjudicacion", "EmailResponsableContrato", "TipoDuracionContrato", "Descripcion", "Estimacion", "JustificacionPublicidad", "VisibilidadMonto" ], "type": "object", "properties": { "TipoConvocatoria": { "type": "string" }, "JustificacionMontoEstimado": { "type": "string" }, "Tipo": { "type": "string" }, "UnidadTiempoDuracionContrato": { "type": "number" }, "FonoResponsableContrato": { "type": "string" }, "EstadoEtapas": { "type": "string" }, "UnidadTiempoEvaluacion": { "type": "number" }, "MontoEstimado": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "EsBaseTipo": { "type": "number" }, "Etapas": { "type": "number" }, "EmailResponsablePago": { "type": "string" }, "Fechas": { "required": [ "FechaCreacion", "FechaActoAperturaEconomica", "FechasUsuario", "FechaVisitaTerreno", "FechaActoAperturaTecnica", "FechaEntregaAntecedentes", "FechaInicio", "FechaEstimadaAdjudicacion", "FechaFinal", "FechaEstimadaFirma", "FechaTiempoEvaluacion", "FechaSoporteFisico", "FechaAdjudicacion", "FechaPublicacion", "FechaCierre", "FechaPubRespuestas" ], "type": "object", "properties": { "FechaCreacion": { "type": "string" }, "FechaActoAperturaEconomica": { "type": "string" }, "FechasUsuario": { "type": "null" }, "FechaSoporteFisico": { "type": "null" }, "FechaActoAperturaTecnica": { "type": "string" }, "FechaEntregaAntecedentes": { "type": "null" }, "FechaInicio": { "type": "string" }, "FechaEstimadaAdjudicacion": { "type": "string" }, "FechaFinal": { "type": "string" }, "FechaEstimadaFirma": { "type": "null" }, "FechaTiempoEvaluacion": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "FechaVisitaTerreno": { "type": "null" }, "FechaAdjudicacion": { "type": "string" }, "FechaPublicacion": { "type": "string" }, "FechaCierre": { "type": "string" }, "FechaPubRespuestas": { "type": "string" } } }, "Nombre": { "type": "string" }, "TomaRazon": { "type": "string" }, "EsRenovable": { "type": "number" }, "Tiempo": { "type": "null" }, "ValorTiempoRenovacion": { "type": "string" }, "DiasCierreLicitacion": { "type": "string" }, "CodigoExterno": { "type": "string" }, "SubContratacion": { "type": "string" }, "DireccionEntrega": { "type": "string" }, "NombreResponsablePago": { "type": "string" }, "Contrato": { "type": "string" }, "Modalidad": { "type": "number" }, "ExtensionPlazo": { "type": "number" }, "Estado": { "type": "string" }, "FechaCierre": { "type": "null" }, "EstadoPublicidadOfertas": { "type": "number" }, "Items": { "required": [ "Listado", "Cantidad" ], "type": "object", "properties": { "Listado": { "items": { "required": [ "Categoria", "UnidadMedida", "Cantidad", "Adjudicacion", "CodigoCategoria", "CodigoProducto", "Descripcion", "Correlativo", "NombreProducto" ], "type": "object", "properties": { "Categoria": { "type": "string" }, "UnidadMedida": { "type": "string" }, "Cantidad": { "type": "number" }, "Adjudicacion": { "anyOf": [ { "type": "null" }, { "required": [ "MontoUnitario", "NombreProveedor", "RutProveedor", "Cantidad" ], "type": "object", "properties": { "MontoUnitario": { "type": "number" }, "NombreProveedor": { "type": "string" }, "RutProveedor": { "type": "string" }, "Cantidad": { "type": "number" } } } ] }, "CodigoCategoria": { "type": "string" }, "CodigoProducto": { "type": "number" }, "Descripcion": { "type": "string" }, "Correlativo": { "type": "number" }, "NombreProducto": { "type": "string" } } }, "type": "array" }, "Cantidad": { "type": "number" } } }, "FuenteFinanciamiento": { "type": "string" }, "TipoPago": { "type": "string" }, "TiempoDuracionContrato": { "type": "string" }, "CantidadReclamos": { "type": "number" }, "CodigoTipo": { "type": "number" }, "UnidadTiempoContratoLicitacion": { "type": "string" }, "Moneda": { "type": "string" }, "CodigoEstado": { "type": "number" }, "Obras": { "type": "string" }, "ProhibicionContratacion": { "type": "string" }, "Comprador": { "required": [ "RutUnidad", "NombreUnidad", "DireccionUnidad", "CargoUsuario", "RutUsuario", "CodigoUsuario", "NombreUsuario", "NombreOrganismo", "RegionUnidad", "CodigoUnidad", "ComunaUnidad", "CodigoOrganismo" ], "type": "object", "properties": { "RutUnidad": { "type": "string" }, "NombreUnidad": { "type": "string" }, "DireccionUnidad": { "type": "string" }, "CargoUsuario": { "type": "string" }, "RutUsuario": { "type": "string" }, "CodigoUsuario": { "type": "string" }, "NombreUsuario": { "type": "string" }, "CodigoUnidad": { "type": "string" }, "NombreOrganismo": { "type": "string" }, "RegionUnidad": { "type": "string" }, "ComunaUnidad": { "type": "string" }, "CodigoOrganismo": { "type": "string" } } }, "UnidadTiempo": { "type": "string" }, "DireccionVisita": { "type": "string" }, "PeriodoTiempoRenovacion": { "type": "string" }, "NombreResponsableContrato": { "type": "string" }, "ObservacionContract": { "type": "null" }, "Informada": { "type": "number" }, "Adjudicacion": { "anyOf": [ { "type": "null" }, { "required": [ "UrlActa", "Fecha", "Tipo", "NumeroOferentes", "Numero" ], "type": "object", "properties": { "UrlActa": { "type": "string" }, "Fecha": { "type": "string" }, "Numero": { "type": "string" }, "NumeroOferentes": { "type": "number" }, "Tipo": { "type": "number" } } } ] }, "EmailResponsableContrato": { "type": "string" }, "TipoDuracionContrato": { "type": "string" }, "Descripcion": { "type": "string" }, "Estimacion": { "type": "number" }, "JustificacionPublicidad": { "type": "string" }, "VisibilidadMonto": { "type": "number" } } }, "type": "array" }, "Cantidad": { "type": "number" } } }
o47247
{ "collection": "reports", "class": "schema", "_id": "reports/schema/anc", "$schema": "http://json-schema.org/draft-04/schema#", "title": "Report ANC", "type": "object", "properties": { "number_of_expected_pregnant_women": { "line_number": "1", "sw": "Idadi ya Wajawazito Waliotegemewa", "en": "Number of expected pregnant women", "condition": "subforms.FIXME" }, "first_visit": { "line_number": "2", "sw": "Hudhurio la kwanza", "en": "First visit" }, "gestational_age_below_12_weeks": { "line_number": "2a", "sw": "Umri wa mimba chini ya wiki 12 (<12weeks)", "en": "Gestational age below 12 weeks(<12weeks)", "condition": "subforms.anc_first_visit.gestational_age<12" }, "gestational_at_week_12_or_more": { "line_number": "2b", "sw": "Umri wa mimba wiki 12 au zaidi (12+ weeks)", "en": "Gestational at week 12 or more (12+weeks)", "condition": "subforms.anc_first_visit.gestational_age>=12" }, "total_attendance_of_first_visits(2a+2b)": { "line_number": "2c", "sw": "Jumla ya hudhurio la Kwanza (2a+2b)", "en": "Total attendance of first visits(2a+2b)", "condition": "subforms.anc_first_visit.gestational_age" }, "clients_for_return_visits": { "line_number": "2d", "sw": "Wateja wa marudio", "en": "clients for return visits", "condition": "subforms.anc_followup.total_visits" }, "fourth_visits_for_all_pregnant_women": { "line_number": "2e", "sw": "Hudhurio la nne wajawazito wote", "en": "Fourth visits for all pregnant women", "condition": "subforms.anc_followup.fourth_visits" }, "total_attendance": { "line_number": "2f", "sw": "Jumla ya Mahudhurio yote (2c+2d)", "en": "total attendance(2c+2d)", "condition": "subforms.anc_first_visit.gestational_age || subforms.anc_followup.total_visits" }, "number_of_pregnant_women_tested_first_visit": { "line_number": "2g", "sw": "Idadi ya wajawazito waliopima damu hudhurio la kwanza", "en": "Number of pregnant women who tested during the first visit at the clinic", "condition": "subforms.anc_first_visit.pregnancy_test" }, "pregnant_women_who_received_vaccination_of_tt2": { "line_number": "3", "sw": "Wajawazito waliopata Chanjo ya TT2+:", "en": "Pregnant women who received vaccination of TT2+", "condition": "subforms.anc_first_visit.tt2plus_vaccine" }, "risk_factors": { "line_number": "4", "sw": "Vidokezo vya Hatari:", "en": "Risk factors" }, "conceived_more_than_four_times": { "line_number": "4a", "sw": "Mimba zaidi ya 4:", "en": "conceived more than four times", "condition": "subforms.anc_first_visit.number_pregnancy > 4" }, "age_less_than_20_years": { "line_number": "4b", "sw": "Umri chini ya miaka 20:", "en": "age less than 20 years", "condition": "subforms.patient.patient_age < 20" }, "age_over_35_years": { "line_number": "4c", "sw": "Umri zaidi ya miaka 35:", "en": "age over 35 years", "condition": "subforms.patient.patient_age > 35" }, "severe_anemia_first_attendance": { "line_number": "4d", "sw": "Upungufu mkubwa wa damu <8.5g/dl - Anaemia hudhurio Ia kwanza:", "en": "severe anemia <8.5g/dl - Anaemia first attendance", "condition": "subforms.anc_first_visit.anemia" }, "blood_pressure_high": { "line_number": "4e", "sw": "Shinikizo Ia damu (BP => 140/90mm/hg):", "en": "blood pressure (BP => 140/90mm/hg):", "condition": "subforms.((anc_first_visit.bp_systolic || subforms.anc_followup.bp_systolic) >= 140) && ((subforms.anc_first_visit.bp_diastolic || subforms.anc_followup.bp_diastolic) >= 90)" }, "heart_disease": { "line_number": "4f", "sw": "Ugonjwa wa moyo:", "en": "Heart disease", "condition": "subforms.anc_first_visit.pregnancy_diseases == 'Heart Disease'" }, "diabetes": { "line_number": "4g", "sw": "Kisukari:", "en": "Diabetes", "condition": "subforms.anc_first_visit.pregnancy_diseases == 'Diabetes'" }, "tuberculosis": { "line_number": "4h", "sw": "Kifua kikuu:", "en": "Tuberculosis", "condition": "subforms.anc_first_visit.pregnancy_diseases== 'Tuberculosis'" }, "those_who_tested_for_syphillus": { "line_number": "4i", "sw": "Waliopima Kaswendwe:", "en": "Those who tested for Syphillus", "condition": "subforms.anc_first_visit.syphillus_test && subforms.anc_followup.syphillus_test" }, "those_who_were_infected_with_syphilis": { "line_number": "4j", "sw": "Waliogundulika na maambukizi ya Kaswende:", "en": "Those who were infected with Syphillus", "condition": "subforms.anc_first_visit.syphillus_status && subforms.anc_followup.syphillus_status" }, "those_who_got_syphillis_treatment": { "line_number": "4k", "sw": "Waliopata matibabu ya Kaswende:", "en": "Those who got Syphillis treatment", "condition": "subforms.anc_first_visit.syphillus_treatment || subforms.anc_followup.syphillus_treatment" }, "partners_husbands_who_tested_for_syphillis": { "line_number": "4l", "sw": "Wenza/Waume waliopima Kaswende:", "en": "Patners/husbands who tested for Syphillis", "condition": "subforms.anc_first_visit.partner_syphillus_test || subforms.anc_followup.partner_syphillus_test" }, "patners_husbands_who_were_infected_with_syphilis": { "line_number": "4m", "sw": "Wenza/Waume Waliogundulika na maambukizi ya Kaswende:", "en": "Partners/husbands who were infected with Syphilis", "condition": "subforms.anc_first_visit.partner_syphillus_status || subforms.anc_followup.partner_syphillus_status" }, "patners_husbands_who_got_treatment_for_syphilis": { "line_number": "4n", "sw": "Wenza/waume waliopata matibabu ya Kaswende:", "en": "Patners/husbands who got treatment for Syphilis", "condition": "subforms.anc_first_visit.partner_syphillus_treatment || subforms.anc_followup.partner_syphillus_treatment" }, "pregnant_women_who_were_infected_with_stds": { "line_number": "4o", "sw": "Waliopatikana na magoniwa ya mambukizo ya ngono:", "en": "Pregnant women who were infected with STD's", "condition": "subforms.anc_first_visit.std_status || subforms.anc_followup.std_status" }, "patners_husbands_who_were_infected_with_stds": { "line_number": "4p", "sw": "Wenzi/waume Waliopatikana na magonjwa ya mambukizo ya ngono:", "en": "Patners/husbands who were infected with STD's", "condition": "subforms.anc_first_visit.partner_std || subforms.anc_followup.partner_std" }, "pregnant_women_who_got_appropriate_treatment_for_stds": { "line_number": "4q", "sw": "Waliopata tiba sahihi ya magonjwa ya ngono:", "en": "Pregnant women who got appropriate treatment for STD's", "condition": "subforms.anc_first_visit.std_treatment || subforms.anc_followup.std_treatment" }, "patners_who_got_approprite_treatment_for_stds": { "line_number": "4r", "sw": "Wenzi/waume waliooata tiba sahihi ya magoniwa ya ngono:", "en": "Patners who got appropriate treatment for STD's", "condition": "subforms.anc_first_visit.partner_std_treatment || subforms.anc_followup.partner_std_treatment" }, "pmtct": { "line_number": "5", "sw": "PMTCT:", "en": "PMTCT" }, "pw_who_were_already_infected_by_hiv_before_starting_clinic": { "line_number": "5a", "sw": "Tayari wana maambukizi ya VVU kabla ya kuanza kliniki:", "en": "PW who were already infected by HIV before starting Clinic", "condition": "subforms.hiv_pregnancy_clinic.hiv_status_prior_firstvisit || subforms.anc_followup.hiv_status_prior_firstvisit || subforms.anc_first_visit.hiv_status_prior_firstvisit" }, "pw_who_were_counselled_before_testing_for_hiv": { "line_number": "5b", "sw": "Wajawazito wote waliopata ushauri nasaha kabla ya kupima VVU kliniki:", "en": "PW who were counselled before testing for HIV", "condition": "subforms.hiv_pregnancy_clinic.counseled_hiv_prior_test || subforms.anc_first_visit.counseled_hiv_prior_test || subforms.anc_followup.counseled_hiv_prior_test" }, "pw_who_tested_for_hiv_for_the_first_time_at_the_clinic": { "line_number": "5c", "sw": "Wajawazito Waliopima VVU kipimo cha kwanza kliniki:", "en": "PW who tested for HIV for the first time at the clinic", "condition": "subforms.hiv_pregnancy_clinic.tested_hiv_firstvisit || subforms.anc_followup.tested_hiv_firstvisit || subforms.anc_first_visit.tested_hiv_firstvisit" }, "pw_who_tested_positive_by_the_first_test": { "line_number": "5d", "sw": "Wajawazito Waliokutwa na VVU (positive) kipimo cha kwanza:", "en": "PW who tested positive by the first test", "condition": "subforms.hiv_pregnancy_clinic.first_hiv_status || subforms.anc_first_visit.first_hiv_status || subforms.anc_followup.first_hiv_status" }, "pw_below_25_years_who_tested_for_hiv_for_the_first_time_at_the_clinic": { "line_number": "5e", "sw": "Wajawazito waliopimwa VVU Kipimo cha kwanza chini ya Umri wa miaka 25", "en": " PW below 25 years who tested for HIV for the first time at the clinic", "condition": "subforms.patient.patient_age && (hiv_pregnancy_clinic.tested_hiv_firstvisit || subforms.anc_first_visit.tested_hiv_firstvisit_" }, "pw_below_25_years_who_tested_positive_by_the_first_test": { "line_number": "5f", "sw": "Wajawazito Waliokutwa na VVU (positive) kipimo cha kwanza walio chini ya umri wa miaka 25:", "en": "PW below 25 years who tested positive by the first test", "condition": "subforms.patient.patient_age <25 && (hiv_pregnancy_clinic.first_hiv_status || subforms.anc_followup.first_hiv_status)" }, "pw_who_were_counselled_after_testing_hiv": { "line_number": "5g", "sw": "Wajawazito Waliopata Ushauri baada ya kupima:", "en": "PW who were counselled after testing HIV", "condition": "subforms.hiv_pregnancy_clinic.counseled_hiv_prior_test || subforms.anc_first_visit.counseled_hiv_prior_test || subforms.anc_followup.counseled_hiv_prior_test" }, "pw_who_tested_together_with_their_couple_together_at_the_clinic": { "line_number": "5h", "sw": "Wajawazito waliopimwa VVU na wenza wao (Couple) kwa pamoja katika kliniki ya wajawazito:", "en": "PW who tested together with their couple together at the clinic", "condition": "subforms.hiv_pregnancy_clinic.partner_hiv || subforms.anc_followup.partner_hiv || subforms.anc_first_visit.partner_hiv" }, "pw_who_tested_hiv_by_the_second_test": { "line_number": "5i", "sw": "Wajawazito waliopima VVU kipimo cha pili:", "en": "PW who tested HIV by the second test", "condition": "subforms.hiv_pregnancy_clinic.second_hiv_test || subforms.anc_first_visit.second_hiv_test || subforms.anc_followup.second_hiv_test" }, "pw_who_tested_positive_by_the_second_test": { "line_number": "5j", "sw": "Wajawazito waliokutwa na maambukizi ya VVU kipimo cha pili:", "en": "PW who tested positive by the second test", "condition": "subforms.hiv_pregnancy_clinic.second_hiv_test || subforms.anc_first_visit.second_hiv_test || subforms.anc_followup.second_hiv_test" }, "partners_husbands_who_tested_for_hiv_at_the_clinic": { "line_number": "5k", "sw": "Wenza waliopima VVU Kliniki ya wajawazito:", "en": "Patners/husbands who tested for HIV at the clinic", "condition": "subforms.hiv_pregnancy_clinic.partner_hiv || subforms.anc_first_visit.partner_hiv || subforms.anc_followup.partner_hiv" }, "partners_husbands_who_tested_positive_at_the_clinic": { "line_number": "5l", "sw": "Wenza waliogundulika kuwa na maambukizi ya VVU katika kliniki va wajawazito:", "en": "Patners/husbands who tested positive at the clinic", "condition": "subforms.hiv_pregnancy_clinic.partner_positive || subforms.anc_first_visit.partner_positive || subforms.anc_followup.partner_positive" }, "discordant_couples": { "line_number": "5m", "sw": "Wajawazito na wenza waliopata majibu tofauti (discordant) baada ya kupima VVU kliniki", "en": "Couples who have different HIV results after testing at the clinic(discordant couple)", "condition": "subforms.hiv_pregnancy_clinic.discordant_couple || subforms.anc_first_visit.discordant_couple || subforms.anc_followup.discordant_couple" }, "pw_who_received_pmtct_combination_drugs": { "line_number": "5n", "sw": "Wajawazito waliopewa dawa za Mchanganyiko za PMTCT:", "en": "PW who received PMTCT combination drugs:", "condition": "subforms.hiv_pregnancy_clinic.combo_drugs || subforms.anc_first_visit.combo_drugs || subforms.anc_followup.combo_drugs" }, "pw_whi_are_using_art_drugs": { "line_number": "5o", "sw": "Wajawazito wanaotumia dawa za ART:", "en": "PW whi are using ART drugs", "condition": "subforms.hiv_pregnancy_clinic.art_drugs || subforms.anc_first_visit.art_drugs || subforms.anc_followup.art_drugs" }, "pw_who_were_given_ctx": { "line_number": "5p", "sw": "Wajawazito Waliopewa CTX:", "en": "PW who were given CTX (Cotrimocxazole)", "condition": "subforms.hiv_pregnancy_clinic.ctx_given || subforms.anc_first_visit.ctx_given || subforms.anc_followup.ctx_given" }, "pw_who_were_counselled_on_feeding_the_baby": { "line_number": "5q", "sw": "Waliopata ushauri iuu ya ulishaji wa mtoto:", "en": "PW who were counselled on feeding the baby", "condition": "subforms.hiv_pregnancy_clinic.counsel_feeding || subforms.anc_first_visit.counsel_feeding || subforms.anc_followup.counsel_feeding" }, "malaria": { "line_number": "6", "sw": "Malaria:", "en": "Malaria" }, "pw_given_a_voucher_for_hati_punguzo": { "line_number": "6a", "sw": "Waliopewa vocha ya hati punguzo:", "en": "PW given a voucher for Hati Punguzo (voucher for free mosquito net)", "condition": "subforms.anc_first_visit.bednet_voucher || subforms.anc_followup.bednet_voucher" }, "pw_tested_for_malaria": { "line_number": "6b", "sw": "Waliopima Malaria:", "en": "PW tested for malaria", "condition": "subforms.anc_first_visit.malaria_test || subforms.anc_followup.malaria_test" }, "pw_tested_positive_for_malaria": { "line_number": "6c", "sw": "Waliopima Malaria positive:", "en": "PW tested positive for Malaria", "condition": "subforms.anc_first_visit.malaria_pos || subforms.anc_followup.malaria_poss" }, "pw_given_ipt1_preventive_treatment": { "line_number": "6d", "sw": "Waliopewa IPT1:", "en": "PW given IPT1 (IPT--Intermittent Preventive Treatment)", "condition": "subforms.anc_first_visit.ipt1 || subforms.anc_followup.ipt1" }, "pw_given_ipt2": { "line_number": "6e", "sw": "Waliopewa IPT2:", "en": "PW given IPT2", "condition": "subforms.anc_first_visit.ipt2 || subforms.anc_followup.ipt2" }, "other_services": { "sw": "Huduma Nyingine:", "en": "Other services" }, "pw_given_enough_iron_folic_tablets": { "line_number": "7", "sw": "Waliopewa Iron/Folic vidonge vya kutosha:", "en": "PW given enough Iron/Folic tablets", "condition": "subforms.anc_first_visit.iron_tablets || subforms.anc_followup.iron_tablets" }, "pw_given_antihelminths": { "line_number": "8", "sw": "Waliopewa Dawa za minyoo (Mebendazole / Albendazole):", "en": "PW given antihelminths (Mebendazole/Albendazole)", "condition": "subforms.anc_first_visit.alben_tablets || subforms.anc_followup.alben_tablets" }, "pw_who_were_given_refferals": { "line_number": "9", "sw": "Waliopewa Rufaa wakati wa uiauzito:", "en": "PW who were given refferals", "condition": "subforms.anc_first_visit.referral || subforms.anc_followup.referral" }, "pw_reffered_to_ctc": { "line_number": "10", "sw": "Waliopcwa Rufaa kwenda CTC:", "en": "PW reffered to CTC (CTC-care and treatment center)", "condition": "subforms.hiv_pregnancy_clinic.referred_ctc || subforms.anc_first_visit.referred_ctc || subforms.anc_followup.referred_ctc" }, "definitions": { "columns": { "below20": { "title": "Below 20 years old", "condition": "subforms.patient.approximate_age < 20" }, "above20": { "title": "Above 20 years old", "condition": "subforms.patient.approximate_age >= 20" }, "total": { "title": "Total", "condition": "subforms.true" } } } } }
o47195
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "status": { "type": "string", "enum": [ "active", "inactive" ] }, "description": { "type": "string", "maxLength": 32767 }, "caBundle": { "type": "string", "maxLength": 32767, "minLength": 50 } }, "additionalProperties": false }
o9772
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "nifti" ], "type": "object", "properties": { "nifti": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } } } }, "config": { "required": [ "nopve", "Hyper", "bias_field", "iterations", "image_type", "segments", "mixel", "init", "nobias", "lowpass", "tissue_classes", "fixed", "fHard", "restored_image", "channels" ], "type": "object", "properties": { "nopve": { "default": false, "type": "boolean", "id": "--nopve" }, "Hyper": { "default": 0.1, "type": "number", "id": "-H" }, "bias_field": { "default": false, "type": "boolean", "id": "-b" }, "lowpass": { "default": 20, "type": "integer", "id": "-I" }, "image_type": { "default": 1, "maximum": 3, "minimum": 1, "type": "integer", "id": "-t" }, "segments": { "default": false, "type": "boolean", "id": "-g" }, "mixel": { "default": 0.3, "type": "number", "id": "-R" }, "init": { "default": 15, "type": "integer", "id": "-W" }, "nobias": { "default": false, "type": "boolean", "id": "-N" }, "iterations": { "default": 4, "type": "integer", "id": "-I" }, "tissue_classes": { "default": 3, "maximum": 4, "minimum": 1, "type": "integer", "id": "-n" }, "fixed": { "default": 4, "type": "integer", "id": "-O" }, "fHard": { "default": 0.02, "type": "number", "id": "-f" }, "restored_image": { "default": false, "type": "boolean", "id": "-B" }, "channels": { "default": 1, "type": "integer", "id": "-S" } } } }, "title": "Invocation manifest for FSL: FMRIB Automated Segmentation Tool (FAST4, v5.0.9)" }
o41487
{ "title": "Local Process Environment for Testing", "required": [ "environment_type" ], "properties": { "environment_type": { "default": "localproc-env", "enum": [ "localproc-env" ], "type": "string" } }, "additionalProperties": false, "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "id": "localproc" }
o66173
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "additionalTerms": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "backgroundInformation": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" }, "budgetRange": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "contractLength": { "maxLength": 100, "minLength": 0, "type": "string" }, "culturalFitCriteria": { "items": { "maxLength": 300, "pattern": "^(?:\\S+\\s+){0,29}\\S+$", "type": "string" }, "maxItems": 20, "minItems": 1, "type": "array" }, "culturalWeighting": { "maximum": 20, "minimum": 5, "type": "integer" }, "earlyMarketEngagement": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,199}\\S+$)", "type": "string" }, "endUsers": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" }, "essentialRequirements": { "items": { "maxLength": 300, "pattern": "^(?:\\S+\\s+){0,29}\\S+$", "type": "string" }, "maxItems": 20, "minItems": 1, "type": "array" }, "evaluationType": { "items": { "enum": [ "Case study", "Work history", "Reference", "Presentation" ] }, "maxItems": 4, "minItems": 0, "type": "array", "_uniqueItems": true }, "existingTeam": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" }, "location": { "enum": [ "Scotland", "North East England", "North West England", "Yorkshire and the Humber", "East Midlands", "West Midlands", "East of England", "Wales", "London", "South East England", "South West England", "Northern Ireland", "Offsite" ] }, "niceToHaveRequirements": { "items": { "maxLength": 300, "pattern": "^(?:\\S+\\s+){0,29}\\S+$", "type": "string" }, "maxItems": 20, "minItems": 0, "type": "array" }, "numberOfSuppliers": { "maximum": 15, "minimum": 3, "type": "integer" }, "organisation": { "maxLength": 100, "minLength": 1, "type": "string" }, "outcome": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" }, "phase": { "enum": [ "not_applicable", "not_started", "discovery", "alpha", "beta", "live" ] }, "priceCriteria": { "enum": [ "Fixed price", "Time and materials", "Capped time and materials" ] }, "priceWeighting": { "maximum": 85, "minimum": 20, "type": "integer" }, "questionAndAnswerSessionDetails": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "securityClearance": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,49}\\S+$)", "type": "string" }, "startDate": { "maxLength": 100, "minLength": 1, "type": "string" }, "successCriteria": { "items": { "maxLength": 300, "pattern": "^(?:\\S+\\s+){0,29}\\S+$", "type": "string" }, "maxItems": 20, "minItems": 1, "type": "array" }, "summary": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,49}\\S+$", "type": "string" }, "technicalWeighting": { "maximum": 75, "minimum": 10, "type": "integer" }, "title": { "maxLength": 100, "minLength": 1, "type": "string" }, "workAlreadyDone": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "workingArrangements": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" }, "workplaceAddress": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" } }, "required": [ "backgroundInformation", "culturalFitCriteria", "culturalWeighting", "endUsers", "essentialRequirements", "existingTeam", "location", "numberOfSuppliers", "organisation", "outcome", "phase", "priceCriteria", "priceWeighting", "startDate", "successCriteria", "summary", "technicalWeighting", "title", "workingArrangements", "workplaceAddress" ], "title": "Digital Outcomes and Specialists Digital outcomes Brief Schema", "type": "object" }
o21075
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "trait_additional_properties_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "A grab-bag object for non-validatable data.", "title": "Has additional properties", "type": "object" } }, "description": "Trait that applies planning information to a document or resource. In the Arc ecosystem, this data is generated by WebSked. Newsroom use only. All these fields should be available and editable in WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "budget_line": { "description": "Used for the newsroom to identify what the story is about, especially if a user is unfamiliar with the slug of a story and the headline or they do not yet exist. Newsroom use only.", "title": "Budget Line", "type": "string" }, "deadline_miss": { "description": "The delta between the story's planned publish date and actual first publish time, in minutes.", "type": "integer" }, "internal_note": { "description": "This note is used for shared communication inside the newsroom.", "title": "Internal Note", "type": "string" }, "scheduling": { "additionalProperties": false, "description": "Scheduling information.", "properties": { "planned_publish_date": { "_format": "date-time", "description": "When the content is planned to be published.", "type": "string" }, "scheduled_publish_date": { "_format": "date-time", "description": "When the content was first published.", "type": "string" }, "will_have_gallery": { "description": "Will this content have galleries?", "type": "boolean" }, "will_have_graphic": { "description": "Will this content have graphics?", "type": "boolean" }, "will_have_image": { "description": "Will this content have images?", "type": "boolean" }, "will_have_video": { "description": "Will this content have videos?", "type": "boolean" } }, "type": "object" }, "story_length": { "additionalProperties": false, "description": "Story length information.", "properties": { "character_count_actual": { "description": "The current number of characters in the story.", "type": "integer" }, "character_count_planned": { "description": "The anticipated number of characters in the story.", "type": "integer" }, "character_encoding": { "description": "The encoding used for counting characters in the story.", "type": "string" }, "inch_count_actual": { "description": "The current length of the story in inches.", "type": "integer" }, "inch_count_planned": { "description": "The anticipated length of the story in inches.", "type": "integer" }, "line_count_actual": { "description": "The current length of the story in lines.", "type": "integer" }, "line_count_planned": { "description": "The anticipated length of the story in lines.", "type": "integer" }, "word_count_actual": { "description": "Current number of words.", "type": "integer" }, "word_count_planned": { "description": "The anticipated number of words in the story.", "type": "integer" } }, "type": "object" }, "websked_sort_date": { "_format": "date-time", "description": "Date to be used for chronological sorting in WebSked.", "type": "string" } }, "title": "Scheduling information", "type": "object" }
wp_74_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "address", "type": "object", "properties": { "line1": { "description": "Address Line 1", "type": "string", "minLength": 1 }, "line2": { "description": "Address Line 2", "type": "string", "minLength": 1 }, "city": { "description": "City of mailing address of food pantry", "type": "string", "minLength": 1 }, "state": { "description": "Full name of state", "type": "string", "minLength": 1 }, "zip": { "description": "Zip code of address", "type": "number" } }, "required": [ "line1", "city", "state", "zip" ] }
o53603
{ "definitions": {}, "description": "Full analysis specification including data, sofware, environment and workflow enabling reproducibility on a REANA cluster.", "properties": { "environments": { "_id": "/properties/environments", "description": "All container images needed to reproduce the analysis.", "items": { "_id": "/properties/environments/items", "description": "Analysis environments represented by container technology and image name.", "optional": true, "properties": { "image": { "_id": "/properties/environments/items/properties/image", "default": "busybox", "description": "String which represents an image used as environment for one or more steps of an analysis.", "title": "Environment image id.", "type": "string" }, "type": { "_id": "/properties/environments/items/properties/type", "default": "docker", "description": "Name which represents a supported container technology to provide as a REANA environment.", "title": "Container technology.", "type": "string" } }, "title": "Analysis environments.", "type": "object" }, "title": "Set of analysis' environments.", "type": "array" }, "inputs": { "_id": "/properties/inputs", "properties": { "directories": { "_id": "/properties/inputs/properties/directories", "description": "List of directories provided as input for a given analysis.", "items": { "_id": "/properties/inputs/properties/directories/items", "title": "Relative path to the directory.", "type": "string" }, "optional": true, "title": "Analysis input directories.", "type": "array" }, "files": { "_id": "/properties/inputs/properties/files", "description": "List of files provided as input for a given analysis.", "items": { "_id": "/properties/inputs/properties/files/items", "title": "Relative path to the file.", "type": "string" }, "optional": true, "title": "Analysis input files.", "type": "array" }, "options": { "_id": "/properties/workflow/properties/options", "description": "Extra operational options accepted by workflow engines.", "title": "Workflow operational options.", "type": "object" }, "parameters": { "_id": "/properties/inputs/properties/parameters", "description": "Key value data structure which represents the analysis parameters.", "optional": true, "title": "Analysis parameters.", "type": "object" } }, "title": "Analysis inputs.", "type": "object" }, "metadata": { "_id": "/properties/metadata", "properties": { "author": { "_id": "/properties/metadata/properties/author", "default": "@reanahub/developers", "description": "User or group who created the analysis.", "title": "Analysis author.", "type": "string" }, "title": { "_id": "/properties/metadata/properties/title", "default": "REANA analysis example", "title": "Analysis title", "type": "string" } }, "title": "Analysis metadata.", "type": "object" }, "outputs": { "_id": "/properties/outputs", "properties": { "files": { "_id": "/properties/outputs/properties/files", "description": "Expected output from analysis represented by a set of files.", "items": { "_id": "/properties/outputs/properties/files/items", "title": "Relative path to the file.", "type": "string" }, "title": "Analysis results.", "type": "array" } }, "title": "Analysis outputs.", "type": "object" }, "workflow": { "_id": "/properties/workflow", "description": "Workflow which represents the steps that need to be run to reproduce an analysis.", "properties": { "file": { "_id": "/properties/workflow/properties/file", "title": "Workflow file name.", "type": "string" }, "resources": { "_id": "/properties/workflow/properties/resources", "properties": { "cvmfs": { "_id": "/properties/workflow/properties/resources/properties/cvmfs", "items": { "optional": false, "title": "CVMFS repos", "type": "string" }, "type": "array" } }, "title": "Workflow resources in yaml format.", "type": "object" }, "specification": { "_id": "/properties/workflow/properties/specification", "title": "Workflow specification in yaml format.", "type": "object" }, "type": { "_id": "/properties/workflow/properties/type", "description": "Name which represents a supported workflow engine to be used to reproduce the analysis.", "title": "Workflow engine.", "type": "string" } }, "required": [ "type" ], "title": "Analysis workflow.", "type": "object" } }, "required": [ "workflow" ], "title": "REANA analysis specification", "type": "object" }
o69808
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Codex Location Schema", "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "institution": { "type": "string" }, "campus": { "type": "string" }, "library": { "type": "string" }, "parking": { "type": "array", "items": { "type": "object" }, "additionalItems": true, "_uniqueItems": true }, "platform": { "type": "string" }, "uri": { "type": "string" } }, "required": [ "id" ] }
o24176
{ "properties": { "connect": { "properties": { "bootstrap-servers": { "default": "broker-0.confluent.mesos:9092", "description": "Bootstrap servers for target Kafka cluster. Format is comma-separated list of <host>:<port>", "type": "string" }, "cpus": { "default": 1, "description": "CPU shares to allocate to each connect worker instance.", "minimum": 1, "type": "number" }, "instances": { "default": 1, "description": "Number of instances to run.", "minimum": 1, "type": "integer" }, "key-converter-schema-registry-url": { "default": "http://8.0.8.1:8081", "description": "Schema Registry service (for message keys). Format is http://<host>:<port>", "type": "string" }, "mem": { "default": 1024.0, "description": "Memory (MB) to allocate to each connect worker task.", "minimum": 256.0, "type": "number" }, "name": { "default": "connect", "description": "Name for this connect worker application", "type": "string" }, "role": { "default": "*", "description": "Deploy connect worker only on nodes with this role.", "type": "string" }, "value-converter-schema-registry-url": { "default": "http://8.0.8.1:8081", "description": "Schema Registry service (for message data). Format is http://<host>:<port>", "type": "string" }, "vip-label": { "default": "8.0.8.3:8083", "description": "Label for external access to connect workers. Format is <IP>:<port>", "type": "string" } }, "required": [ "cpus", "mem", "instances", "name" ], "type": "object" } }, "type": "object" }
o90651
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "definitions": { "configurations": { "type": "array", "items": { "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Platform name. Mac, Linux, or Win32 are the defaults unless a custom platform is added.", "type": "string" }, "includePath": { "description": "A list of paths for the IntelliSense engine to use while searching for included headers. Searching on these paths is not recursive.", "type": "array", "items": { "type": "string" } }, "defines": { "description": "A list of preprocessor definitions for the IntelliSense engine to use while parsing files. Optionally, use = to set a value, e.g. VERSION=1.", "type": "array", "items": { "type": "string" } }, "intelliSenseMode": { "type": "string", "enum": [ "msvc-x64", "clang-x64" ], "description": "If set, it overrides the default mode used by the IntelliSense engine. Windows defaults to msvc and Linux/Mac default to clang." }, "browse": { "type": "object", "properties": { "limitSymbolsToIncludedHeaders": { "description": "true to process only those files directly or indirectly included as headers, false to process all files under the specified include paths", "type": "boolean" }, "databaseFilename": { "description": "Path to the generated symbol database. If a relative path is specified, it will be made relative to the workspace's default storage location.", "type": "string" }, "path": { "description": "A list of paths for the tag parser to use while searching for included headers. Searching on these paths is recursive by default. Specify '*' to indicate non-recursive search. For example: '/usr/include' will search through all subdirectories while '/usr/include/*' will not.", "type": "array", "items": { "type": "string" } } } } } } } }, "properties": { "configurations": { "$ref": "#/definitions/configurations" } }, "required": [ "configurations" ] }
o53159
{ "properties": { "marathon-lb": { "properties": { "auto-assign-service-ports": { "default": false, "description": "Auto assign service ports for tasks which use IP-per-task. See https://github.com/mesosphere/marathon-lb#mesos-with-ip-per-task-support for details.", "type": "boolean" }, "bind-http-https": { "default": true, "description": "Reserve ports 80 and 443 for the LB. Use this if you intend to use virtual hosts.", "type": "boolean" }, "cpus": { "default": 2, "description": "CPU shares to allocate to each marathon-lb instance.", "minimum": 1, "type": "number" }, "haproxy-group": { "default": "external", "description": "HAProxy group parameter. Matches with HAPROXY_GROUP in the app labels.", "type": "string" }, "haproxy-map": { "default": true, "description": "Enable HAProxy VHost maps for fast VHost routing.", "type": "boolean" }, "instances": { "default": 1, "description": "Number of instances to run.", "minimum": 1, "type": "integer" }, "marathon-uri": { "default": "http://master.mesos:8080", "description": "URI of Marathon instance", "type": "string" }, "maximumOverCapacity": { "default": 0.2, "description": "Maximum over capacity.", "minimum": 0, "type": "number" }, "mem": { "default": 1024.0, "description": "Memory (MB) to allocate to each marathon-lb task.", "minimum": 256.0, "type": "number" }, "minimumHealthCapacity": { "default": 0.5, "description": "Minimum health capacity.", "minimum": 0, "type": "number" }, "name": { "default": "marathon-lb", "description": "Name for this LB instance", "type": "string" }, "role": { "default": "slave_public", "description": "Deploy marathon-lb only on nodes with this role.", "type": "string" }, "ssl-cert": { "description": "TLS Cert and private key for HTTPS.", "type": "string" }, "sysctl-params": { "default": "net.ipv4.tcp_tw_reuse=1 net.ipv4.tcp_fin_timeout=30 net.ipv4.tcp_max_syn_backlog=10240 net.ipv4.tcp_max_tw_buckets=400000 net.ipv4.tcp_max_orphans=60000 net.core.somaxconn=10000", "description": "sysctl params to set at startup for HAProxy.", "type": "string" }, "template-url": { "default": "", "description": "URL to tarball containing a directory templates/ to customize haproxy config.", "type": "string" } }, "required": [ "cpus", "mem", "haproxy-group", "instances", "name" ], "type": "object" } }, "type": "object" }
o90762
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "base": { "description": "The base of a triangle", "type": "number" }, "height": { "description": "The height of a triangle", "type": "number" }, "length": { "description": "The length of a rectangle", "type": "number" }, "radius": { "description": "The radius of a circle", "type": "number" }, "width": { "description": "The width of a rectangle", "type": "number" } }, "required": [ "radius" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_2ad222d3
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "amr", "description": "Representation for an AMR table entry", "definitions": { "amr_entry": { "type": "object", "properties": { "antibiotic": { "type": "string" }, "resistance_phenotype": { "type": "string" }, "measurement_sign": { "type": "string" }, "measurement": { "type": "string" }, "measurement_units": { "type": "string" }, "laboratory_typing_method": { "type": "string" }, "laboratory_typing_platform": { "type": "string" }, "vendor": { "type": "string" }, "Laboratory_typing_method_version_or_reagent": { "type": "string" }, "testing_standard": { "type": "string" } }, "required": [ "antibiotic", "resistance_phenotype", "measurement_sign", "measurement", "measurement_units", "laboratory_typing_method", "vendor", "testing_standard" ] } }, "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "$ref": "#/definitions/amr_entry" } }
o4849
{ "properties": { "attendees": { "description": "The attendees of the event (optional)", "items": { "type": "string" }, "type": "array" }, "end_date": { "description": "The end date and time of the event in ISO 8601 format", "format": "date-time", "type": "string" }, "location": { "description": "The location of the event (optional)", "type": "string" }, "start_date": { "description": "The start date and time of the event in ISO 8601 format", "format": "date-time", "type": "string" }, "title": { "description": "The title of the event", "type": "string" } }, "required": [ "title", "start_date", "end_date" ], "type": "object" }
create_calendar_event_667f096c
{ "id": "http://sport-archive.com/input-schema/client#", "$schema": "http://json-schema.org/draft-04/schema#", "title": "Schema for 'client'", "type": "object", "properties": { "name": { "description": "Client name", "type": "string", "minLength": 3, "maxLength": 64 }, "queues": { "type": "object", "properties": { "input": { "description": "SQS input queue", "type": "string", "pattern": "^https://.+$" }, "output": { "description": "SQS output queue", "type": "string", "pattern": "^https://.+$" } }, "required": [ "input", "output" ] } }, "required": [ "name", "queues" ], "additionalProperties": false }
o77701
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "title": "ItemType", "description": "JSON schema for item_type.", "additionalProperties": false, "propertiesOrder": [ "name", "description", "type" ], "required": [ "$schema", "pid", "name", "organisation", "type" ], "properties": { "$schema": { "title": "Schema", "description": "Schema to validate item_type records against.", "type": "string", "minLength": 9, "default": "https://ils.rero.ch/schemas/item_types/item_type-v0.0.1.json" }, "pid": { "title": "ItemType ID.", "type": "string", "minLength": 1 }, "name": { "title": "Name", "description": "Name of the ItemType.", "type": "string", "minLength": 1, "form": { "focus": true, "validation": { "validators": { "valueAlreadyExists": { "term": "item_type_name" } }, "messages": { "alreadyTakenMessage": "The item type name is already taken." } } } }, "description": { "title": "Description", "description": "Description of the ItemType.", "type": "string", "minLength": 1 }, "type": { "title": "Type", "description": "Type of the circulation category.", "type": "string", "default": "standard", "enum": [ "online", "standard" ], "form": { "options": [ { "value": "standard", "label": "Standard" }, { "value": "online", "label": "Online" } ], "validation": { "validators": { "valueAlreadyExists": { "remoteRecordType": "item_types", "limitToValues": [ "online" ] } }, "messages": { "alreadyTakenMessage": "Another online item type exists in this organisation." } } } }, "organisation": { "title": "Organisation", "type": "object", "properties": { "$ref": { "title": "Organisation URI", "type": "string" } } } } }
o69968
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the rectangle (if applicable)", "type": "number" }, "radius": { "description": "The radius of the circle (if applicable)", "type": "number" }, "width": { "description": "The width of the rectangle (if applicable)", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, rectangle)", "type": "string" } }, "required": [ "shape" ], "type": "object" }
calculate_area_da838e6b
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "___traits_trait_additional_properties_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "A grab-bag object for non-validatable data.", "title": "Has additional properties", "type": "object" }, "___traits_trait_alignment_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A property used to determine horizontal positioning of a content element relative to the elements that immediately follow it in the element sequence.", "enum": [ "left", "right", "center" ], "title": "Alignment", "type": "string" }, "___traits_trait_channel_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An optional list of output types for which this element should be visible", "items": { "type": "string" }, "title": "Channel trait", "type": "array" }, "___traits_trait_id_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A globally unique identifier of the content in the ANS repository.", "title": "Globally Unique ID trait", "type": "string" }, "___traits_trait_subtype_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.", "title": "Subtype or Template", "type": "string" } }, "description": "This represents a reference to external content that should be partially denormalized. Unlike a regular reference, it is used in a promotional context only and will never include the content_elements or related_content of the object being denormalized.", "properties": { "_id": { "$ref": "#/definitions/___traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/___traits_trait_alignment_json" }, "channels": { "$ref": "#/definitions/___traits_trait_channel_json" }, "referent": { "additionalProperties": false, "properties": { "id": { "description": "The id of the ANS document to denormalize.", "type": "string" }, "referent_properties": { "additionalProperties": {}, "description": "An object for key-value pairs that should override the values of keys with the same name in the denormalized object", "type": "object" }, "type": { "description": "The type of the ANS document to denormalize.", "enum": [ "story", "gallery", "video" ], "type": "string" } }, "required": [ "id", "type" ], "type": "object" }, "subtype": { "$ref": "#/definitions/___traits_trait_subtype_json" }, "type": { "enum": [ "promo_reference" ], "type": "string" } }, "required": [ "type", "referent" ], "title": "Representation of a normalized element, intended to only partially denormalize.", "type": "object" }
wp_112_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "packageName": { "type": "string" }, "includePackageVersions": { "type": "boolean", "default": false } }, "required": [ "packageName" ], "additionalProperties": false }
o79441
{ "properties": { "coden": { "items": { "pattern": "\\w{6}", "title": "CODEN", "type": "string" }, "title": "CODEN", "type": "array", "_uniqueItems": true }, "former_title": { "items": { "title": "Former title", "type": "string" }, "title": "Former titles", "type": "array", "_uniqueItems": true }, "history": { "title": "History", "type": "string" }, "inspire_long_title": { "title": "INSPIRE long title", "type": "string" }, "inspire_short_title": { "title": "INSPIRE short title", "type": "string" }, "issn": { "items": { "properties": { "material": { "description": "FIXME: so far it's not used!", "enum": [ "electronic", "print" ], "title": "Material", "type": "string" }, "value": { "pattern": "\\d{4}-\\d{3}[\\dX]", "title": "ISSN", "type": "string" } }, "required": [ "value" ], "title": "ISSN", "type": "object" }, "title": "ISSN", "type": "array", "_uniqueItems": true }, "journal_handling": { "title": "Journal handling", "type": "string" }, "journal_title": { "title": "Journal title (from ZDB)", "type": "string" }, "license": { "enum": [ "probably", "it", "is", "needed" ], "title": "License", "type": "string" }, "license_url": { "format": "url", "title": "License URL", "type": "string" }, "nonpublic_note": { "title": "Non public note", "type": "string" }, "peer_reviewed": { "title": "Is the journal peer-reviewed?", "type": "boolean" }, "public_note": { "title": "Publisher", "type": "string" }, "publisher": { "title": "Publisher", "type": "string" }, "relation": { "properties": { "curated_relation": { "title": "Is the relation curated?", "type": "boolean" }, "issn": { "pattern": "\\d{4}-\\d{3}[\\dX]", "title": "ISSN of the related record", "type": "string" }, "recid": { "title": "Record ID of the related record", "type": "integer" }, "relation": { "description": "FIXME: as usual, shall we capture only superseeded records and derive the symmetric relation automatically?", "enum": [ "superseded record", "superseeding record" ], "title": "Type of relation", "type": "string" } }, "required": [ "relation", "issn" ], "title": "Relation", "type": "object" }, "title_variants": { "items": { "title": "Title variant", "type": "string" }, "title": "Title variants", "type": "array", "_uniqueItems": true }, "url": { "format": "url", "title": "URL of the journal", "type": "string" } }, "required": [], "title": "Journal", "type": "object" }
o50673
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "events": { "type": "object", "description": "Publish a stream of event bus activity through wrapper events.", "properties": { "stream": { "type": "string", "description": "The topic through which to publish event items.", "default": null } } }, "log": { "type": "object", "description": "Publish a stream of log items through wrapper events.", "properties": { "stream": { "type": "string", "description": "The topic through which to publish log items.", "default": null } } }, "pageInfo": { "type": "object", "description": "Publish the current page for inspection.", "properties": { "resource": { "type": "string", "description": "The topic through which to publish the current page.", "default": null } } }, "grid": { "type": "object", "description": "Publish application-specific grid configuration set by the host application.", "properties": { "resource": { "type": "string", "description": "A resource through which to publish grid settings.", "default": null } } }, "development": { "type": "object", "properties": { "liveReload": { "type": "boolean", "default": true } } } } }
o89606
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "MyGame_OtherNameSpace_FromInclude": { "type": "string", "enum": [ "IncludeVal" ] }, "MyGame_Example_Color": { "type": "string", "enum": [ "Red", "Green", "Blue" ] }, "MyGame_Example_Any": { "type": "string", "enum": [ "NONE", "Monster", "TestSimpleTableWithEnum", "MyGame_Example2_Monster" ] }, "MyGame_Example_AnyUniqueAliases": { "type": "string", "enum": [ "NONE", "M", "TS", "M2" ] }, "MyGame_Example_AnyAmbiguousAliases": { "type": "string", "enum": [ "NONE", "M1", "M2", "M3" ] }, "MyGame_OtherNameSpace_Unused": { "type": "object", "properties": { "a": { "type": "number" } }, "additionalProperties": false }, "MyGame_OtherNameSpace_TableB": { "type": "object", "properties": { "a": { "$ref": "#/definitions/TableA" } }, "additionalProperties": false }, "TableA": { "type": "object", "properties": { "b": { "$ref": "#/definitions/MyGame_OtherNameSpace_TableB" } }, "additionalProperties": false }, "MyGame_InParentNamespace": { "type": "object", "properties": {}, "additionalProperties": false }, "MyGame_Example2_Monster": { "type": "object", "properties": {}, "additionalProperties": false }, "MyGame_Example_Test": { "type": "object", "properties": { "a": { "type": "number" }, "b": { "type": "number" } }, "additionalProperties": false }, "MyGame_Example_TestSimpleTableWithEnum": { "type": "object", "properties": { "color": { "$ref": "#/definitions/MyGame_Example_Color" } }, "additionalProperties": false }, "MyGame_Example_Vec3": { "type": "object", "properties": { "x": { "type": "number" }, "y": { "type": "number" }, "z": { "type": "number" }, "test1": { "type": "number" }, "test2": { "$ref": "#/definitions/MyGame_Example_Color" }, "test3": { "$ref": "#/definitions/MyGame_Example_Test" } }, "additionalProperties": false }, "MyGame_Example_Ability": { "type": "object", "properties": { "id": { "type": "number" }, "distance": { "type": "number" } }, "additionalProperties": false }, "MyGame_Example_Stat": { "type": "object", "properties": { "id": { "type": "string" }, "val": { "type": "number" }, "count": { "type": "number" } }, "additionalProperties": false }, "MyGame_Example_Referrable": { "type": "object", "properties": { "id": { "type": "number" } }, "additionalProperties": false }, "MyGame_Example_Monster": { "type": "object", "description": " an example documentation comment: monster object", "properties": { "pos": { "$ref": "#/definitions/MyGame_Example_Vec3" }, "mana": { "type": "number" }, "hp": { "type": "number" }, "name": { "type": "string" }, "friendly": { "type": "boolean" }, "inventory": { "type": "array", "items": { "type": "number" } }, "color": { "$ref": "#/definitions/MyGame_Example_Color" }, "test_type": { "$ref": "#/definitions/MyGame_Example_Any" }, "test": { "anyOf": [ { "$ref": "#/definitions/MyGame_Example_Monster" }, { "$ref": "#/definitions/MyGame_Example_TestSimpleTableWithEnum" }, { "$ref": "#/definitions/MyGame_Example2_Monster" } ] }, "test4": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_Test" } }, "testarrayofstring": { "type": "array", "items": { "type": "string" } }, "testarrayoftables": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_Monster" } }, "enemy": { "$ref": "#/definitions/MyGame_Example_Monster" }, "testnestedflatbuffer": { "type": "array", "items": { "type": "number" } }, "testempty": { "$ref": "#/definitions/MyGame_Example_Stat" }, "testbool": { "type": "boolean" }, "testhashs32_fnv1": { "type": "number" }, "testhashu32_fnv1": { "type": "number" }, "testhashs64_fnv1": { "type": "number" }, "testhashu64_fnv1": { "type": "number" }, "testhashs32_fnv1a": { "type": "number" }, "testhashu32_fnv1a": { "type": "number" }, "testhashs64_fnv1a": { "type": "number" }, "testhashu64_fnv1a": { "type": "number" }, "testarrayofbools": { "type": "array", "items": { "type": "boolean" } }, "testf": { "type": "number" }, "testf2": { "type": "number" }, "testf3": { "type": "number" }, "testarrayofstring2": { "type": "array", "items": { "type": "string" } }, "testarrayofsortedstruct": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_Ability" } }, "flex": { "type": "array", "items": { "type": "number" } }, "test5": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_Test" } }, "vector_of_longs": { "type": "array", "items": { "type": "number" } }, "vector_of_doubles": { "type": "array", "items": { "type": "number" } }, "parent_namespace_test": { "$ref": "#/definitions/MyGame_InParentNamespace" }, "vector_of_referrables": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_Referrable" } }, "single_weak_reference": { "type": "number" }, "vector_of_weak_references": { "type": "array", "items": { "type": "number" } }, "vector_of_strong_referrables": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_Referrable" } }, "co_owning_reference": { "type": "number" }, "vector_of_co_owning_references": { "type": "array", "items": { "type": "number" } }, "non_owning_reference": { "type": "number" }, "vector_of_non_owning_references": { "type": "array", "items": { "type": "number" } }, "any_unique_type": { "$ref": "#/definitions/MyGame_Example_AnyUniqueAliases" }, "any_unique": { "anyOf": [ { "$ref": "#/definitions/MyGame_Example_Monster" }, { "$ref": "#/definitions/MyGame_Example_TestSimpleTableWithEnum" }, { "$ref": "#/definitions/MyGame_Example2_Monster" } ] }, "any_ambiguous_type": { "$ref": "#/definitions/MyGame_Example_AnyAmbiguousAliases" }, "any_ambiguous": { "anyOf": [ { "$ref": "#/definitions/MyGame_Example_Monster" }, { "$ref": "#/definitions/MyGame_Example_Monster" }, { "$ref": "#/definitions/MyGame_Example_Monster" } ] }, "vector_of_enums": { "$ref": "#/definitions/MyGame_Example_Color" } }, "required": [ "name" ], "additionalProperties": false }, "MyGame_Example_TypeAliases": { "type": "object", "properties": { "i8": { "type": "number" }, "u8": { "type": "number" }, "i16": { "type": "number" }, "u16": { "type": "number" }, "i32": { "type": "number" }, "u32": { "type": "number" }, "i64": { "type": "number" }, "u64": { "type": "number" }, "f32": { "type": "number" }, "f64": { "type": "number" }, "v8": { "type": "array", "items": { "type": "number" } }, "vf64": { "type": "array", "items": { "type": "number" } } }, "additionalProperties": false } }, "$ref": "#/definitions/MyGame_Example_Monster" }
o90895
{ "title": "fabric info", "$schema": "http://json-schema.org/draft-06/schema#", "type": "object", "additionalProperties": false, "required": [ "fabric_fq_name", "management_subnets", "device_auth", "node_profiles" ], "properties": { "fabric_fq_name": { "type": "array", "items": { "type": "string" } }, "fabric_display_name": { "type": "string" }, "fabric_cluster_id": { "type": "integer" }, "management_subnets": { "type": "array", "items": { "type": "object", "description": "List of the management network subnets for the fabric", "additionalProperties": false, "required": [ "cidr" ], "properties": { "cidr": { "type": "string", "pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$" }, "gateway": { "type": "string", "format": "ipv4" } } } }, "loopback_subnets": { "type": "array", "items": { "type": "string", "description": "List of the subnet prefixes that fabric device loopback ips can be allocated.", "pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$" } }, "overlay_loopback_subnets": { "type": "array", "items": { "type": "string", "description": "List of the subnet prefixes that fabric device overlay loopback ips can be allocated.", "pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$" } }, "fabric_subnets": { "type": "array", "items": { "type": "string", "description": "List of the subnet prefixes that could be carved out for the p2p networks between fabric devices.", "pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$" } }, "pnf_servicechain_subnets": { "type": "array", "items": { "type": "string", "description": "List of the subnet prefixes that could be carved out for service chaining between fabric devices.", "pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$" } }, "fabric_asn_pool": { "type": "array", "items": { "title": "eBGP ASN Pool for fabric underlay network", "type": "object", "description": "List of the ASN pools that could be used to configure the eBGP peers for the IP fabric", "properties": { "asn_min": { "type": "integer" }, "asn_max": { "type": "integer" } }, "required": [ "asn_min", "asn_max" ] } }, "overlay_ibgp_asn": { "type": "integer", "title": "iBGP ASN for Contrail overlay network", "default": 64512 }, "device_auth": { "title": "Device Auth", "type": "array", "items": { "type": "object", "additionalProperties": false, "required": [ "username", "password" ], "properties": { "username": { "type": "string" }, "password": { "type": "string" } } } }, "node_profiles": { "type": "array", "items": { "title": "Node profile", "type": "object", "description": "List of node profiles to be used by the fabric.", "additionalProperties": false, "properties": { "node_profile_name": { "type": "string" }, "serial_nums": { "type": "array", "description": "Optional list of serial numbers of fabric devices that we want to associate with this node profile.", "items": { "type": "string" } } }, "required": [ "node_profile_name" ] } }, "interface_filters": { "type": "array", "items": { "type": "object", "maxProperties": 2, "additionalProperties": false, "properties": { "op": { "enum": [ "regex" ] }, "expr": { "type": "string" } }, "title": "filter object", "description": "filter object having op and expr fields", "default": {}, "examples": [ { "op": "regex", "expr": "^ge-" }, { "op": "regex", "expr": "^xe" } ] } }, "manage_underlay": { "title": "Manage underlay networking", "type": "boolean", "description": "Set to true if need to configure underlay networking", "default": false }, "import_configured": { "type": "boolean", "default": false, "description": "Not importing configured interfaces by default. Set this option to true if configured interfaces need to be imported as part of onboarding." }, "device_count": { "title": "Number of fabric devices", "type": "integer", "description": "Total number of devices in the fabric that needs to be zero-touch provisioned" }, "enterprise_style": { "type": "boolean", "default": true, "description": "True if enterprise style, false if sp-style configuration" }, "disable_vlan_vn_uniqueness_check": { "type": "boolean", "default": false, "description": "True if vlan-vn uniqueness validation checks needs to be disabled, false if enable all complex validations" } } }
o8457
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": { "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" } }, "type": "object" } }, "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.", "properties": { "driver": { "description": "Driver is the name of the driver to use for this volume.", "type": [ "string", "null" ] }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": [ "string", "null" ] }, "options": { "additionalProperties": { "type": [ "string", "null" ] }, "description": "Optional: Extra command options if any.", "type": [ "object", "null" ] }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": [ "boolean", "null" ] }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." } }, "required": [ "driver" ], "type": "object" }
kb_357_Normalized
{ "$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": [ "simple_smart_answer" ] }, "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": [ "simple_smart_answer" ] }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" } }, "definitions": { "description": { "type": "string" }, "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "type": "string", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$" }, "access_limited": { "type": "object", "additionalProperties": false, "properties": { "auth_bypass_ids": { "description": "Deprecated: auth_bypass_ids should be sent as a separate field", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "A list of organisation content ids permitted access to this item", "$ref": "#/definitions/guid_list" }, "users": { "type": "array", "items": { "type": "string" } } } }, "analytics_identifier": { "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations.", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "body_html_and_govspeak": { "description": "The main content provided as HTML with the govspeak markdown it's rendered from", "anyOf": [ { "$ref": "#/definitions/multiple_content_types" } ] }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "type": "object", "required": [ "start_button_text" ], "additionalProperties": false, "properties": { "body": { "$ref": "#/definitions/body_html_and_govspeak" }, "external_related_links": { "$ref": "#/definitions/external_related_links" }, "nodes": { "description": "List of nodes consisting of questions and answers", "type": "array", "items": { "description": "A node represents either a question or an answer and results in a renderable page", "type": "object", "required": [ "kind", "slug", "title" ], "additionalProperties": false, "properties": { "body": { "$ref": "#/definitions/body_html_and_govspeak" }, "kind": { "enum": [ "question", "outcome" ] }, "options": { "description": "Contains references to other nodes", "type": "array", "items": { "description": "An option represents a possible answer a user can select which links to another node", "type": "object", "required": [ "label", "slug", "next_node" ], "additionalProperties": false, "properties": { "label": { "type": "string" }, "next_node": { "type": "string" }, "slug": { "type": "string" } } } }, "slug": { "type": "string" }, "title": { "type": "string" } } } }, "start_button_text": { "$ref": "#/definitions/start_button_text" } } }, "external_link": { "type": "object", "required": [ "title", "url" ], "additionalProperties": false, "properties": { "title": { "type": "string" }, "url": { "type": "string", "format": "uri" } } }, "external_related_links": { "type": "array", "items": { "$ref": "#/definitions/external_link" } }, "first_published_at": { "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "guid": { "type": "string", "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$" }, "guid_list": { "type": "array", "items": { "$ref": "#/definitions/guid" }, "_uniqueItems": true }, "locale": { "type": "string", "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ] }, "multiple_content_types": { "type": "array", "items": { "type": "object", "required": [ "content_type", "content" ], "additionalProperties": false, "properties": { "content": { "type": "string" }, "content_type": { "type": "string" } } } }, "public_updated_at": { "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "publishing_app_name": { "description": "The application that published this item.", "type": "string", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ] }, "rendering_app": { "description": "The application that renders this item.", "type": "string", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ] }, "route": { "type": "object", "required": [ "path", "type" ], "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } } }, "routes": { "type": "array", "items": { "$ref": "#/definitions/route" }, "minItems": 1 }, "start_button_text": { "description": "Custom text to be displayed on the green button that takes you to another page", "type": "string" }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] } } }
o21370
{ "properties": { "attachments": { "description": "The files to attach to the email", "items": { "description": "Paths of the files to attach", "type": "string" }, "type": "array" }, "message": { "description": "The content of the email message", "type": "string" }, "recipient": { "description": "The email address of the recipient", "type": "string" }, "subject": { "description": "The subject of the email", "type": "string" } }, "required": [ "recipient", "subject", "message" ], "type": "object" }
send_email_b3029254
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Specifies how Wangscape should convert a set of terrain tiles into corner Wang tilesets.", "properties": { "AlphaCalculatorMode": { "description": "Specifies which type of AlphaCalculator should be used to convert corner weights into alpha values.", "enum": [ "Max", "Linear", "TopTwo", "Dither" ], "title": "AlphaCalculatorMode schema", "type": "string" }, "AlphaCalculatorTopTwoPower": { "description": "Specifies an exponent to which noise values should be raised before applying TopTwo or related alpha calculators.", "title": "AlphaCalculatorTopTwoPower schema", "type": "number" }, "CentralModuleGroups": { "description": "Specifies the locations of JSON files containing module groups to use in the centre of generated tile partitions.", "items": { "additionalProperties": false, "description": "Specifies a terrain and the location of a JSON file containing the module group which should be used for the central weight of corner masks associated with that terrain.", "properties": { "Filename": { "description": "Specifies the location of the JSON file containing the module group for use in tile centres with this terrain.", "minLength": 1, "title": "CentralModuleGroups Filename schema", "type": "string" }, "Terrain": { "description": "Specifies a terrain by its key in the Terrains property.", "minLength": 1, "pattern": "^[0-9a-zA-Z_-]+$", "title": "CentralModuleGroups terrain schema", "type": "string" } }, "required": [ "Terrain", "Filename" ], "title": "CentralModuleGroups item schema", "type": "object" }, "minItems": 1, "title": "CentralModuleGroups schema", "type": "array", "_uniqueItems": true }, "Cliques": { "description": "Specifies terrain type sets for which corner Wang tilesets will be generated.", "items": { "description": "Specifies a set of 2-4 terrain types for which a corner Wang tileset will be generated.", "items": { "description": "Specifies a terrain type by its key in the Terrains property.", "minLength": 1, "pattern": "^[0-9a-zA-Z_-]+$", "title": "Clique item schema", "type": "string" }, "maxItems": 4, "minItems": 2, "title": "Clique schema", "type": "array", "_uniqueItems": true }, "minItems": 1, "title": "Cliques schema", "type": "array", "_uniqueItems": true }, "CombinerModuleGroup": { "description": "Specifies the location of the JSON file containing the module group to use to combine border and central module groups into the corner masks used to generate tiles.", "minLength": 1, "title": "CombinerModuleGroup filename schema", "type": "string" }, "DebugOutput": { "default": false, "description": "Specifies whether Wangscape should write debug data during tile generation.", "title": "DebugOutput schema", "type": "boolean" }, "DebugTileResolution": { "description": "Specifies the resolution of the images written as debug data during tile generation.", "items": { "minimum": 1, "multipleOf": 1, "type": "integer" }, "maxItems": 2, "minItems": 2, "title": "DebugTileResolution schema", "type": "array" }, "DefaultModuleGroup": { "description": "Optionally specifies the location of a JSON file containing a default module group to use for tile centres and borders which don't have a module group specified in CentralModuleGroups, LeftBorderModuleGroups, or RightBorderModuleGroups.", "minLength": 1, "title": "DefaultModuleGroup schema", "type": "string" }, "LeftBorderModuleGroups": { "description": "Specifies the locations of JSON files containing module groups to use to weight the left side of horizontal borders in tile generation.", "items": { "additionalProperties": false, "description": "Specifies an ordered pair of terrains and the location of a JSON file containing the module group which should be used for borders connecting them.", "properties": { "Filename": { "description": "Specifies the location of the JSON file containing the module group for use on borders with this pair of terrains.", "minLength": 1, "title": "BorderModuleGroup Filename schema", "type": "string" }, "Terrains": { "description": "Specifies an ordered pair of terrains for which the module group should be used", "elements": { "description": "Specifies a terrain by its key in the Terrains property.", "minLength": 1, "pattern": "^[0-9a-zA-Z_-]+$", "title": "BorderModuleGroups terrain schema", "type": "string" }, "maxLength": 2, "minLength": 2, "title": "BorderModuleGroups Terrains schema", "type": "array" } }, "required": [ "Terrains", "Filename" ], "title": "BorderModuleGroup item schema", "type": "object" }, "minItems": 1, "title": "LeftBorderModuleGroup schema", "type": "array", "_uniqueItems": true }, "MetaOutput": { "additionalProperties": false, "description": "Specifies the filenames Wangscape will use to write meta-output.", "properties": { "TerrainHypergraph": { "description": "Specifies the file which will contain the hypergraph of terrains which can appear in the same tile.", "minLength": 1, "title": "Terrain hypergraph filename", "type": "string" }, "TileData": { "description": "Specifies the file which will contain individual details about each output tile.", "minLength": 1, "title": "Tile data filename", "type": "string" }, "TileGroups": { "description": "Specifies the file which will contain grouped arrays of details for similar tiles.", "minLength": 1, "title": "Tile groups filename", "type": "string" }, "TilesetData": { "description": "Specifies the file which will contain details about output tilesets.", "minLength": 1, "title": "Tileset data filename", "type": "string" } }, "required": [ "TileData", "TilesetData" ], "title": "Meta-output information schema", "type": "object" }, "OutputDirectory": { "description": "Specifies the directory where Wangscape should write the output tiles (may be wiped first!)", "minLength": 1, "title": "Output directory schema.", "type": "string" }, "Terrains": { "additionalProperties": false, "description": "Specifies the names and textures of Wangscape's input terrain tiles.", "minProperties": 2, "patternProperties": { "^[0-9a-zA-Z_-]+$": { "additionalProperties": false, "description": "Specifies the name and texture of one of Wangscape's input terrain tiles.", "properties": { "FileName": { "description": "Specifies the file in which the texture of one of Wangscape's input terrain tiles can be found.", "minLength": 1, "title": "File name schema", "type": "string" }, "FullName": { "description": "Specifies the full name of one of Wangscape's input terrain tiles.", "minLength": 1, "title": "Full name schema", "type": "string" }, "OffsetX": { "default": 0, "description": "Specifies the horizontal offset of the terrain tile's texture in the input image, divided by the tile resolution.", "maximum": 512, "minimum": 0, "multipleOf": 1, "title": "X offset schema", "type": "integer" }, "OffsetY": { "default": 0, "description": "Specifies the vertical offset of the terrain tile's texture in the input image, divided by the tile resolution.", "maximum": 512, "minimum": 0, "multipleOf": 1, "title": "Y offset schema", "type": "integer" } }, "required": [ "FullName", "FileName" ], "title": "Terrain schema", "type": "object" } }, "title": "Terrains schema", "type": "object" }, "TileFormat": { "additionalProperties": false, "description": "Specifies the format of Wangscape's input and output tiles.", "properties": { "FileType": { "default": "png", "description": "Specifies the file type of Wangscape's output tiles.", "enum": [ "bmp", "png", "tga", "jpg" ], "title": "File type schema", "type": "string" }, "Resolution": { "description": "Specifies the width and height of the square tiles Wangscape will operate on.", "items": { "maximum": 512, "minimum": 8, "multipleOf": 1, "type": "integer" }, "maxItems": 2, "minItems": 2, "title": "Tile resolution", "type": "array" } }, "required": [ "Resolution" ], "title": "Tile format schema", "type": "object" }, "TopBorderModuleGroups": { "description": "Specifies the locations of JSON files containing module groups to use to weight the top side of vertical borders in tile generation.", "items": { "additionalProperties": false, "description": "Specifies an ordered pair of terrains and the location of a JSON file containing the module group which should be used for borders connecting them.", "properties": { "Filename": { "description": "Specifies the location of the JSON file containing the module group for use on borders with this pair of terrains.", "minLength": 1, "title": "BorderModuleGroup Filename schema", "type": "string" }, "Terrains": { "description": "Specifies an ordered pair of terrains for which the module group should be used", "elements": { "description": "Specifies a terrain by its key in the Terrains property.", "minLength": 1, "pattern": "^[0-9a-zA-Z_-]+$", "title": "BorderModuleGroups terrain schema", "type": "string" }, "maxLength": 2, "minLength": 2, "title": "BorderModuleGroups Terrains schema", "type": "array" } }, "required": [ "Terrains", "Filename" ], "title": "BorderModuleGroup item schema", "type": "object" }, "minItems": 1, "title": "TopBorderModuleGroup schema", "type": "array", "_uniqueItems": true } }, "required": [ "TileFormat", "OutputDirectory", "Terrains", "Cliques", "AlphaCalculatorMode", "CombinerModuleGroup" ], "title": "Wangscape options schema", "type": "object" }
o74560
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "refObject": { "type": "object", "additionalProperties": false, "properties": { "sub1": { "type": "string", "default": "ta-da" } } } }, "type": "object", "additionalProperties": false, "properties": { "prop1": { "type": "integer", "default": 57 }, "prop2": { "$ref": "#/definitions/refObject" } }, "required": [ "prop1" ] }
o79427
{ "$schema": "http://json-schema.org/draft-04/schema#", "properties": { "schema": { "title": "Schema", "description": "The JSON Table Schema that describes of this resource.", "type": "object", "properties": { "fields": { "type": "array", "minItems": 0, "items": { "type": "object", "properties": { "name": { "type": "string", "propertyOrder": 10 }, "title": { "type": "string", "propertyOrder": 20 }, "description": { "type": "string", "propertyOrder": 30 }, "type": { "type": "string", "enum": [ "string", "number", "integer", "boolean", "object", "array", "datetime", "date", "time", "duration", "geopoint", "geojson", "any" ], "propertyOrder": 40 }, "format": { "type": "string", "propertyOrder": 50 } } } } } }, "name": { "title": "Name", "description": "An identifier for this package. Lower case characters with '.', '_' and '-' are allowed.", "type": "string", "pattern": "^([a-z0-9._-])+$" }, "title": { "title": "Title", "description": "A human-readable title.", "type": "string" }, "description": { "title": "Description", "description": "A text description.", "type": "string" }, "homepage": { "title": "Home Page", "description": "The URL for this data package's website.", "type": "string" }, "version": { "title": "Version", "description": "A unique version number for this package.", "type": "string" }, "url": { "title": "URL", "description": "The URL for this resource.", "type": "string" }, "path": { "title": "Path", "description": "The relative path to this resource.", "type": "string" }, "data": { "title": "Data", "description": "The inline data for this resource.", "anyOf": [ { "type": "string" }, { "type": "array" }, { "type": "object" } ] }, "format": { "title": "Format", "description": "The file format of this resource.", "type": "string" }, "mediatype": { "title": "Media Type", "description": "The media type of this resource.", "type": "string", "pattern": "^(.+)/(.+)$" }, "encoding": { "title": "Encoding", "description": "The file encoding of this resource.", "type": "string" }, "bytes": { "title": "Bytes", "description": "The size of this resource in bytes.", "type": "integer" }, "hash": { "title": "Hash", "type": "string", "description": "The MD5 hash of this resource. Indicate other hashing algorithms with the {algorithm}:{hash} format.", "pattern": "^([^:]+:[a-fA-F0-9]+|[a-fA-F0-9]{32}|)$" }, "dialect": { "title": "Dialect", "description": "The dialect of this resource file type.", "type": "object" }, "author": { "title": "Author", "description": "A contributor to this package.", "oneOf": [ { "type": "string" }, { "type": "object", "properties": { "name": { "type": "string" }, "email": { "type": "string" }, "web": { "type": "string" } }, "required": [ "name" ] } ] }, "contributors": { "title": "Contributors", "description": "The contributors to this package.", "type": "array", "items": { "$ref": "#/properties/author" } }, "license": { "title": "License", "description": "The license under which this package is published.", "oneOf": [ { "type": "string" }, { "type": "object", "properties": { "type": { "type": "string" }, "url": { "type": "string" } }, "anyOf": [ { "title": "type required", "required": [ "type" ] }, { "title": "url required", "required": [ "url" ] } ] } ] }, "sources": { "title": "Sources", "description": "The raw sources for this resource.", "type": "array", "minItems": 0, "items": { "type": "object", "properties": { "name": { "type": "string" }, "web": { "type": "string" }, "email": { "type": "string" } }, "anyOf": [ { "title": "name required", "required": [ "name" ] }, { "title": "web required", "required": [ "web" ] }, { "title": "email required", "required": [ "email" ] } ] } }, "keywords": { "title": "Keywords", "description": "A list of keywords that describe this package.", "type": "array", "items": { "type": "string" } }, "image": { "title": "Image", "description": "A image to represent this package.", "type": "string" }, "dataDependencies": { "title": "Data Dependencies", "description": "Additional Data Packages required to install this package.", "type": "object" }, "countryCode": { "title": "ISO 3166-1 Alpha-2 Country code", "description": "A valid 2-digit ISO country code (ISO 3166-1 alpha-2), or, an array of valid ISO codes.", "oneOf": [ { "type": "string", "pattern": "^[A-Z]{2}$" }, { "type": "array", "minItems": 1, "items": { "type": "string", "pattern": "^[A-Z]{2}$" } } ] } } }
o34887
{ "additionalProperties": false, "description": "Schema for AMP Web Page context", "properties": { "ampPageViewId": { "description": "Base64 AMP page view ID - unique to Page View", "maxLength": 255, "type": "string" } }, "required": [ "ampPageViewId" ], "self": { "format": "jsonschema", "name": "amp_web_page", "vendor": "dev.amp.snowplow", "version": "1-0-0" }, "type": "object" }
sp_405_Normalized
{ "description": "Indicates the status of the obligation", "example": "Open", "oneOf": [ { "description": "The obligation is open or has not been fulfilled", "enum": [ "Open" ] }, { "description": "The obligation has been Fulfilled", "enum": [ "Fulfilled" ] } ] }
o46299
{ "additionalProperties": false, "definitions": { "border": { "type": "string" }, "borders": { "additionalProperties": false, "properties": { "bodyJoin": { "$ref": "#/definitions/border" }, "bodyLeft": { "$ref": "#/definitions/border" }, "bodyRight": { "$ref": "#/definitions/border" }, "bottomBody": { "$ref": "#/definitions/border" }, "bottomJoin": { "$ref": "#/definitions/border" }, "bottomLeft": { "$ref": "#/definitions/border" }, "bottomRight": { "$ref": "#/definitions/border" }, "joinBody": { "$ref": "#/definitions/border" }, "joinJoin": { "$ref": "#/definitions/border" }, "joinLeft": { "$ref": "#/definitions/border" }, "joinRight": { "$ref": "#/definitions/border" }, "topBody": { "$ref": "#/definitions/border" }, "topJoin": { "$ref": "#/definitions/border" }, "topLeft": { "$ref": "#/definitions/border" }, "topRight": { "$ref": "#/definitions/border" } }, "type": "object" }, "column": { "additionalProperties": false, "properties": { "alignment": { "enum": [ "left", "right", "center" ], "type": "string" }, "paddingLeft": { "type": "number" }, "paddingRight": { "type": "number" }, "truncate": { "type": "number" }, "width": { "type": "number" }, "wrapWord": { "type": "boolean" } }, "type": "object" }, "columns": { "additionalProperties": false, "patternProperties": { "^[0-9]+$": { "$ref": "#/definitions/column" } }, "type": "object" } }, "properties": { "border": { "$ref": "#/definitions/borders" }, "columnDefault": { "$ref": "#/definitions/column" }, "columns": { "$ref": "#/definitions/columns" }, "drawHorizontalLine": { "typeof": "function" } }, "type": "object" }
o91088
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://sample.trajano.net/venue.json#", "type": "object", "title": "venue", "description": "Jackson data binding is done on this project for now, this avoids requiring it in the core doxdb", "properties": { "name": { "type": "string" }, "language": { "type": "string" }, "feiId": { "type": "string" }, "rings": { "type": "array", "items": { "type": "object", "properties": { "ringNO": { "type": "string" }, "name": { "type": "string" } } } } }, "required": [ "name" ], "additionalProperties": false }
o82241
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "insurance": { "$schema": "http://json-schema.org/draft-04/schema#", "title": "Insurance Schema", "type": "object", "properties": { "company": { "type": "string" } }, "required": [ "company" ] }, "car": { "$schema": "http://json-schema.org/draft-04/schema#", "title": "Car Schema", "type": "object", "$ref": "#/definitions/vechicle", "properties": { "insurance": { "$ref": "#/definitions/insurance" }, "four_wheel_drive": { "type": "boolean" } } }, "vechicle": { "$schema": "http://json-schema.org/draft-04/schema#", "title": "Vechicle Schema", "type": "object", "properties": { "reg_number": { "type": "string" } }, "required": [ "reg_number" ] } }, "title": "Sports Car Schema", "type": "object", "$ref": "#/definitions/car", "properties": { "track": { "type": "string" } } }
o77739
{ "description": "IP address information for entries in the (plural) PodIPs field. Each entry includes:\n IP: An IP address allocated to the pod. Routable at least within the cluster.", "properties": { "ip": { "description": "ip is an IP address (IPv4 or IPv6) assigned to the pod", "type": [ "string", "null" ] } }, "type": "object" }
kb_706_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "tbutton", "description": "A tbutton atom", "type": "object", "properties": { "disabled": { "type": "boolean" }, "children": { "type": "string" }, "text": { "type": "string" } }, "anyOf": [ { "required": [ "children" ] }, { "required": [ "text" ] } ] }
o62763
{ "title": "Node Profile Import", "$schema": "http://json-schema.org/draft-06/schema#", "type": "object", "additionalProperties": false, "properties": { "fabric_fq_name": { "type": "array", "items": { "type": "string" } }, "encoded_file": { "$id": "/properties/encoded_file", "description": "The Encoded File to Import", "type": "string" }, "file_format": { "$id": "/properties/file_format", "type": "string", "description": "The format of the encoded input file", "enum": [ "yaml", "json", "YAML", "JSON" ] }, "cc_username": { "$id": "/properties/cc_username", "description": "The Contrail Command Login Username", "type": "string" }, "cc_password": { "$id": "/properties/cc_password", "description": "The Contrail Command Login Password", "type": "string" }, "contrail_command_host": { "$id": "/properties/contrail_command_host", "description": "The Contrail Command Hostname/IP", "type": "string" } } }
o8472
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "bulk_publishing": { "type": "boolean" }, "links": { "type": "object", "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/guid_list" }, "email_alert_signup": { "$ref": "#/definitions/guid_list" }, "facet_group": { "description": "The facet_group this finder uses to define available filters.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "facet_groups": { "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links.", "$ref": "#/definitions/guid_list" }, "facet_values": { "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups.", "$ref": "#/definitions/guid_list" }, "finder": { "description": "Powers links from content back to finders the content is surfaced on", "$ref": "#/definitions/guid_list" }, "lead_organisations": { "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array.", "$ref": "#/definitions/guid_list" }, "mainstream_browse_pages": { "description": "Powers the /browse section of the site. These are known as sections in some legacy apps.", "$ref": "#/definitions/guid_list" }, "meets_user_needs": { "description": "The user needs this piece of content meets.", "$ref": "#/definitions/guid_list" }, "ordered_related_items": { "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger.", "$ref": "#/definitions/guid_list" }, "ordered_related_items_overrides": { "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation.", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "All organisations linked to this content item. This should include lead organisations.", "$ref": "#/definitions/guid_list" }, "original_primary_publishing_organisation": { "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/guid_list" }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" }, "primary_publishing_organisation": { "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "related": { "$ref": "#/definitions/guid_list" }, "suggested_ordered_related_items": { "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test.", "$ref": "#/definitions/guid_list" }, "taxons": { "description": "Prototype-stage taxonomy label for this content item", "$ref": "#/definitions/guid_list" }, "topics": { "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps.", "$ref": "#/definitions/guid_list" } } }, "previous_version": { "type": "string" } }, "definitions": { "guid": { "type": "string", "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$" }, "guid_list": { "type": "array", "items": { "$ref": "#/definitions/guid" }, "_uniqueItems": true } } }
o21221
{ "properties": { "dimensions": { "dependencies": { "base": [ "triangle" ], "height": [ "triangle", "rectangle" ], "length": [ "rectangle", "triangle" ], "radius": [ "circle" ], "shape": [ "rectangle", "circle", "triangle" ], "width": [ "rectangle" ] }, "properties": { "base": { "description": "The base of the shape (applicable for triangle)", "type": "number" }, "height": { "description": "The height of the shape (applicable for triangle and rectangle)", "type": "number" }, "length": { "description": "The length of the shape (applicable for rectangle and triangle)", "type": "number" }, "radius": { "description": "The radius of the shape (applicable for circle)", "type": "number" }, "width": { "description": "The width of the shape (applicable for rectangle)", "type": "number" } }, "required": [ "length", "width", "radius", "base", "height" ], "type": "object" }, "shape": { "description": "The shape for which the area needs to be calculated", "enum": [ "rectangle", "circle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_08e029cf
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "A Trademark is a recognizable sign, design, or expression which identifies products or services of a particular source from those of others. This schema is actually for the trademark registration, i.e. not just the mark details, but the record of when it was registered and who holds the trademark. See also http://www.wipo.int/standards/XMLSchema/HTML/ST96TechnicalSpecification/V0-11/TrademarkComponents.html", "properties": { "register": { "description": "The register on which the trademark is listed", "type": "string" }, "holders": { "type": "array", "description": "Details of the holder(s) of the trademark (sometimes called the owners)", "items": { "$ref": "#/definitions/entity" } }, "correspondent": { "$ref": "#/definitions/entity", "description": "Details of the correspondent (i.e. contact person)" }, "representative": { "$ref": "#/definitions/entity", "description": "Details of the representative" }, "mark_details": { "description": "Details of the trademark itself (rather than the registration)", "type": "object", "properties": { "mark_text": { "description": "Text of the trademark", "type": "string" }, "mark_form": { "description": "The form (i.e. category) of the mark. Sensory marks include smells and sounds", "enum": [ "text", "image", "sensory_mark", "three_d_mark" ] }, "mark_type": { "description": "Free text description of mark type (as provided by register), e.g. 'Illustration', 'Typeset: Word(s)/letter(s)/number(s)'", "type": "string" }, "mark_image": { "properties": { "uid": { "description": "A unique identifier", "type": "string" }, "format": { "description": "Type of image format", "type": "string" }, "path": { "description": "Path of image", "type": "string" }, "description": { "description": "Description of image in words", "type": "string" } }, "additionalProperties": false }, "classification": { "type": "array", "description": "Classification of the trademark", "items": { "$ref": "#/definitions/nice_classification" } } }, "additionalProperties": false }, "status": { "description": "Status of the trademark registration", "type": "string" }, "uid": { "description": "Unique id/reference for the trademark registration", "type": "string" }, "url": { "description": "URL of trademark registration", "type": "string" }, "source_url": { "description": "Url of the source of the data (e.g. download URL), or if there is not persistent URL the page from which it can be found (e.g. search page). This field is required.", "type": "string", "minLength": 11 }, "confidence": { "description": "Confidence in accuracy of data", "enum": [ "HIGH", "MEDIUM", "LOW" ] }, "registration_date": { "description": "Date on which the mark was registered", "type": "string", "format": "date" }, "expiry_date": { "description": "Date on which the registration ended, or is scheduled to expire", "type": "string", "format": "date" }, "start_date": { "description": "This should be the same as registration_date", "type": "string", "format": "date" }, "start_date_type": { "enum": [ "at", "before", "after" ] }, "retrieved_at": { "description": "Date-time this was retrieved from the source", "type": "string", "format": "date-time" }, "sample_date": { "description": "Date on which we know this to be true (for example the date the trademark data was retrieved if there's no explicit registration date)", "type": "string", "format": "date" }, "other_attributes": { "description": "Use for other attributes for which we don't yet have curated schema attributes", "type": "object" } }, "additionalProperties": false, "required": [ "holders", "mark_details", "register", "retrieved_at", "source_url", "sample_date", "confidence" ], "definitions": { "nice_classification": { "$schema": "http://json-schema.org/draft-04/schema#", "title": "NICE Trademark Classification", "description": "A classification from a the WIPO Nice classification system for trademarks. See http://web2.wipo.int/classifications/nice/nicepub/en/fr/edition-20170101/classheadings/ and https://en.wikipedia.org/wiki/International_(Nice)_Classification_of_Goods_and_Services", "type": "object", "properties": { "code_scheme_id": { "description": "The scheme of the classification", "enum": [ "wipo_nice" ] }, "code": { "description": "The classification code", "type": "string" }, "enhanced_descriptions": { "description": "Enhanced descriptions of the classification (may enhance restrict, or otherwise alter standard classification)", "type": "array", "items": { "$ref": "#/definitions/nice_enhanced_description" } } }, "additionalProperties": false, "required": [ "code", "code_scheme_id" ] }, "nice_enhanced_description": { "$schema": "http://json-schema.org/draft-04/schema#", "title": "Enhanced description for NICE Trademark Classification", "description": "NICE Trademark classifications are quite broad, and the specific areas being claimed for are often not for a complete classification but for an arbitrary set of areas, specified in freetext by the trademark owner.", "type": "object", "properties": { "language": { "description": "The language code as 2-letter ISO 639 language code", "type": "string", "minLength": 2, "maxLength": 2 }, "description": { "description": "The text of the description", "type": "string" } }, "additionalProperties": false }, "entity": { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "entity_type", "entity_properties" ], "oneOf": [ { "properties": { "entity_type": { "enum": [ "company" ] }, "entity_properties": { "$ref": "#/definitions/company-for-nesting" } } }, { "properties": { "entity_type": { "enum": [ "person" ] }, "entity_properties": { "$ref": "#/definitions/person" } } }, { "properties": { "entity_type": { "enum": [ "organisation" ] }, "entity_properties": { "$ref": "#/definitions/organisation" } } }, { "properties": { "entity_type": { "enum": [ "unknown" ] }, "entity_properties": { "$ref": "#/definitions/unknown-entity-type" } } } ] }, "company-for-nesting": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A company in OpenCorporates", "type": "object", "properties": { "company_number": { "type": "string", "description": "unique identifier given by the corporate register with which it is incorporated", "minLength": 1 }, "name": { "type": "string", "description": "Legal name of the company", "minLength": 1 }, "jurisdiction": { "type": "string", "description": "A free text field for the jurisdiction where the company is registered \u2013 this can be either the ISO 3166-2 code, the underscored version, or the standard name for the jurisdiction, e.g. France" }, "jurisdiction_code": { "type": "string", "description": "Code representing the jurisdiction/company register which is the canonical record of the company\u2019s existence. Uses underscored ISO 3166-2 to represent it, e.g. es for Spain, us_de for Delaware", "minLength": 2, "maxLength": 5 }, "incorporation_date": { "type": "string", "format": "date" }, "dissolution_date": { "type": "string", "format": "date" }, "retrieved_at": { "type": "string", "format": "date" }, "current_status": { "type": [ "string", "null" ] }, "company_type": { "type": [ "string", "null" ] }, "registry_url": { "type": "string" }, "website": { "oneOf": [ { "type": "string", "minLength": 5 }, { "type": [ "array", "null" ], "items": { "type": "string", "minLength": 5 } } ] }, "telephone_number": { "type": "string", "minLength": 4 }, "fax_number": { "type": "string", "minLength": 4 }, "registered_address": { "$ref": "#/definitions/address" }, "headquarters_address": { "$ref": "#/definitions/address" }, "mailing_address": { "$ref": "#/definitions/address" }, "addresses": { "type": "array", "items": { "$ref": "#/definitions/address-with-type" } }, "officers": { "type": "array", "items": { "$ref": "#/definitions/officer" } }, "share_parcels": { "type": "array", "items": { "$ref": "#/definitions/share-parcel" } }, "total_shares": { "$ref": "#/definitions/total-shares" }, "filings": { "type": "array", "items": { "$ref": "#/definitions/filing" } }, "identifiers": { "type": "array", "items": { "$ref": "#/definitions/identifier" } }, "industry_codes": { "type": "array", "items": { "$ref": "#/definitions/industry-code" } }, "previous_names": { "type": "array", "items": { "$ref": "#/definitions/previous-name" } }, "alternative_names": { "type": "array", "items": { "$ref": "#/definitions/alternative-name" } }, "branch": { "type": [ "string", "null" ], "description": "A flag to denote whether a company is a branch entity. This should only be set if the company is a type of branch (otherwise should be null). In general the only option here is 'F' for a 'Foreign' branch, i.e. an out-of-jurisdiction entity that has registered as having a presence in the jurisdiction. In the US this is sometimes called a Foreign Corporation", "enum": [ "F", "L", null ] }, "all_attributes": { "type": "object", "description": "Other arbitrary attributes for a given company", "properties": { "jurisdiction_of_origin": { "type": [ "string", "null" ], "description": "The jurisdiction of the 'home' company if this is a branch", "minLength": 1 }, "home_company_number": { "type": [ "string", "null" ], "description": "If the entity is a 'branch', this is the company_number of the 'home' company in the home company's jurisdiction", "minLength": 1 }, "home_legal_name": { "type": [ "string", "null" ], "description": "The legal name of the 'home' company in its jurisdiction if this is a branch, and the name is different from the legal name of the branch", "minLength": 1 }, "registered_agent_address": { "type": [ "string", "null" ], "description": "The address of the 'Agent', a public address to which legal papers can be served", "minLength": 1 }, "registered_agent_name": { "type": [ "string", "null" ], "description": "The 'Agent' of the company \u2013 a person or entity that is empowered to accept service for the company", "minLength": 1 }, "number_of_employees": { "anyOf": [ { "type": "string", "minLength": 1 }, { "type": "number", "minimum": 0 } ], "description": "The number of employees" }, "merged_into": { "type": "object", "description": "Information on the merger of this company into a 'survivor' company", "properties": { "surviving_company": { "type": [ "object" ], "description": "the surviving_company that this has been merged into", "properties": { "name": { "type": "string", "description": "The legal name of the surviving company", "minLength": 1 }, "company_number": { "type": "string", "description": "The company_number of the surviving company, if known", "minLength": 1 }, "jurisdiction": { "type": "string", "description": "The jurisdiction of incorporation of the surviving company", "minLength": 2 } }, "anyOf": [ { "required": [ "name" ] }, { "required": [ "company_number" ] } ] }, "effective_date": { "description": "The date of the merger", "type": "string", "format": "date" } }, "additionalProperties": false, "required": [ "surviving_company" ] } } } }, "additionalProperties": false, "anyOf": [ { "required": [ "name" ] }, { "required": [ "company_number" ] } ] }, "address": { "$schema": "http://json-schema.org/draft-04/schema#", "oneOf": [ { "type": [ "string", "null" ], "minLength": 2 }, { "name": "Address", "description": "An address object", "type": "object", "properties": { "street_address": { "type": "string" }, "locality": { "type": "string" }, "region": { "type": "string" }, "postal_code": { "type": "string" }, "country": { "type": "string" }, "country_code": { "description": "ISO 3166-2 code for country", "type": "string" } }, "anyOf": [ { "required": [ "street_address" ] }, { "required": [ "postal_code" ] }, { "required": [ "locality", "country" ] } ] } ] }, "address-with-type": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An address with a type", "type": "object", "properties": { "address": { "$ref": "#/definitions/address" }, "type": { "enum": [ "registered", "headquarters", "mailing", "trading", "unknown" ] } }, "additionalProperties": false, "required": [ "address", "type" ] }, "officer": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An officer (director, senior executive) of a company", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "not": { "pattern": "^[\\.\\,\\*\\\\\\-\\s\\{\\}\\(\\)]+$" } }, "start_date": { "anyOf": [ { "type": "string", "format": "date" }, { "type": "null" } ] }, "end_date": { "anyOf": [ { "type": "string", "format": "date" }, { "type": "null" } ] }, "position": { "type": "string" }, "uid": { "type": "string", "description": "a unique identifier given to the officership" }, "other_attributes": { "type": "object", "properties": { "date_of_birth": { "type": "string", "format": "date" }, "nationality": { "type": "string" }, "person_uid": { "type": "string", "description": "a unique identifier given to the individual (as opposed to the officership)" }, "address": { "$ref": "#/definitions/address" }, "type": { "type": "string", "enum": [ "Person", "Company" ], "description": "The type of entity that is the officer (either 'Person' or 'Company')" } } } }, "required": [ "name" ] }, "share-parcel": { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "description": "A parcel of shares in a company", "properties": { "number_of_shares": { "description": "Number of shares, if known", "type": "integer" }, "percentage_of_shares": { "description": "Percentage of shares, if known", "type": "number", "maximum": 100, "minimum": 0 }, "percentage_of_shares_min": { "description": "Minimum percentage of shares (if for example a band of percentage is given)", "type": [ "number", "null" ], "maximum": 100, "minimum": 0 }, "percentage_of_shares_max": { "description": "Maximum percentage of shares (if for example a band of percentage is given)", "type": [ "number", "null" ], "maximum": 100, "minimum": 0 }, "voting_percentage": { "description": "Percentage of votes, if known", "type": "number", "maximum": 100, "minimum": 0 }, "voting_percentage_min": { "description": "Minimum percentage of votes (if for example a band of votes is given)", "type": [ "number", "null" ], "maximum": 100, "minimum": 0 }, "voting_percentage_max": { "description": "Maximum percentage of votes (if for example a band of votes is given)", "type": [ "number", "null" ], "maximum": 100, "minimum": 0 }, "share_class": { "description": "Share class or classes, if known", "type": "string" }, "start_date": { "type": "string", "format": "date" }, "end_date": { "type": "string", "format": "date" }, "sample_date": { "type": "string", "format": "date" }, "shareholders": { "description": "Legal persons who own this share parcel", "type": "array", "minItems": 1, "items": { "type": "object", "name": "shareholder", "required": [ "name" ], "properties": { "name": { "description": "Name of natural person or company", "type": "string", "minLength": 1 }, "jurisdiction": { "description": "Jurisdiction of registration, if company", "type": "string" }, "company_number": { "description": "Company number, if company and known", "type": "string" }, "identifier": { "description": "Unique identifier of person", "type": "string" }, "type": { "description": "Type of person if known (company or natural person)", "enum": [ "Company", "Person" ] }, "address": { "description": "Address given for shareholder", "$ref": "#/definitions/address" }, "address_country": { "description": "Country part of owner's address (for example if address not given)", "type": "string" } } } } } }, "total-shares": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The total number of shares a company has issued", "type": "object", "properties": { "number": { "type": "integer" }, "share_class": { "type": "string", "minLength": 1 } }, "required": [ "number" ] }, "filing": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A statutory filing", "type": "object", "properties": { "title": { "type": "string" }, "date": { "type": "string", "format": "date" }, "description": { "type": "string" }, "uid": { "type": "string" }, "url": { "type": "string" }, "filing_type_code": { "type": "string" }, "filing_type_name": { "type": "string" }, "other_attributes": { "type": "object" } }, "required": [ "date" ], "anyOf": [ { "required": [ "title" ] }, { "required": [ "description" ] }, { "required": [ "filing_type_name" ] } ] }, "identifier": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An identifier for an entity (possibly other things, e.g. securities in the future). Examples are tax IDs, non-profit IDs, SEC CIK numbers, Federal Reserve RSSD id. The main requirements for an identifier is that they should be well-defined, and issued by a government or have statutory standing", "type": "object", "properties": { "uid": { "type": "string", "description": "The unique identifier given by the identifier system \u2013 it should be unique in the context of the identifier_system", "minLength": 1 }, "identifier_system_code": { "type": "string", "description": "An identifier representing the identifier scheme. Some examples of this are us_fein (US Federal tax number), us_sec_cik (US Securities and Exchange Commission CIK), uk_ew_cc (Charity Commission of England & Wales), lei (Global Legal Entity Identifier System)" } }, "required": [ "uid", "identifier_system_code" ] }, "industry-code": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An industry code from a standard code list (e.g. NAICS 2007 or NACE 2). This schema is a sub-schema of Classification.", "type": "object", "properties": { "name": { "type": "string" }, "code": { "type": "string" }, "code_scheme_id": { "type": "string", "description": "An identifier representing industry code scheme. At the moment these are eu_nace_2, uk_sic_2003, uk_sic_2007, us_naics_2002, us_naics_2007, be_nace_2008, dk_db_2007, nz_bic_2006, no_sic_2007, anz_sic_2006, nz_bic_2006, in_nic_2004_mca, ca_qc_cae, lu_nace_2. For other code schemes, or details of these, contact [email protected]" }, "start_date": { "type": "string", "format": "date" }, "end_date": { "type": "string", "format": "date" } }, "required": [ "code", "code_scheme_id" ] }, "previous-name": { "$schema": "http://json-schema.org/draft-04/schema#", "name": "PreviousName", "description": "A previous name of a company", "type": "object", "properties": { "company_name": { "type": "string", "minLength": 1 }, "con_date": { "type": "string", "format": "date", "description": "The end (conversion) date of the name" }, "start_date": { "type": "string", "format": "date" } }, "required": [ "company_name" ] }, "alternative-name": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An alternative name of a company, e.g. abbreviation, trading (including dba or doing business as), legal. As well as trading names etc, it can be used for storing alternative language representations of the legal name, in which case the language should be represented as two-letter ISO-639 code", "type": "object", "properties": { "company_name": { "type": "string", "minLength": 1 }, "start_date": { "type": "string", "format": "date" }, "end_date": { "type": "string", "format": "date" }, "language": { "type": "string", "minLength": 2, "maxLength": 2 }, "type": { "type": "string", "enum": [ "trading", "abbreviation", "legal", "unknown", "alias" ] } }, "required": [ "company_name", "type" ] }, "person": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A person, for example, referenced in some other context, e.g. director of a company, shareholder, licence-holder, lobbyist. This should be used only if the person is the subject of the datum", "type": "object", "additionalProperties": false, "properties": { "name": { "$ref": "#/definitions/person-name" }, "jurisdiction": { "type": "string", "description": "Name of the jurisdiction in which the entity is based" }, "company": { "description": "Company the person is representing. NB If the licence holder is a company, and the individual is a just a contact, then use the company-schema for the entity. This is where the individual themselves are the subject entity (e.g. licence holder, disqualified director)", "$ref": "#/definitions/company-for-nesting" }, "relationship_with_company": { "enum": [ "employee", "director", "shareholder", null ] }, "website": { "oneOf": [ { "type": "string", "minLength": 5 }, { "type": [ "array", "null" ], "items": { "type": "string", "minLength": 5 } } ] }, "uid": { "description": "Unique id of the person. Note: the unique id is not expected to be globally unique, but only unique with reference to the source from which it is derived. No check is made for uniqueness", "type": "string", "minLength": 1 }, "telephone_number": { "type": "string", "minLength": 4 }, "fax_number": { "type": "string", "minLength": 4 }, "registered_address": { "description": "address for service (or address given in the context of legal requirement)", "$ref": "#/definitions/address" }, "headquarters_address": { "$ref": "#/definitions/address" }, "mailing_address": { "$ref": "#/definitions/address" }, "addresses": { "type": "array", "items": { "$ref": "#/definitions/address-with-type" } }, "industry_codes": { "type": "array", "items": { "$ref": "#/definitions/industry-code" } }, "alternative_names": { "type": "array", "items": { "$ref": "#/definitions/alternative-name" } }, "date_of_birth": { "anyOf": [ { "type": "string", "format": "date" }, { "$ref": "#/definitions/date" } ] }, "nationality": { "description": "The person's nationality", "type": "string", "format": "non-blank" }, "country_of_residence": { "description": "The normal country of residence for the person", "type": "string", "format": "non-blank" }, "identifiers": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/identifier" } }, "other_attributes": { "description": "Use for other attributes for which we don't yet have curated schema attributes", "type": "object" } }, "required": [ "name" ] }, "person-name": { "$schema": "http://json-schema.org/draft-04/schema#", "oneOf": [ { "type": [ "string", "null" ], "format": "non-blank" }, { "description": "The name of a person as an object", "type": "object", "properties": { "given_name": { "type": [ "string", "null" ], "format": "non-blank", "description": "The given name(s) (often first name) of a person, as opposed to their family name. Following FOAF practice, this is preferred to first_name" }, "family_name": { "type": [ "string", "null" ], "format": "non-blank", "description": "The family name (often last name) of a person, as opposed to their family name. Following FOAF practice, this is preferred to last_name" }, "first_name": { "type": [ "string", "null" ], "format": "non-blank" }, "middle_name": { "type": [ "string", "null" ], "format": "non-blank" }, "last_name": { "type": [ "string", "null" ], "format": "non-blank" }, "title": { "type": [ "string", "null" ], "format": "non-blank", "description": "Title such as Mr, Ms, Dr etc" }, "suffixes": { "type": [ "string", "null" ], "format": "non-blank", "description": "Any suffixes, including degrees, honours (OBE), ordinals (John Smith Jr, Bill Jones II) etc" } } } ] }, "date": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A parsed date object. This allows us to represent not just normal dates, but also partial dates too", "type": "object", "properties": { "year": { "type": "number", "description": "year part as YYYY" }, "month": { "type": "number", "description": "month part of date in numbers e.g. 11 for November, 4 for April" }, "day": { "type": [ "number", "null" ], "description": "day part of date in numbers" } }, "additionalProperties": false, "anyOf": [ { "required": [ "year", "month" ] }, { "required": [ "month", "day" ] } ] }, "organisation": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An entity which is a distinct organisation, but is not a company nor an individual. Examples include governments and governmental entities (e.g. Multilateral Development Banks, Government Departments, municipalities, etc), and also membership organisations", "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string", "description": "Name of the entity", "minLength": 1 }, "jurisdiction": { "type": "string", "description": "Name of the jurisdiction in which the entity is incorporated/domiciled (use global for global entities, e.g. UN)" }, "legal_form": { "type": "string", "description": "legal form of organisation, e.g. municipality, government department, trust, etc" }, "website": { "oneOf": [ { "type": "string", "minLength": 5 }, { "type": [ "array", "null" ], "items": { "type": "string", "minLength": 5 } } ] }, "telephone_number": { "type": "string", "minLength": 4 }, "fax_number": { "type": "string", "minLength": 4 }, "identifiers": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/identifier" } }, "registered_address": { "$ref": "#/definitions/address" }, "headquarters_address": { "$ref": "#/definitions/address" }, "mailing_address": { "$ref": "#/definitions/address" }, "addresses": { "type": "array", "items": { "$ref": "#/definitions/address-with-type" } }, "industry_codes": { "type": "array", "items": { "$ref": "#/definitions/industry-code" } }, "previous_names": { "type": "array", "items": { "$ref": "#/definitions/previous-name" } }, "alternative_names": { "type": "array", "items": { "$ref": "#/definitions/alternative-name" } }, "other_attributes": { "description": "Use for other attributes for which we don't yet have curated schema attributes", "type": "object" } }, "required": [ "name" ] }, "unknown-entity-type": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An entity of unknown type - potentially a company, a person, government entity, or some unincorporated organisation", "additionalProperties": false, "type": "object", "properties": { "name": { "type": "string", "description": "Name of the entity", "minLength": 1 }, "jurisdiction": { "type": "string", "description": "Name of the jurisdiction in which the entity is incorporated/domiciled" }, "uid": { "description": "Unique id for the entity if it has one", "type": "string" }, "website": { "oneOf": [ { "type": "string", "minLength": 5 }, { "type": [ "array", "null" ], "items": { "type": "string", "minLength": 5 } } ] }, "telephone_number": { "type": "string", "minLength": 4 }, "fax_number": { "type": "string", "minLength": 4 }, "registered_address": { "$ref": "#/definitions/address" }, "headquarters_address": { "$ref": "#/definitions/address" }, "mailing_address": { "$ref": "#/definitions/address" }, "addresses": { "type": "array", "items": { "$ref": "#/definitions/address-with-type" } }, "identifiers": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/identifier" } }, "industry_codes": { "type": "array", "items": { "$ref": "#/definitions/industry-code" } }, "previous_names": { "type": "array", "items": { "$ref": "#/definitions/previous-name" } }, "alternative_names": { "type": "array", "items": { "$ref": "#/definitions/alternative-name" } }, "other_attributes": { "description": "Use for other attributes for which we don't yet have curated schema attributes", "type": "object" } }, "required": [ "name" ] } } }
o65432
{ "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 for which the area is to be calculated", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_b680cace
{ "additionalProperties": false, "description": "Hypercharge get params for GET /v2/scheduler", "properties": { "active": { "description": "schedulers where active = true|false; true: Scheduler is on. false: Scheduler is turned off but still visible.", "extends": "types.json#/boolean" }, "end_date_from": { "description": "schedulers where end_date >= end_date_from", "extends": "types.json#/date" }, "end_date_to": { "description": "schedulers where end_date <= end_date_to", "extends": "types.json#/date" }, "page": { "extends": "types.json#/page" }, "per_page": { "extends": "types.json#/per_page" }, "start_date_from": { "description": "schedulers where start_date >= start_date_from", "extends": "types.json#/date" }, "start_date_to": { "description": "schedulers where start_date <= start_date_to", "extends": "types.json#/date" } }, "type": "object" }
o46895
{ "properties": { "credit_hours": { "properties": { "course1": { "description": "The credit hours for course 1", "type": "integer" }, "course2": { "description": "The credit hours for course 2", "type": "integer" } }, "required": [ "course1", "course2" ], "type": "object" }, "grades": { "properties": { "course1": { "description": "The grade for course 1", "type": "string" }, "course2": { "description": "The grade for course 2", "type": "string" } }, "required": [ "course1", "course2" ], "type": "object" } }, "required": [ "grades", "credit_hours" ], "type": "object" }
calculate_gpa_8386eb5b
{ "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" }, "guests": { "description": "The number of guests", "type": "integer" }, "location": { "description": "The location to search for hotels", "type": "string" } }, "required": [ "location", "check_in_date", "check_out_date", "guests" ], "type": "object" }
search_hotels_9c089a97
{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "positiveNumber": { "type": "number", "minimum": 0 }, "channels": { "enum": [ 1, 8 ] }, "displayCategory": { "type": "string", "enum": [ "GEN1", "GEN2" ] } }, "description": "Model-level pipette specifications. These do not vary across different versions of the same model", "type": "object", "$comment": "Example key: 'p10_single'", "patternProperties": { ".*": { "type": "object", "required": [ "channels", "displayName", "defaultAspirateFlowRate", "defaultDispenseFlowRate", "defaultBlowOutFlowRate", "maxVolume", "minVolume" ], "additionalProperties": false, "properties": { "channels": { "$ref": "#/definitions/channels" }, "defaultAspirateFlowRate": { "value": { "$ref": "#/definitions/positiveNumber" }, "min": { "$ref": "#/definitions/positiveNumber" }, "max": { "$ref": "#/definitions/positiveNumber" } }, "defaultDispenseFlowRate": { "value": { "$ref": "#/definitions/positiveNumber" }, "min": { "$ref": "#/definitions/positiveNumber" }, "max": { "$ref": "#/definitions/positiveNumber" } }, "defaultBlowOutFlowRate": { "value": { "$ref": "#/definitions/positiveNumber" }, "min": { "$ref": "#/definitions/positiveNumber" }, "max": { "$ref": "#/definitions/positiveNumber" } }, "displayName": { "type": "string" }, "displayCategory": { "$ref": "#/definitions/displayCategory" }, "maxVolume": { "$ref": "#/definitions/positiveNumber" }, "minVolume": { "$ref": "#/definitions/positiveNumber" }, "smoothieConfigs": { "type": "object", "description": "Runtime smoothie configs per pipette type", "properties": { "stepsPerMM": { "type": "number" }, "homePosition": { "type": "number" }, "travelDistance": { "type": "number" } } } } } } }
o12458
{ "properties": { "crate": { "description": "Crate configuration properties.", "properties": { "blob-path": { "description": "The absolute path where Crate should store blobs. Note that the user `crate` needs write access!", "type": "string" }, "cluster-name": { "default": "crate", "description": "The name of the Crate cluster.", "type": "string" }, "data-path": { "description": "The absolute path where Crate should store table data. Note that the user `crate` needs write access!", "type": "string" }, "framework": { "description": "Framework configuration properties.", "properties": { "api-port": { "default": 4040, "description": "Port for the REST API of the Crate Mesos Framework.", "maximum": 65535, "minimum": 0, "type": "integer" }, "auth": { "description": "Authentication Configuration Properties.", "properties": { "enabled": { "default": false, "description": "Whether framework authentication should be enabled. Requires principal and secret to be set.", "type": "boolean" }, "principal": { "description": "The Mesos principal used for framework authentication.", "type": "string" }, "secret": { "description": "The Mesos secret used for framework authentication.", "type": "string" } }, "type": "object" }, "cpus": { "default": 0.25, "description": "Required number of cpus.", "maximum": 1, "minimum": 0.25, "type": "number" }, "instances": { "default": 1, "description": "Number of framework instances.", "maximum": 3, "minimum": 1, "type": "integer" }, "memory": { "default": 512, "description": "Required heap size.", "maximum": 1024, "minimum": 256, "type": "integer" }, "role": { "default": "*", "description": "Mesos role for the framework.", "type": "string" }, "user": { "default": "root", "description": "User to run the framework as.", "type": "string" }, "zookeeper": { "default": "master.mesos:2181", "description": "URL to the Zookeeper Crate will communicate to (without protocol prefix, e.g. mesos-master:2181)", "type": "string" } }, "required": [ "zookeeper", "cpus", "instances", "memory", "api-port" ], "type": "object" }, "framework-name": { "default": "crate", "description": "The name of the framework.", "type": "string" }, "http-port": { "default": 4200, "description": "HTTP port of the Crate instances.", "maximum": 65535, "minimum": 0, "type": "integer" }, "resources": { "description": "Crate resources configuration properties.", "properties": { "cpus": { "default": 0.5, "description": "Required number of CPUs.", "maximum": 128.0, "minimum": 0.5, "type": "number" }, "disk": { "default": 2048, "description": "Required free disk space.", "maximum": 65535, "minimum": 1024, "type": "integer" }, "heap": { "default": 1024, "description": "Required heap size.", "maximum": 65535, "minimum": 512, "type": "integer" }, "memory": { "default": 2048, "description": "Required size of memory.", "maximum": 65535, "minimum": 1024, "type": "number" } }, "required": [ "cpus", "memory", "heap", "disk" ], "type": "object" }, "transport-port": { "default": 4300, "description": "Internal transport port of the Crate instances.", "maximum": 65535, "minimum": 0, "type": "integer" }, "version": { "default": "0.50.3", "description": "The version number of Crate that should be used for the framework.", "type": "string" } }, "required": [ "version", "cluster-name", "framework-name", "http-port", "transport-port" ], "type": "object" } }, "type": "object" }
o90695
{ "properties": { "base": { "description": "The base of the triangle (required for triangle shape)", "type": "number" }, "height": { "description": "The height of the triangle (required for triangle shape)", "type": "number" }, "length": { "description": "The length of the rectangle (required for rectangle shape)", "type": "number" }, "radius": { "description": "The radius of the circle (required for circle shape)", "type": "number" }, "shape": { "description": "The shape for which area needs to be calculated", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" }, "width": { "description": "The width of the rectangle (required for rectangle shape)", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_17846eca
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "items": { "type": "array", "items": { "title": "Experience Group", "description": "Schema for a single Experience Group", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "experienceGroupId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "experienceUserIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 }, "experienceEndpointIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 }, "groupTags": { "type": "object", "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "deviceIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 }, "deviceTags": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "value": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "maxItems": 100 }, "deviceQueryJson": { "type": [ "string", "null" ], "maxLength": 8192 }, "parentId": { "oneOf": [ { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, { "type": "null" } ] } } } }, "count": { "type": "integer" }, "totalCount": { "type": "integer" }, "perPage": { "type": "integer" }, "page": { "type": "integer" }, "filter": { "type": "string" }, "filterField": { "type": "string" }, "sortField": { "type": "string" }, "sortDirection": { "type": "string", "enum": [ "asc", "desc", "ASC", "DESC", "" ] }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } } }
o9881
{ "id": "http://schemas.triniti.io/json-schema/gdbots/forms/mixin/field/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "type": "string", "pattern": "^[a-zA-Z_]{1}[\\w-]*$", "description": "A unique identifier (within the form) for the field. This value is not shown to the user and should NOT change once set.", "pbj": { "type": "string", "rule": "single" } }, "maps_to": { "type": "string", "default": "cf", "pattern": "^[a-zA-Z_]{1}\\w*$", "description": "The name of the schema field the answer will map to. By default this will go to the \"cf\" field which is a \"dynamic-field\" list containing all answers filled out on the form (ref \"gdbots:forms:mixin:send-submission\").", "pbj": { "type": "string", "rule": "single" } }, "label": { "type": "string", "minLength": 0, "maxLength": 255, "description": "The main text for the question/field.", "pbj": { "type": "string", "rule": "single" } }, "placeholder": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "description": { "type": "string", "minLength": 0, "maxLength": 65535, "description": "A short description to better explain this field.", "pbj": { "type": "text", "rule": "single" } }, "is_required": { "type": "boolean", "pbj": { "type": "boolean", "rule": "single" } } }, "required": [ "name" ], "additionalProperties": true }
o82377
{ "$comment": "https://github.com/hoodiehq/first-timers-bot", "$id": "https://json.schemastore.org/first-timers.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "description": "A bot that helps onboarding new open-source contributors.", "properties": { "labels": { "title": "Labels", "description": "Sets the labels if \"first-timers-only\" is not what you are looking for.", "type": "array", "items": { "title": "Label", "type": "string" } }, "template": { "title": "Template", "description": "The path to your template, relative from the repository root.", "type": "string" }, "repository": { "title": "Repository", "description": "Specify a different repository than where the problem is. The bot must be installed on the configured repository.", "type": "string" } }, "title": "first-timers-bot", "type": "object" }
first-timers
{ "$id": "https://json.schemastore.org/bigquery-table", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "field_name": { "type": "string" }, "field_type": { "type": "string", "enum": [ "INT64", "INTEGER", "FLOAT64", "FLOAT", "NUMERIC", "BIGNUMERIC", "BOOL", "BOOLEAN", "STRING", "BYTES", "DATE", "DATETIME", "TIME", "TIMESTAMP", "STRUCT", "RECORD", "GEOGRAPHY" ] }, "field_mode": { "type": "string", "enum": ["NULLABLE", "REQUIRED", "REPEATED"] }, "field_description": { "type": "string" }, "field": { "type": "object", "required": ["name", "type"], "properties": { "name": { "$ref": "#/definitions/field_name" }, "type": { "$ref": "#/definitions/field_type" }, "mode": { "$ref": "#/definitions/field_mode" }, "description": { "$ref": "#/definitions/field_description" } }, "if": { "properties": { "type": { "enum": ["STRUCT", "RECORD"] } } }, "then": { "required": ["fields", "type", "name"], "properties": { "name": { "$ref": "#/definitions/field_name" }, "type": { "$ref": "#/definitions/field_type" }, "mode": { "$ref": "#/definitions/field_mode" }, "description": { "$ref": "#/definitions/field_description" }, "fields": { "type": "array", "items": { "$ref": "#/definitions/field" } } } } } }, "description": "BigQuery lets you specify a table's schema when you load data into a table or when you create an empty table. A table schema is a JSON file.", "items": { "$ref": "#/definitions/field" }, "type": "array" }
bigquery-table
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius", "length", "width", "base", "height" ], "type": "object" }, "shape": { "description": "The shape to calculate the area of", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_ba46209b
{ "$schema": "http://json-schema.org/draft-06/schema#", "definitions": { "cr": { "type": "integer", "minimum": 0, "maximum": 30, "required": [ "type", "minimum", "maximum" ], "additionalProperties": false }, "d100": { "type": "integer", "minimum": 1, "maximum": 100, "required": [ "type", "minimum", "maximum" ], "additionalProperties": false }, "coin": { "type": "object", "properties": { "cp": { "type": "string" }, "sp": { "type": "string" }, "ep": { "type": "string" }, "gp": { "type": "string" }, "pp": { "type": "string" } }, "additionalProperties": false }, "lootTypeAmount": { "type": "object", "properties": { "type": { "type": "string" }, "amount": { "type": "string" } }, "required": [ "type", "amount" ], "additionalProperties": false }, "gems_or_art": { "type": "array", "_uniqueItems": true, "items": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "table": { "type": "array", "_uniqueItems": true, "items": { "type": "string" } } }, "required": [ "name", "type", "table" ], "additionalProperties": false } } }, "type": "object", "properties": { "individual": { "type": "array", "_uniqueItems": true, "items": { "type": "object", "properties": { "name": { "type": "string" }, "mincr": { "$ref": "#/definitions/cr" }, "maxcr": { "$ref": "#/definitions/cr" }, "table": { "type": "array", "_uniqueItems": true, "items": { "type": "object", "properties": { "min": { "$ref": "#/definitions/d100" }, "max": { "$ref": "#/definitions/d100" }, "coins": { "$ref": "#/definitions/coin" } }, "required": [ "min", "max", "coins" ], "additionalProperties": false } } }, "required": [ "name", "mincr", "maxcr", "table" ], "additionalProperties": false } }, "hoard": { "type": "array", "_uniqueItems": true, "items": { "type": "object", "properties": { "name": { "type": "string" }, "mincr": { "$ref": "#/definitions/cr" }, "maxcr": { "$ref": "#/definitions/cr" }, "coins": { "$ref": "#/definitions/coin" }, "table": { "type": "array", "_uniqueItems": true, "items": { "type": "object", "properties": { "min": { "$ref": "#/definitions/d100" }, "max": { "$ref": "#/definitions/d100" }, "gems": { "$ref": "#/definitions/lootTypeAmount" }, "artobjects": { "$ref": "#/definitions/lootTypeAmount" }, "magicitems": { "$ref": "#/definitions/lootTypeAmount" } }, "required": [ "min", "max" ], "additionalProperties": false } } }, "required": [ "name", "mincr", "maxcr", "coins", "table" ], "additionalProperties": false } }, "gemstones": { "$ref": "#/definitions/gems_or_art" }, "artobjects": { "$ref": "#/definitions/gems_or_art" }, "magicitems": { "type": "array", "_uniqueItems": true, "items": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "table": { "type": "array", "_uniqueItems": true, "items": { "type": "object", "properties": { "min": { "$ref": "#/definitions/d100" }, "max": { "$ref": "#/definitions/d100" }, "item": { "type": "string" } } } } }, "required": [ "name", "type", "table" ], "additionalProperties": false } } }, "required": [ "individual", "hoard", "gemstones", "artobjects", "magicitems" ], "additionalProperties": false }
o72247
{ "title": "Raster Data Elevation Layer", "type": "object", "$schema": "http://json-schema.org/draft-04/schema", "description": "RasterDataElevationLayer is a single-band raster layer used for rendering elevation.", "properties": { "id": { "type": "string", "description": "A unique identifying string for the layer" }, "layerType": { "type": "string", "description": "String indicating the layer type", "enum": [ "RasterDataElevationLayer" ] }, "listMode": { "type": "string", "description": "To show or hide the elevation layer in the layer list", "enum": [ "hide", "show" ] }, "path": { "type": "string", "description": "For offline data, a path to an ArcGIS Runtime supported raster data file. A URI format is used, starting with file: followed by a file system path. A relative path must be from the file which defines the layer. For example `file:../commondata/raster_data/beijing.tif`", "pattern": "^file:.+$" }, "title": { "type": "string", "description": "A user-friendly string title for the layer that can be used in a table of contents. If this is not included, a title is derived from the service." }, "visibility": { "type": "boolean", "description": "Boolean property determining whether the layer is initially visible in the web scene.", "default": true } }, "required": [ "id", "layerType", "path", "title" ], "additionalProperties": false, "esriDocumentation": { "examples": [ { "title": "Raster Data Elevation Layer", "schema": "ground_schema.json", "code": { "ground": { "layers": [ { "id": "local_dem", "title": "Local DEM", "path": "file:../commondata/DEM.tif", "visibility": true, "layerType": "RasterDataElevationLayer" } ] } } } ] } }
o90289
{ "default": true, "description": "Show the \"back to top\" button", "type": "boolean" }
o67689
{ "properties": { "include_lowercase": { "description": "Whether to include lowercase letters", "type": "boolean" }, "include_numbers": { "description": "Whether to include numbers", "type": "boolean" }, "include_special_characters": { "description": "Whether to include special characters", "type": "boolean" }, "include_uppercase": { "description": "Whether to include uppercase letters", "type": "boolean" }, "length": { "description": "The length of the password", "type": "integer" } }, "required": [ "length" ], "type": "object" }
generate_random_password_def83a6c