json_schema
stringlengths 324
2.16k
| unique_id
stringlengths 4
6
|
---|---|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://schemas.ogf.org/glue/2013/05/spec_2.0_r1/Entity.json",
"type": "object",
"properties": {
"CreationTime": {
"type": "string",
"description": "The creation time of this entity in the format: CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]"
},
"Validity": {
"type": "integer",
"description": "The number of seconds after CreationTime that this entity should be considered relevant"
},
"ID": {
"type": "string",
"description": "A globally unique identifier for this entity"
},
"Name": {
"type": "string",
"description": "A human-readable name"
},
"OtherInfo": {
"type": "array",
"description": "Placeholder for information that does not fit in any other attribute",
"items": {
"type": "string"
}
},
"Extension": {
"type": "object",
"description": "Key/value pairs enabling the association of extra information not captured by the model"
}
},
"required": [
"ID"
]
}
|
o57936
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"entityID": {
"type": "string"
},
"nameID": {
"type": "string"
},
"tas.personal.givenName": {
"type": "string"
},
"tas.personal.familyName": {
"type": "string"
},
"tas.personal.email": {
"type": "string"
},
"tas.personal.image": {
"type": "string",
"format": "uri"
},
"tas.roles": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}
|
o79498
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"type": "object",
"properties": {
"keyName": {
"title": "Storage Key Name",
"type": "string",
"minLength": 1
},
"valuePath": {
"title": "Value Path",
"description": "JSON path for where to place value",
"type": "string",
"minLength": 1
},
"defaultValue": {
"title": "Default Value",
"description": "Value to place in 'Value Path' if key does not exist",
"type": "string",
"minLength": 1
}
},
"required": [
"keyName",
"valuePath"
]
}
|
o6185
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"properties": {
"location": {
"_format": "uri",
"type": "string"
},
"retries": {
"type": "number"
},
"retrieveDate": {
"_format": "date-time",
"type": "string"
},
"retryInterval": {
"type": "number"
}
},
"required": [
"location",
"retrieveDate"
],
"title": "UpdateFirmwareRequest",
"type": "object"
}
|
o43997
|
{
"properties": {
"transforms": {
"items": {
"properties": {
"from": {
"type": "string"
},
"to": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
|
o83301
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"assertions"
],
"properties": {
"description": {
"type": "string"
},
"context": {},
"assertions": {
"type": "array",
"minItems": 1,
"additionalItems": false,
"items": {
"type": "object",
"required": [
"input",
"output"
],
"properties": {
"input": {},
"output": {}
}
}
}
}
}
|
o74408
|
{
"$id": "https://example.com/restapi/HasBinaryFormats.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "HasBinaryFormats",
"type": "object",
"definitions": {
"BinaryFormat": {
"type": "string",
"format": "binary"
},
"ByteFormat": {
"type": "string",
"format": "byte"
}
},
"properties": {
"binaryFormat": {
"$ref": "#/definitions/BinaryFormat"
},
"byteFormat": {
"$ref": "#/definitions/ByteFormat"
}
}
}
|
o58618
|
{
"properties": {
"User": {
"properties": {
"age": {
"format": "int32",
"type": "integer"
},
"foo": {
"format": "bar",
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"key": {
"type": "string"
},
"ref": {
"format": "ext-ref",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
|
o39448
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://toyatech.net/cmsapp/contacts",
"definitions": {
"PostalAddress": {
"type": "object",
"properties": {
"street": {
"type": "string"
},
"locality": {
"type": "string"
},
"region": {
"type": "string"
},
"postalCode": {
"type": "string"
},
"postOfficeBox": {
"type": "string"
},
"country": {
"type": "string"
}
}
}
},
"properties": {
"PostalAddress": {
"$ref": "#/definitions/PostalAddress"
}
},
"required": [
"PostalAddress"
]
}
|
o82176
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"canCreateAccounts": {
"type": "boolean",
"description": "true if this account manager can create accounts - in which case TAS SSO will display a sign up button"
},
"createAccountTermsAndConditionsUrl": {
"type": "string",
"format": "uri",
"description": "A link to the terms and conditions that the user must agree to before creating an account. Only present if canCerateAccounts is true."
}
},
"required": [
"canCreateAccounts"
],
"additionalProperties": false
}
|
o79477
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"bidder": {
"type": "object",
"properties": {
"login": {
"type": "string"
}
}
},
"requestedItems": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
},
"offeredItems": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
}
}
|
o54976
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "GumGum Adapter Params",
"description": "A schema which validates params accepted by the GumGum adapter",
"type": "object",
"properties": {
"zone": {
"type": "string",
"description": "A tracking id used to identify GumGum zone.",
"minLength": 8
}
},
"required": [
"zone"
]
}
|
o68311
|
{
"$schema": "http://json-schema.org/draft-04/schema",
"type": "object",
"title": "RPC Job Payload",
"description": "An object containing a new RPC Job",
"properties": {
"query": {
"description": "A MongoDB query. For more information on the syntax: https://docs.mongodb.com/manual/reference/method/db.collection.find/",
"type": "object"
},
"instruction": {
"description": "An instruction instruction representing a Mercury RPC method call",
"type": "object",
"properties": {
"method": {
"description": "The RPC method we are targeting. Available methods can be enummerated using /active/computers/{mercury_id}",
"type": "string"
},
"args": {
"description": "Positional arguments being passed to the method",
"type": "array"
},
"kwargs": {
"description": "Keyword arguments being passed to the method",
"type": "object"
}
},
"required": [
"method"
]
}
},
"required": [
"query",
"instruction"
]
}
|
o53004
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://flynn.io/schema/common#",
"definitions": {
"id": {
"description": "unique identifier",
"format": "uuid",
"type": "string"
},
"created_at": {
"description": "object creation timestamp",
"format": "date-time",
"type": "string"
},
"updated_at": {
"description": "object last updated timestamp",
"format": "date-time",
"type": "string"
},
"config": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"properties": {
"id": {
"$ref": "#/definitions/id"
},
"created_at": {
"$ref": "#/definitions/created_at"
},
"updated_at": {
"$ref": "#/definitions/updated_at"
},
"config": {
"$ref": "#/definitions/config"
}
},
"required": [
"id",
"created_at",
"updated_at",
"config"
]
}
|
o89016
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The value returned by GET /_active_tasks",
"items": {
"properties": {
"changes_done": {
"type": "number"
},
"database": {
"type": "string"
},
"pid": {
"type": "string"
},
"progress": {
"type": "number"
},
"started_on": {
"type": "number"
},
"status": {
"type": "string"
},
"task": {
"type": "string"
},
"total_changes": {
"type": "number"
},
"type": {
"type": "string"
},
"updated_on": {
"type": "number"
}
},
"required": [
"changes_done",
"database",
"pid",
"progress",
"started_on",
"status",
"task",
"total_changes",
"type",
"updated_on"
],
"type": "object"
},
"title": "CouchDB _active_tasks",
"type": "array"
}
|
o60108
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"testField": {
"title": "Module field name",
"description": "A single module field name",
"type": "string"
}
},
"title": "Sample schema",
"description": "Sample schema definition",
"type": "object",
"properties": {
"foo": {
"title": "Foo value",
"description": "Some value of foo",
"type": "string"
},
"bars": {
"title": "Module many-to-many relationships",
"description": "Configuration of many-to-many relationships",
"type": "array",
"items": {
"allOf": [
{
"$ref": "#/definitions/testField"
}
]
}
}
},
"additionalProperties": false,
"required": [
"foo"
]
}
|
o13140
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.5.7/traits/trait_source.json",
"title": "Source",
"description": "Information about the original source and/or owner of this content",
"type": "object",
"additionalProperties": {},
"properties": {
"source_id": {
"description": "Original source CMS id",
"type": "string"
}
}
}
|
o86524
|
{
"id": "http://schemas.gdbots.io/json-schema/gdbots/enrichments/mixin/time-sampling/1-0-0.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"ts_ymdh": {
"type": "integer",
"default": 0,
"minimum": 0,
"maximum": 4294967295
},
"ts_ymd": {
"type": "integer",
"default": 0,
"minimum": 0,
"maximum": 4294967295
},
"ts_ym": {
"type": "integer",
"default": 0,
"minimum": 0,
"maximum": 16777215
}
},
"additionalProperties": true
}
|
o42536
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "The JSON schema that matches a tag result.",
"id": "https://mastert.github.io/bandcamp-scraper/schemas/tag-result.json",
"properties": {
"artist": {
"type": "string"
},
"name": {
"type": "string"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"required": [
"name",
"artist",
"url"
],
"title": "tag-result",
"type": "object"
}
|
o58930
|
{
"$id": "https://example.com/restapi/HasNestedDefinitions.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "HasNestedDefinitions",
"type": "object",
"definitions": {
"MyObject": {
"type": "object",
"definitions": {
"MyNestedString": {
"type": "string"
},
"MyNestedObject": {
"type": "object",
"properties": {
"nestedThing": {
"type": "string"
}
}
}
},
"properties": {
"thing": {
"type": "string"
}
}
}
},
"properties": {
"TheObject": {
"$ref": "#/definitions/MyObject"
},
"TheNestedString": {
"$ref": "#/definitions/MyObject/definitions/MyNestedString"
},
"TheNestedObject": {
"$ref": "#/definitions/MyObject/definitions/MyNestedObject"
}
}
}
|
o58621
|
{
"properties": {
"activepolicy": {
"readonly": true,
"type": "integer"
},
"boundto": {
"type": "string"
},
"gotopriorityexpression": {
"readonly": true,
"type": "string"
},
"labelname": {
"readonly": true,
"type": "string"
},
"labeltype": {
"enum": [
"vserver",
"policylabel"
],
"readonly": true,
"type": "string"
},
"name": {
"type": "string"
},
"priority": {
"readonly": true,
"type": "integer"
}
},
"title": "videooptimizationdetectionpolicy_videooptimizationglobaldetection_binding",
"type": "object"
}
|
o31112
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"version": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"description": {
"type": "string",
"maxLength": 32767
},
"domainIds": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"maxItems": 1000
},
"slugIds": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"maxItems": 1000
}
},
"additionalProperties": false,
"required": [
"version"
]
}
|
o9893
|
{
"additionalProperties": false,
"properties": {
"dateAdapter": {
"default": "date-fns",
"description": "Which date adapter to use",
"enum": [
"moment",
"date-fns"
],
"type": "string",
"x-prompt": {
"items": [
{
"label": "date-fns [ https://date-fns.org/ ]",
"value": "date-fns"
},
{
"label": "moment [ https://momentjs.com/ ]",
"value": "moment"
}
],
"message": "What date adapter would you like to use?",
"type": "list"
}
},
"module": {
"description": "Where to add the module import",
"type": "string",
"x-prompt": "Please enter a path to the NgModule that will use the calendar. It should be relative to the root project directory, for example src/app/app.module.ts (optional, will use the root app module if not specified)"
},
"projectName": {
"description": "Which project should the styles be added to",
"type": "string",
"x-prompt": "Please enter the name of the project that will use the calendar (optional, will use the default project if not specified)"
}
},
"required": [],
"title": "angular-calendar ng-add schematic",
"type": "object"
}
|
o59284
|
{
"definitions": {},
"properties": {
"created": {
"_id": "/properties/created",
"type": "string"
},
"entries": {
"_id": "/properties/entries",
"items": {
"_id": "/properties/entries/items",
"properties": {
"permanent": {
"_id": "/properties/entries/items/properties/permanent",
"type": "boolean"
},
"rule": {
"_id": "/properties/entries/items/properties/rule",
"type": "string"
},
"source": {
"_id": "/properties/entries/items/properties/source",
"type": "string"
},
"target": {
"_id": "/properties/entries/items/properties/target",
"type": "string"
}
},
"required": [
"permanent",
"target"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"created",
"entries"
],
"type": "object"
}
|
o89487
|
{
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"dateUTCISO": {
"pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$",
"type": "string"
}
},
"description": "Track cache-wide data",
"properties": {
"lastSweep": {
"$ref": "#/definitions/dateUTCISO"
}
},
"required": [
"lastSweep"
],
"type": "object"
}
|
o20376
|
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"minProperties": 1,
"properties": {
"frameworkAgreementVersion": {
"minLength": 1,
"type": "string"
},
"signerName": {
"minLength": 1,
"type": "string"
},
"signerRole": {
"minLength": 1,
"type": "string"
},
"uploaderUserId": {
"minimum": 1,
"type": "integer"
}
},
"required": [
"frameworkAgreementVersion",
"signerName",
"signerRole",
"uploaderUserId"
],
"title": "SupplierFramework.agreement_details Schema",
"type": "object"
}
|
o21040
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"sslKey": {
"oneOf": [
{
"type": "string",
"maxLength": 32767,
"minLength": 50
},
{
"type": "null"
}
]
},
"sslCert": {
"oneOf": [
{
"type": "string",
"maxLength": 32767,
"minLength": 50
},
{
"type": "null"
}
]
},
"sslBundle": {
"oneOf": [
{
"type": "string",
"maxLength": 32767,
"minLength": 50
},
{
"type": "null"
}
]
},
"version": {
"oneOf": [
{
"type": "string",
"minLength": 1,
"maxLength": 255
},
{
"type": "null"
}
]
},
"domainName": {
"type": "string",
"maxLength": 1024,
"minLength": 3
}
},
"additionalProperties": false
}
|
o9870
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"argv": {
"type": "array"
},
"system": {
"type": "object",
"properties": {
"architecture": {
"type": "array"
},
"linux_distribution": {
"type": "array"
},
"mac_ver": {
"type": "array"
},
"machine": {
"type": "string"
},
"python_version": {
"type": "string"
},
"release": {
"type": "string"
},
"system": {
"type": "string"
},
"version": {
"type": "string"
},
"win_ver": {
"type": "array"
}
},
"required": [
"architecture",
"machine",
"python_version",
"release",
"system",
"version"
]
}
},
"required": [
"argv",
"system"
]
}
|
o33825
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"values": {
"type": "array",
"items": {
"type": "integer"
}
},
"categoryActual": {
"type": "object",
"properties": {
"category": {
"type": "integer"
},
"values": {
"$ref": "#/definitions/values"
}
},
"additionalProperties": false,
"required": [
"category",
"values"
]
}
},
"type": "array",
"items": {
"$ref": "#/definitions/categoryActual"
}
}
|
o79554
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"min_api_version": {
"description": "The minimum API version supported by this server.",
"type": "integer"
},
"max_api_version": {
"description": "The maximum API version supported by this server.",
"type": "integer"
}
},
"example": {
"min_api_version": 0,
"max_api_version": 1
}
}
|
o78134
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"title": "Device State",
"description": "Schema for a single Device state",
"type": "object",
"properties": {
"time": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "object",
"properties": {
"$date": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"$date"
]
}
]
},
"meta": {},
"data": {
"type": "object",
"patternProperties": {
"^[0-9a-zA-Z_-]{1,255}$": {
"type": [
"number",
"string",
"boolean"
]
}
},
"additionalProperties": false
},
"flowVersion": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
},
"required": [
"data"
],
"additionalProperties": false
}
}
|
o9841
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://judkins.house/apis/k2/v1/awsLoadBalancerConfig.json",
"$$target": "awsLoadBalancerConfig.json",
"title": "AWS Load balancer configuration",
"description": "AWS Load balancer configuration for Kubernetes API servers",
"properties": {
"subnet": {
"description": "List of subnets to use within a region for the cluster. ",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"subnet"
],
"additionalProperties": false,
"type": "object"
}
|
o90355
|
{
"title": "inheritedDomain",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"description": "This domain applies to domains on subtypes. It implies that the domain for a field at the subtype level is the same as the domain for the field at the layer level.",
"properties": {
"name": {
"type": "string",
"description": "The domain name."
},
"type": {
"type": "string",
"description": "String value representing the domain type.",
"enum": [
"inherited"
]
}
},
"required": [
"type"
],
"additionalProperties": false
}
|
o90219
|
{
"additionalProperties": false,
"description": "common schema for user application started and complete volumes - used for MI data based save and return completion-rate calculation",
"properties": {
"_id": {
"description": "unique url-friendly base64 encoded, utf8 endoded concatenation identifier",
"type": "string"
},
"_timestamp": {
"_format": "date-time",
"description": "ISO8601 combined date and time in UTC e.g. '2014-12-01T00:00:00+00:00'",
"type": "string"
},
"count": {
"minimum": 0,
"type": "integer"
},
"period": {
"description": "The period covered by each data point from the _timestamp",
"enum": [
"hour",
"day",
"week",
"month",
"quarter"
]
},
"state": {
"enum": [
"started",
"completed"
]
}
},
"required": [
"_id",
"_timestamp",
"period",
"state",
"count"
],
"title": "application-state-volumes",
"type": "object"
}
|
o60885
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "DailyDelivery",
"description": "A schedule of deliveries to multiple facilities",
"type": "object",
"properties": {
"doc_type": {
"type": "string",
"pattern": "^dailyDelivery$"
},
"version": {
"type": "string",
"format": "semver"
},
"deliveryRoundID": {
"type": "string",
"chance": {
"hash": {
"length": 32
}
}
},
"driverID": {
"type": "string"
},
"facilityRounds": {
"type": "array"
},
"packingLists": {
"type": "array"
}
},
"required": [
"doc_type",
"version"
]
}
|
o37718
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"h": {
"title": "Height",
"description": "Image Height",
"type": "number"
},
"w": {
"title": "Width",
"description": "Image Width",
"type": "number"
},
"id": {
"title": "ID",
"description": "Image ID",
"type": "string"
},
"p": {
"title": "Image name",
"description": "Image name",
"type": "string"
},
"u": {
"title": "Image path",
"description": "Image path",
"type": "string"
}
}
}
|
o26992
|
{
"properties": {
"loginName": {
"title": "Prihlasovacie meno",
"type": "string"
},
"passwordHash": {
"description": "",
"title": "Hash hesla",
"type": "string"
},
"salt": {
"description": "",
"title": "Salt pre hash hesla",
"type": "string"
}
},
"type": "object"
}
|
o81723
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"ImageUri": {
"anyOf": [
{
"description": "An image representative of the entity. In Blockcerts this is typically a data URI (https://en.wikipedia.org/wiki/Data_URI_scheme) embedded as a base-64 encoded PNG image, but it may also be a URI where the image may be found.",
"pattern": "data:image/png;base64,",
"type": "string"
},
{
"_format": "uri",
"description": "IRI (typically HTTP) representing this signature image.",
"type": "string"
}
]
}
},
"description": "An extension that allows issuers to add signature lines to the visual representation of the badge. This is not part of the cryptographic proof; it is for display purposes only.",
"properties": {
"image": {
"$ref": "#/definitions/ImageUri"
},
"jobTitle": {
"description": "Job title of signer, http://schema.org/jobTitle",
"type": "string"
},
"name": {
"description": "Full name of signer, http://schema.org/name",
"type": "string"
}
},
"required": [
"image"
],
"title": "SignatureLine schema",
"type": "object"
}
|
o33942
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Text",
"description": "Free-form, usually human-readable, text.",
"type": "object",
"properties": {
"format": {
"enum": [
"text",
"html",
"asciidoc"
],
"description": "Indicates how the content should be parsed."
},
"href": {
"type": "string",
"description": "References a related document containing human readable text."
},
"content": {
"type": "string",
"description": "The text contents."
}
}
}
|
o58216
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"pageInfo": {
"type": "object",
"description": "Inspect page models received through wrapper events.",
"requires": [
"resource"
],
"properties": {
"resource": {
"type": "string",
"description": "The event topic through which to monitor pages.",
"format": "topic",
"axRole": "inlet"
}
}
},
"filter": {
"type": "object",
"description": "Allows to filter by topic or widget/activity instance",
"requires": [
"resource"
],
"properties": {
"resource": {
"type": "string",
"description": "The topic through which to publish filter information",
"format": "topic",
"axRole": "outlet"
}
}
}
}
}
|
o89608
|
{
"$schema": "http://json-schema.org/draft-06/schema#",
"properties": {
"anInteger": {
"type": "integer"
},
"aNumber": {
"type": "number"
},
"aBoolean": {
"type": "boolean"
},
"anObject": {
"type": "object"
},
"aString": {
"type": "string"
},
"anArray": {
"type": "array"
}
}
}
|
o25199
|
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Whitelist",
"description": "Whitelist",
"type": "object",
"properties": {
"ignoreSevertiesAtOrBelow": {
"type": "string",
"enum": [
"negligible",
"Negligible",
"low",
"Low",
"medium",
"Medium",
"high",
"High"
]
},
"vulnerabilities": {
"type": "array",
"items": {
"type": "object",
"properties": {
"cveId": {
"type": "string",
"minLength": 1,
"maxLength": 512
},
"rationale": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"cveId",
"rationale"
],
"additionalProperties": false
},
"_uniqueItems": true
}
},
"required": [
"ignoreSevertiesAtOrBelow"
],
"additionalProperties": false
}
|
o76439
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Blockstack Token File",
"description": "A file containing Blockstack profile & key delegation JWTs",
"type": "object",
"properties": {
"version": {
"description": "The unique identifier for a product",
"type": "number",
"minimum": 0
},
"profile": {
"description": "User profile",
"type": "object",
"properties": {
"header": {},
"payload": {
"type": "object",
"properties": {}
},
"signature": {}
},
"required": [
"header",
"payload",
"signature"
]
},
"keys": {
"type": "object",
"minimum": 1
}
},
"required": [
"version",
"profile",
"keys"
]
}
|
o26646
|
{
"additionalProperties": false,
"description": "Client creation request",
"oneOf": [
{
"properties": {
"grantType": {
"enum": [
"authorization_code"
]
},
"responseType": {
"default": "code",
"enum": [
"code"
]
}
},
"required": [
"grantType"
]
},
{
"properties": {
"grantType": {
"enum": [
"client_credentials"
]
},
"responseType": {
"default": "token",
"enum": [
"token"
]
}
},
"required": [
"grantType"
]
}
],
"properties": {
"grantType": {
"type": "string"
},
"redirectUris": {
"items": {
"type": "string"
},
"type": "array"
},
"responseType": {
"type": "string"
},
"scopes": {
"items": {
"type": "string"
},
"type": "array"
}
},
"title": "OAuthClientRequest",
"type": "object"
}
|
o10011
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "HTTP Server",
"description": "HTTP server definition and URL list",
"type": "object",
"properties": {
"server": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"port": {
"type": "integer"
}
},
"additionalProperties": false,
"required": [
"address",
"port"
]
},
"pages": {
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"page": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"url",
"page"
]
}
}
}
}
|
o83711
|
{
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Server RootDiscussionForm",
"description": "Server RootDiscussionForm from Tiamat",
"type": "object",
"additionalProperties": false,
"required": [
"forumBoard",
"forumBoardGroup"
],
"properties": {
"forumBoardGroup": {
"type": "object",
"enum": [
{
"$data": "1/forumBoard/groups"
}
]
},
"forumBoard": {
"type": "object",
"required": [
"_id"
],
"properties": {
"_id": {
"type": "string",
"pattern": "^[0-9a-fA-F]{24}$"
},
"groups": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
|
o17547
|
{
"title": "Team Format",
"description": "This is a schema defining the strict format for writing a list of team members.",
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://jsonschema.net",
"type": "array",
"items": {
"type": "object",
"properties": {
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"identity": {
"type": "string"
},
"role": {
"type": "string"
}
},
"required": [
"firstName",
"lastName",
"identity",
"role"
]
},
"minItems": 1,
"additionalItems": false
}
|
o35798
|
{
"additionalProperties": false,
"description": "Get user preferences",
"examples": [
{
"email": "[email protected]",
"subscribed": true,
"user_id": 1
}
],
"properties": {
"email": {
"_format": "email",
"type": "string"
},
"subscribed": {
"type": "boolean"
},
"user_id": {
"type": "integer"
}
},
"required": [
"email",
"user_id"
],
"title": "User preferences",
"type": "object"
}
|
o69916
|
{
"additionalProperties": false,
"description": "MachineBoss named sequence schema",
"properties": {
"name": {
"type": "string"
},
"sequence": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"sequence"
],
"type": "object"
}
|
o47167
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"booking_reason": {
"type": "string"
},
"slots": {
"type": "array",
"description": "List of slots representing the start/end date of the bookings",
"additionalProperties": false,
"items": {
"type": "object",
"properties": {
"start_date": {
"description": "Unix timestamp representing the start date of the booking",
"type": "integer"
},
"end_date": {
"description": "Unix timestamp representing the end date of the booking",
"type": "integer"
},
"iana": {
"description": "IANA identifier of the booking owner",
"type": "string"
}
},
"required": [
"start_date",
"end_date",
"iana"
]
},
"maxItems": 1
}
},
"required": [
"slots"
]
}
|
o12235
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"string": {
"type": "string",
"default": ""
},
"object": {
"type": "object",
"additionalProperties": false,
"properties": {
"numA": {
"type": "number",
"default": 0
}
}
}
}
}
|
o63985
|
{
"properties": {
"data": {
"_id": "/data",
"properties": {
"_id": {
"id": "/data/id",
"type": "string"
},
"attributes": {
"_id": "/data/attributes",
"properties": {
"description": {
"_id": "/data/attributes/description",
"type": "string"
},
"name": {
"_id": "/data/attributes/name",
"type": "string"
}
},
"type": "object"
},
"type": {
"_id": "/data/type",
"type": "string"
}
},
"required": [
"id",
"type",
"attributes"
],
"type": "object"
}
},
"required": [
"data"
],
"type": "object"
}
|
o79650
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"title": "Auth",
"id": "#/definitions/auth-attribute",
"description": "Represents an attribute for any authorization method provided by Postman. For example `username` and `password` are set as auth attributes for Basic Authentication method.",
"properties": {
"key": {
"type": "string"
},
"value": {},
"type": {
"type": "string"
}
},
"required": [
"key"
]
}
|
o67594
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.10.5/traits/trait_rendering_guides.json",
"title": "Rendering Guides",
"description": "Trait that provides suggestions for the rendering system.",
"type": "object",
"properties": {
"preferred_method": {
"type": "array",
"description": "The preferred rendering method of the story. Blank means there is no preference. If the rendering application is aware of these other options, it can decide to either use one of them, render messaging to the viewer, or render the story as normal",
"items": {
"anyOf": [
{
"enum": [
"website",
"native"
],
"description": "Well-known values that describe the most common values. 'website' describes a traditional browser experience. 'native' describes a device specific application."
},
{
"type": "string",
"description": "Other than the well-known values are allowed, and can be ignored if not recognized"
}
]
}
}
}
}
|
o85947
|
{
"definitions": {
"absolute_path": {
"pattern": "^/[^\u0000]+$",
"type": "string"
}
},
"properties": {
"plugins": {
"properties": {
"minimize_size": {
"properties": {
"shrink": {
"type": "boolean"
},
"zerofree": {
"$ref": "#/definitions/absolute_path"
}
},
"type": "object"
}
},
"type": "object"
}
},
"title": "Minimize size plugin manifest",
"type": "object"
}
|
o27354
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Root password plugin manifest",
"type": "object",
"properties": {
"plugins": {
"type": "object",
"properties": {
"root_password": {
"type": "object",
"properties": {
"password": {
"type": "string"
}
},
"required": [
"password"
]
}
}
}
}
}
|
o27357
|
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/Enfernuz/quik-lua-rpc/json/schema/SearchItems.result.scheme.json",
"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b SearchItems",
"description": "\u0421\u0445\u0435\u043c\u0430 \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0433\u043e \u0432\u044b\u0437\u043e\u0432\u0430 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b SearchItems",
"type": "object",
"properties": {
"items_indices": {
"description": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442",
"type": "array",
"items": {
"type": "integer"
}
}
},
"additionalProperties": false
}
|
o5162
|
{
"title": "colorModulationInfo",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"description": "Indicates whether modulation should be used to render the point.",
"properties": {
"field": {
"type": "string",
"description": "the attribute to use as a source for the modulation amplitude"
},
"maxValue": {
"type": "number",
"description": "maximum value to compute modulation linear mapping"
},
"minValue": {
"type": "number",
"description": "minimum value to compute modulation linear mapping"
}
},
"required": [
"field",
"maxValue",
"minValue"
],
"additionalProperties": false
}
|
o90179
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "ico",
"description": "An ico atom",
"type": "object",
"properties": {
"icon": {
"description": "The short name of the icon",
"enum": [
"arrow-right",
"chevron-up",
"close",
"exit-search",
"expert-tool-user",
"flag-ch",
"flag-de",
"flag-fr",
"heading",
"icon-info",
"icon-info-circle",
"icon-remove-tag",
"lightbox-close",
"lightbox-open",
"nitro",
"nitro-full"
]
}
},
"required": [
"icon"
],
"dependencies": {}
}
|
o62759
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"regex": {
"type": "boolean",
"default": "false"
},
"code": {
"type": "string"
},
"old": {
"type": "string"
},
"new": {
"type": "string"
},
"justification": {
"type": "string"
}
},
"additionalProperties": {
"type": "string"
},
"required": [
"code",
"justification"
]
}
}
|
o70013
|
{
"$async": true,
"$schema": "http://json-schema.org/draft-06/schema#",
"description": "SignUpForm from Tiamat",
"properties": {
"confirmPassword": {
"const": {
"$data": "1/password"
}
},
"email": {
"_format": "email",
"emailExists": false,
"maxLength": 30,
"minLength": 4,
"type": "string"
},
"password": {
"maxLength": 50,
"minLegth": 4,
"type": "string"
}
},
"required": [
"email",
"password",
"confirmPassword"
],
"title": "SignUpForm",
"type": "object"
}
|
o17545
|
{
"additionalProperties": true,
"properties": {
"httpMethod": {
"pattern": "^GET$",
"type": "string"
},
"path": {
"pattern": "^/products$",
"type": "string"
},
"queryStringParameters": {
"additionalProperties": false,
"properties": {
"category": {
"type": "string"
}
},
"required": [
"category"
],
"type": "object"
}
},
"required": [
"path",
"httpMethod",
"queryStringParameters"
],
"self": {
"format": "jsonschema",
"name": "products/request",
"vendor": "com.nordstrom",
"version": "1-0-0"
},
"type": "object"
}
|
o12070
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Okapi Permission Object",
"type": "object",
"properties": {
"permissionName": {
"type": "string"
},
"displayName": {
"type": "string"
},
"description": {
"type": "string"
},
"subPermissions": {
"type": "array",
"items": {
"type": "string"
}
},
"visible": {
"type": "boolean"
}
},
"additionalProperties": false
}
|
o24182
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"city": {
"type": "string"
},
"state": {
"type": "string"
},
"zip": {
"type": "string"
},
"country": {
"type": "string"
}
},
"patternProperties": {
"^line[1-3]$": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"city",
"state",
"zip",
"country",
"line1"
]
}
|
o81581
|
{
"id": "http://schemas.triniti.io/json-schema/triniti/common/mixin/custom-code/1-0-0.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"custom_code": {
"type": "object",
"patternProperties": {
"^[a-zA-Z_]{1}[\\w\\.:-]+$": {
"type": "string",
"minLength": 0,
"maxLength": 65535
}
},
"additionalProperties": false,
"description": "A map containing (HTML, JavaScript, CSS, etc.) that is injected into an application at a named insertion point, e.g. \"html_head\" or \"footer\".",
"pbj": {
"type": "text",
"rule": "map"
}
}
},
"additionalProperties": true
}
|
o82718
|
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"id": "http://docs.openstack.org/api/openstack-block-storage/v2/types#post",
"type": "object",
"properties": {
"volume_type": {
"id": "http://docs.openstack.org/api/openstack-block-storage/v2/types#post/volume_type",
"type": "object",
"documentation": "A partial representation of a volume type used in the creation process.",
"properties": {
"name": {
"id": "http://docs.openstack.org/api/openstack-block-storage/v2/types#post/volume_type/name",
"type": "string",
"documentation": "The name of the volume type."
},
"extra_specs": {
"id": "http://docs.openstack.org/api/openstack-block-storage/v2/types#post/volume_type/extra_specs",
"type": "object",
"properties": {
"capabilities": {
"id": "http://docs.openstack.org/api/openstack-block-storage/v2/types#post/volume_type/extra_specs/capabilities",
"type": "string"
}
}
}
},
"required": []
}
},
"required": [
"volume_type"
]
}
|
o69219
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"type": "object",
"properties": {
"timeSincePath": {
"title": "Time Since Path",
"description": "JSON path to store the time since last not throttled payload",
"type": "string",
"minLength": 1
},
"ratePerMinute": {
"title": "Rate (per minute)",
"description": "Number of payloads to allow per minute",
"type": "integer",
"minimum": 1
}
},
"required": [
"ratePerMinute"
]
}
|
o6228
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"web-dir"
],
"properties": {
"scripts": {
"type": "object",
"description": "This is a hash of script names (keys) and shell commands (values) to execute.",
"additionalProperties": false,
"patternProperties": {
"^([a-z0-9-])+$": {
"type": "string"
}
}
},
"vars": {
"type": "object",
"description": "This is a hash of variable names (keys) and values (values).",
"additionalProperties": false,
"patternProperties": {
"^[a-zA-Z_][a-zA-Z_0-9]*$": {
"type": "string"
}
}
},
"web-dir": {
"type": "string",
"description": "Relative directory that contains files to be published as website"
}
}
}
|
o84043
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Adhese Adapter Parameters",
"description": "Validation for parameters handled by the Adhese adapter",
"type": "object",
"properties": {
"account": {
"type": "string",
"description": "Your Adhese account name. If unknown, please contact your sales rep"
},
"location": {
"type": "string",
"description": "The location you want to refer to for a specific section or page, as defined in your Adhese inventory"
},
"format": {
"type": "string",
"description": "The format you accept for this unit, as defined in your Adhese inventory"
},
"targets": {
"type": "object",
"description": "Target params, as defined in your Adhese setup."
}
},
"required": [
"account",
"location",
"format"
]
}
|
o68282
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"wells": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"index": {
"type": "string"
},
"size": {
"type": "integer"
},
"values": {
"type": "array",
"items": {
"type": "number"
}
}
},
"required": [
"type",
"index",
"size",
"values"
]
}
}
},
"required": [
"wells"
]
}
|
o49235
|
{
"properties": {
"author": {
"anyOf": [
{
"properties": {
"email": {
"format": "email",
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
{
"type": "string"
}
]
},
"description": {
"type": "string"
},
"homepage": {
"type": "string"
},
"icon": {
"format": "uri",
"type": "string"
},
"name": {
"type": "string"
},
"version": {
"type": "string"
}
},
"type": "object"
}
|
o36641
|
{
"title": "Additional options for templates",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"definitions": {},
"additionalProperties": false,
"properties": {
"$schema": {
"type": "string"
},
"id": {
"type": "string"
},
"addname": {
"type": "string"
},
"creatematch": {
"description": "If the result of the file appears mcgen line with a predetermined pattern that are created with the file. Otherwise, no.",
"type": "string"
},
"ext": {
"type": "string"
},
"description": {
"type": "string"
},
"vars": {
"type": "array",
"items": {
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"value": {}
}
}
}
},
"required": [
"id",
"ext"
]
}
|
o36571
|
{
"name": "Product",
"properties": {
"id": {
"description": "Product identifier",
"type": "number"
},
"name": {
"description": "Name of the product",
"type": "string"
},
"price": {
"minimum": 0,
"type": "number"
},
"stock": {
"properties": {
"retail": {
"type": "number"
},
"warehouse": {
"type": "number"
}
},
"type": "object"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"id",
"name",
"price"
],
"type": "object"
}
|
o71556
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"name": "user",
"type": "object",
"properties": {
"name": {
"type": "object",
"properties": {
"first": {
"type": "string"
},
"middle": {
"type": "string"
},
"last": {
"type": "string"
}
},
"required": [
"first",
"last"
]
},
"bday": {
"type": "string",
"format": "date-time"
}
},
"required": [
"name"
]
}
|
o78783
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"Password": {
"type": "object",
"properties": {
"password": {
"type": "string"
}
},
"required": [
"password"
]
},
"Login": {
"type": "object",
"properties": {
"login": {
"type": "string"
}
},
"required": [
"login"
]
}
},
"type": "object",
"properties": {
"result": {
"type": "object",
"properties": {
"passwords": {
"type": "array",
"items": {
"$ref": "#/definitions/Password"
}
},
"logins": {
"type": "array",
"items": {
"$ref": "#/definitions/Login"
}
}
}
}
}
}
|
o42169
|
{
"$schema": "http://json-schema.org/draft-04/schema",
"title": "Git LFS HTTPS Lock Deletion API Request",
"type": "object",
"properties": {
"force": {
"type": "boolean"
},
"ref": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"required": [
"name"
]
}
}
}
|
o43294
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "TenantList",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
}
|
o42212
|
{
"description": "Generates a new, generic enum definition for the given or default project.",
"properties": {
"lintFix": {
"default": false,
"description": "When true, applies lint fixes after generating the enum.",
"type": "boolean",
"x-user-analytics": 15
},
"name": {
"$default": {
"$source": "argv",
"index": 0
},
"description": "The name of the enum.",
"type": "string",
"x-prompt": "What name would you like to use for the enum?"
},
"path": {
"description": "The path at which to create the enum definition, relative to the current workspace.",
"format": "path",
"type": "string",
"visible": false
},
"project": {
"$default": {
"$source": "projectName"
},
"description": "The name of the project in which to create the enum. Default is the configured default project for the workspace.",
"type": "string"
}
},
"required": [
"name"
],
"title": "Angular Enum Options Schema",
"type": "object"
}
|
o64880
|
{
"additionalProperties": false,
"definitions": {
"Change": {
"additionalProperties": false,
"properties": {
"new": {
"description": "New value"
},
"old": {
"description": "Old value"
}
},
"required": [
"new",
"old"
],
"type": "object"
},
"Item": {
"additionalProperties": {
"$ref": "#/definitions/Change"
},
"type": "object"
}
},
"description": "Changes to state made by client",
"properties": {
"context": {
"additionalProperties": {
"$ref": "#/definitions/Item"
},
"type": "object"
},
"plugins": {
"additionalProperties": {
"$ref": "#/definitions/Item"
},
"type": "object"
}
},
"title": "Changes",
"type": "object"
}
|
o68821
|
{
"definitions": {
"line_1": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "address line 1",
"x-example": "11 test Street"
}
},
"properties": {
"line_1": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "address line 1",
"x-example": "11 test Street"
}
},
"type": "object"
}
|
o27034
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"connected": {
"enum": [
1,
0
]
},
"time": {
"type": "string",
"format": "date-time"
},
"disconnectReason": {
"type": "string"
},
"messagesFromClient": {
"type": "number"
},
"messagesToClient": {
"type": "number"
}
}
}
}
|
o9829
|
{
"additionalProperties": false,
"properties": {
"ids": {
"additionalItems": false,
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"ids"
],
"title": "InsertManyResponse",
"type": "object"
}
|
o10059
|
{
"description": "lax ingest+publish request schema",
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://lax.elifesciences.org/ingest-publish-request-schema.json",
"type": "object",
"additionalProperties": false,
"properties": {
"action": {
"enum": [
"ingest",
"publish",
"ingest+publish"
]
},
"location": {
"description": "the location of the article to ingest/publish",
"type": "string",
"format": "uri",
"pattern": "^(https|file)://"
},
"id": {
"description": "article identifier",
"type": "string"
},
"version": {
"type": "integer",
"minimum": 1,
"maximum": 9
},
"force": {
"description": "force ingest/publish action. intended for silent corrections. use with caution.",
"type": "boolean"
},
"token": {
"description": "data to be returned to the sender once action complete",
"type": "string"
}
},
"required": [
"action",
"location",
"id",
"version",
"token"
]
}
|
o44051
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"subA": {
"$ref": "#/definitions/MySubObject"
},
"subB": {
"$ref": "#/definitions/MySubObject"
}
},
"required": [
"subA",
"subB"
],
"definitions": {
"MySubObject": {
"type": "object",
"properties": {
"propA": {
"type": "number"
},
"propB": {
"type": "number"
}
},
"required": [
"propA",
"propB"
]
}
}
}
|
o25953
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://localhost:4000/json-schema/producerShare.json#",
"title": "ACRSI Data Submission",
"description": "",
"type": "object",
"required": [
"producerSharePercent"
],
"properties": {
"@type": {
"title": "Metadata Context",
"description": "IRI for the JSON-LD data type.",
"enum": [
"ag:ProducerShare"
]
},
"producerSharePercent": {
"title": "Producer Share Percent",
"description": "Producer's share of a crop and the benefits coming from that crop, expressed as a percentage.",
"type": "string",
"minLength": 0,
"maxLength": 8
}
}
}
|
o25406
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"uuid": {
"pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}",
"type": "string"
}
},
"properties": {
"description": {
"description": "ermmm, the description of this thing",
"maxlength": 255,
"type": "string"
},
"name": {
"description": "what is the name of this thing",
"type": "string"
},
"updated": {
"_format": "date-time",
"description": "date and time the record was last updated",
"type": "string"
},
"url": {
"_format": "uri",
"description": "url of this thing",
"type": "string"
},
"uuid": {
"$ref": "#/definitions/uuid",
"description": "the unitque identifier for this thing"
}
},
"required": [
"uuid",
"name",
"updated"
],
"type": "object"
}
|
o36222
|
{
"id": "http://www.gandhi.io/schema/user",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"required": [
"id",
"email"
],
"additionalProperties": false,
"properties": {
"admin": {
"type": "boolean",
"default": false
},
"email": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string",
"default": ""
},
"password": {
"type": "string",
"minLength": 4
},
"recovery_token": {
"type": [
"null",
"string"
],
"default": null
},
"created": {
"type": "number"
},
"updated": {
"type": "number"
},
"preferences": {
"type": "object",
"default": {}
}
}
}
|
o60760
|
{
"description": "A party is a person, project or organization related to a package.",
"properties": {
"email": {
"oneOf": [
{
"description": "Email for this party.",
"title": "email",
"type": "string"
},
{
"type": "null"
}
]
},
"name": {
"oneOf": [
{
"description": "URL to a primary web page for this party.",
"title": "url",
"type": "string"
},
{
"type": "null"
}
]
},
"type": {
"oneOf": [
{
"description": "the type of this party: One of: person, project, organization",
"enum": [
"person",
"project",
"organization"
],
"title": "party type",
"type": "string"
},
{
"type": "null"
}
]
},
"url": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"title": "party",
"type": "object"
}
|
o89987
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"auth": {
"type": "null"
},
"data": {
"type": "object",
"properties": {}
},
"lease_duration": {
"type": "integer"
},
"lease_id": {
"type": "string"
},
"renewable": {
"type": "boolean"
},
"metadata": {
"type": "object",
"required": [
"action_principal",
"version_created_by",
"action",
"action_ts",
"version_id",
"version_created_ts"
]
}
},
"required": [
"auth",
"data",
"lease_duration",
"lease_id",
"renewable",
"metadata"
]
}
|
o11794
|
{
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Metadata Map Product",
"description": "This is a schema for validating map products (schema only).",
"type": "object",
"properties": {
"metadata_type": {
"type": "string",
"default": "n/a"
},
"name": {
"type": "string",
"default": "n/a"
},
"map_type": {
"type": "string",
"default": "n/a"
},
"production_site": {
"type": "string",
"default": "n/a"
},
"status": {
"type": "string",
"default": "n/a"
},
"availability": {
"type": "string",
"default": "n/a"
},
"product_link": {
"type": "string",
"default": "n/a"
}
},
"required": [
"metadata_type",
"name",
"map_type",
"production_site",
"status",
"availability",
"product_link"
],
"additionalProperties": true
}
|
o39767
|
{
"properties": {
"attributes": {
"properties": {
"option1": {
"enum": [
"val1",
"val2"
],
"title": "option1",
"type": "string"
},
"option2": {
"title": "option2",
"type": "integer"
},
"option3": {
"items": {
"type": "string"
},
"title": "option3",
"type": "array"
}
},
"title": "feature attributes",
"type": "object"
}
},
"title": "Union",
"type": "object"
}
|
o13981
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"app": {
"type": "string",
"description": "the shortCode of an app"
},
"appList": {
"type": "array",
"items": {
"$ref": "#/definitions/app"
}
}
},
"type": "object",
"additionalProperties": false,
"properties": {
"installs": {
"description": "apps to be installed",
"$ref": "#/definitions/appList"
},
"unInstalls": {
"description": "apps to be uninstalled",
"$ref": "#/definitions/appList"
}
}
}
|
o79490
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "cta",
"description": "A cta atom",
"type": "object",
"properties": {
"text": {
"description": "Button text",
"type": "string"
},
"href": {
"description": "URL",
"type": "string"
},
"icon": {
"description": "An icon atom",
"enum": [
"nitro"
]
}
},
"required": [
"text",
"href",
"icon"
]
}
|
o62768
|
{
"properties": {
"name": {
"type": "string"
},
"payload": {
"type": [
"null",
"string",
"number",
"object",
"array"
]
},
"schema": {
"enum": [
"http://comrade.forma-pro.com/schemas/message/part/SubJob.json"
],
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
|
o67195
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"content-type": "application/x-www-form-urlencoded",
"id": "http://localhost:3000/schemas/token-introspect-request.json#",
"properties": {
"token": {
"description": "The token to inspect.",
"minLength": 1,
"type": "string"
},
"token_type_hint": {
"description": "Optional hint about the type of the submitted token; if omitted the server will use heuristics to determine the token type.",
"enum": [
"refresh_token",
"access_token"
],
"type": "string"
}
},
"required": [
"token",
"token_type_hint"
],
"resources": "POST /introspect/token",
"title": "introspect",
"type": "object"
}
|
o20483
|
{
"additionalProperties": false,
"description": "This is the format describing the command for the PlanetWars game, used in the development off MOZAIC",
"properties": {
"moves": {
"description": "Describes what you want to do in the current turn",
"items": {
"additionalProperties": false,
"description": "a command",
"properties": {
"destination": {
"type": "string"
},
"origin": {
"type": "string"
},
"ship_count": {
"minimum": 0,
"type": "integer"
}
},
"required": [
"origin",
"destination",
"ship_count"
],
"type": "object"
},
"type": "array"
}
},
"title": "PlanetWars"
}
|
o17987
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"content-type": "application/x-www-form-urlencoded",
"endpoint": "/token",
"id": "http://localhost:3000/schemas/token-refresh-token-grant-request.json#",
"method": "POST",
"properties": {
"grant_type": {
"description": "Must be set to refresh_token.",
"enum": [
"refresh_token"
],
"type": "string"
},
"refresh_token": {
"description": "The refresh token issued to the client.",
"type": "string"
},
"scope": {
"description": "Optional requested scope values for the new access token. Must not include any scope values not originally granted by the resource owner, and if omitted is treated as equal to the originally granted scope.",
"type": "string"
}
},
"required": [
"grant_type"
],
"title": "Token refresh token grant request",
"type": "object"
}
|
o20487
|
{
"$schema": "http://json-schema.org/draft-04/schema",
"title": "Revenue",
"description": "Describes information about revenue",
"type": "object",
"properties": {
"scope": {
"description": "scope of the revenue result",
"enum": [
"company",
"city",
"station",
"pump"
]
},
"id": {
"description": "unique identifier for the scope of the revenue result",
"type": "string"
},
"fuel": {
"description": "fuel type for the revenue result",
"type": "array",
"items": {
"description": "fuel type included in the revenue result",
"enum": [
"any",
"regular",
"premium",
"diesel"
]
}
},
"from": {
"description": "timestamp at beginning of interval for which revenue was collected",
"type": "string"
},
"to": {
"description": "timestamp at end of interval for which revenue was collected",
"type": "string"
},
"amount": {
"description": "revenue amount being reported",
"type": "number"
}
},
"required": [
"scope",
"id",
"fuel",
"amount"
]
}
|
o64823
|
{
"items": {
"properties": {
"alias": {
"type": "string"
},
"comment": {
"type": "string"
},
"cpha": {
"enum": [
"high",
"low"
]
},
"cpol": {
"enum": [
"high",
"low"
]
},
"id": {
"pattern": "^SPI\\d$",
"type": "string"
},
"type": {
"enum": [
"master"
]
}
},
"required": [
"id",
"type",
"cpol",
"cpha"
],
"type": "object"
},
"type": "array"
}
|
o41764
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"$schema-location": "Entity-Schema.json",
"name": "Service-Schema",
"version": "1",
"author": "denis",
"description": "Represent the deployed service from a Charm",
"associated-tool": "Juju-CLI",
"type": "object",
"properties": {
"$schema-location": {
"enum": [
"Service-Schema.json"
]
},
"id": {
"type": "string"
},
"exposed": {
"type": "boolean",
"default-value": "false",
"description": "whether the service is exposed to outside world or not"
}
},
"required": ["id","exposed"]
}
|
o35778
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.