Dataset Viewer
json_schema
stringlengths 324
2.16k
| unique_id
stringlengths 4
6
|
---|---|
{
"description": "An association has a set of valid **decisions** for an applicant.",
"links": [
{
"description": "List valid decisions for the association that this user identity belongs to.",
"href": "/api/v1/user_identities/:user_identity_id/decisions",
"http_header": {
"x-api-key": "0123456789abcdef0123456789abcdef"
},
"method": "GET",
"rel": "self",
"title": "List"
}
],
"properties": {
"decisions": {
"items": {
"properties": {
"id": {
"description": "Unique identifier of this decision. **NOTE:** This identifier changes between cycles.",
"type": "integer"
},
"name": {
"description": "Human-readable name for this decision.",
"example": "Offer Accepted",
"type": "string"
}
},
"required": [
"id",
"name"
],
"type": "object"
},
"type": "array"
},
"href": {
"description": "Hypertext reference to this resource.",
"example": "/api/v1/user_identities/1/decisions",
"pattern": "/api/v1/user_identities/\\d+/decisions",
"type": "string"
}
},
"stability": "prototype",
"strictProperties": true,
"title": "Decision",
"type": "object"
}
|
o9509
|
{
"additionalProperties": false,
"properties": {
"configId": {
"description": "Identifier of the applied configuration",
"type": "string"
},
"reasonPhrase": {
"description": "Human-readable string explaining the cause of an error (if any)",
"type": "string"
},
"statusCode": {
"default": 200,
"description": "Status code based on HTTP status codes",
"type": "number"
}
},
"required": [
"configId"
],
"title": "7/CMX applied configuration request schema",
"type": "object"
}
|
o53902
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/v0_4/trait-version.json",
"title": "Describes the ANS version of this object",
"description": "The version of ANS that this object was serialized as.",
"type": "object",
"properties": {
"version": {
"description": "The version string, with in major.minor.patch format",
"type": "string"
}
},
"required": [
"version"
]
}
|
o87861
|
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"sub": {
"$ref": "#/definitions/SubObject.0eb4e9af"
}
},
"type": "object",
"required": [
"sub"
],
"definitions": {
"SubObject.0eb4e9af": {
"properties": {
"is": {
"enum": [
"SubObject_1"
],
"type": "string"
}
},
"required": [
"is"
],
"type": "object"
}
}
}
|
o17692
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The organization id"
},
"name": {
"type": [
"null",
"string"
],
"description": "The organization name",
"minLength": 1
},
"code": {
"type": "string",
"description": "The organization code",
"minLength": 1
},
"email": {
"type": [
"null",
"string"
],
"description": "The organization email"
}
},
"claroline": {
"ids": [
"id",
"code",
"email"
]
}
}
|
o32481
|
{
"additionalProperties": false,
"properties": {
"credits": {
"description": "Course credit hours",
"type": "number"
},
"department": {
"description": "Department that offers this course",
"maxLength": 25,
"type": "string"
},
"prerequisites": {
"description": "Courses that must have been completed before this course",
"type": "string"
},
"schedule": {
"description": "Days of the week and hours that this course will be offered",
"type": "string"
},
"startDate": {
"_format": "date",
"description": "Date this course commences",
"type": "string"
},
"syllabus": {
"description": "Summary of topics to be covered in this course",
"type": "string"
},
"title": {
"description": "Title of this course",
"type": "string"
}
},
"required": [
"title",
"startDate",
"syllabus"
],
"title": "Course Schema",
"type": "object"
}
|
o40180
|
{
"id": "http://schemas.triniti.io/json-schema/triniti/common/mixin/swipeable/1-0-0.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"swipe": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"description": "A swipe (aka banner/label/overlay) is a short string used in a visual treatment on the node. e.g. \"Exclusive\", \"NSFW\", \"Breaking Bad Mojo\".",
"pbj": {
"type": "string",
"rule": "single"
}
}
},
"additionalProperties": true
}
|
o82723
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"year": {
"type": "integer"
},
"name": {
"type": "string"
},
"current": {
"type": "boolean"
}
},
"required": [
"id",
"year",
"name",
"current"
]
}
}
|
o13683
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"avatars": {
"title": "Avatar",
"type": "object",
"properties": {
"gravatar": {
"type": [
"string",
"null"
],
"format": "uri"
},
"provider": {
"type": [
"string",
"null"
],
"format": "uri"
},
"custom": {
"type": [
"string",
"null"
],
"pattern": "^https:",
"format": "uri"
}
},
"additionalProperties": false
}
},
"properties": {
"avatars": {
"$ref": "#/definitions/avatars"
}
},
"required": [
"avatars"
]
}
|
o74172
|
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"completed": {
"type": "boolean"
},
"award": {
"type": "object",
"additionalProperties": false,
"properties": {
"startDate": {
"OneOf": [
{
"type": "string",
"pattern": "\\d{4}-\\d{2}-\\d{2}"
},
{
"type": "null"
}
]
},
"endDate": {
"OneOf": [
{
"type": "string",
"pattern": "\\d{4}-\\d{2}-\\d{2}"
},
{
"type": "null"
}
]
},
"awardingOrganisationName": {
"OneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"awardValue": {
"OneOf": [
{
"type": "string",
"pattern": "[\\d.]+"
},
{
"type": "null"
}
]
}
}
}
},
"title": "Schema to validate outcome updates",
"type": "object"
}
|
o21103
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"self": {
"type": "boolean"
},
"graduation_year": {
"type": [
"integer",
"null"
]
},
"majors": {
"oneOf": [
{
"type": "array",
"items": {
"type": "integer"
}
},
{
"type": "null"
}
]
}
},
"required": [
"self",
"graduation_year",
"majors"
]
}
|
o13671
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://judkins.house/apis/k2/v1/gkeKeyPairConfig.json",
"$$target": "gkeKeyPairConfig.json",
"title": "GKE Service Account Configuration",
"description": "Describes a GKE service account used to authenticate management of GKE resources. See the [documentation](https://cloud.google.com/compute/docs/access/create-enable-service-accounts-for-instances) for more information.",
"properties": {
"serviceAccount": {
"description": "The service account id.",
"type": "string"
},
"serviceAccountKeyFile": {
"description": "The service account key file.",
"type": "string"
}
},
"required": [
"serviceAccount",
"serviceAccountKeyFile"
],
"additionalProperties": false,
"type": "object"
}
|
o90386
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"properties": {
"email": {
"pattern": "^[\\w|-|.]+@[\\w]+\\.[A-Za-z]{2,4}$",
"type": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"postedSlides": {
"anyOf": [
{
"type": "boolean"
},
{
"enum": [
"yes",
"Yes",
"no",
"No"
],
"type": "string"
}
]
},
"rating": {
"type": "number"
}
},
"required": [
"email",
"firstName",
"lastName",
"postedSlides",
"rating"
],
"type": "object"
}
|
o81531
|
{
"description": "A generic related package.",
"properties": {
"name": {
"description": "Name of the package.",
"title": "name",
"type": "string"
},
"payload_type": {
"oneOf": [
{
"description": "The type of payload for this package. One of: source, binary, doc",
"enum": [
"source",
"binary",
"doc"
],
"title": "Payload type",
"type": "string"
},
{
"type": "null"
}
]
},
"type": {
"description": "Descriptive name of the type of package: RubyGem, Python Wheel, Java Jar, Debian package, etc.",
"title": "type",
"type": "string"
},
"version": {
"oneOf": [
{
"description": "Version of the package",
"title": "version",
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"type",
"name"
],
"title": "related package",
"type": "object"
}
|
o89988
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"display": {
"type": "object",
"properties": {
"resource": {
"type": "string",
"format": "topic",
"axRole": "inlet",
"description": "The topic of the resource with content of a bower.json."
},
"i18nHtmlText": {
"type": [
"string",
"object"
],
"description": "The (internationalized) HTML link text.",
"default": "Browse artifact repository"
}
}
}
}
}
|
o9406
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The uuid of the lti app"
},
"title": {
"type": "string",
"description": "The title of the lti app",
"minLength": 1
},
"url": {
"type": "string",
"description": "The url of the lti app",
"minLength": 1
},
"appKey": {
"type": [
"string",
"null"
],
"description": "The key of the lti app"
},
"secret": {
"type": [
"string",
"null"
],
"description": "The secret of the lti app"
},
"description": {
"type": [
"string",
"null"
],
"description": "The description of the lti app"
}
},
"required": [
"title",
"url"
],
"claroline": {
"ids": [
"id"
]
}
}
|
o32504
|
{
"$schema": "http://json-schema.org/draft-06/schema",
"additionalProperties": false,
"properties": {
"domain": {
"pattern": "^([a-z0-9]+(-[a-z0-9]+)*\\.)+[a-z]{2,}$",
"type": "string"
},
"selector": {
"type": "string"
},
"url": {
"_format": "url",
"type": "string"
}
},
"required": [
"domain",
"url",
"selector"
],
"type": "object"
}
|
o41049
|
{
"additionalProperties": true,
"properties": {
"body": {
"type": "string"
},
"headers": {
"additionalProperties": true,
"properties": {
"X-Twilio-Signature": {
"pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)$",
"type": "string"
}
},
"type": "object"
},
"httpMethod": {
"pattern": "^POST$",
"type": "string"
},
"path": {
"pattern": "^/sms$",
"type": "string"
}
},
"required": [
"path",
"httpMethod",
"headers"
],
"self": {
"format": "jsonschema",
"name": "product-photos/receive",
"vendor": "com.nordstrom",
"version": "1-0-0"
},
"type": "object"
}
|
o12078
|
{
"type": "array",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "",
"minItems": 1,
"_uniqueItems": true,
"items": {
"type": "object",
"required": [
"name",
"internalName",
"iconUrl",
"supportedGameModes",
"id",
"contentId"
],
"properties": {
"name": {
"type": [
"string",
"null"
],
"minLength": 1
},
"internalName": {
"type": "string",
"minLength": 1
},
"iconUrl": {
"type": [
"string",
"null"
],
"minLength": 1
},
"supportedGameModes": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
}
},
"id": {
"type": "string",
"minLength": 1
},
"contentId": {
"type": "string",
"minLength": 1
}
}
}
}
|
o4257
|
{
"description": "A MWF flipper component's schema definition.",
"properties": {
"config": {
"properties": {
"direction": {
"enum": [
"left",
"right"
],
"type": "string"
},
"hide-from-screen-readers": {
"type": "boolean"
}
},
"required": [
"direction",
"hide-from-screen-readers"
],
"type": "object"
},
"content": {
"properties": {
"label": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"label",
"title"
],
"type": "object"
}
},
"required": [
"content",
"config"
],
"title": "Flipper",
"type": "object"
}
|
o85189
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"answers": {
"type": "array",
"items": {
"type": "string"
}
},
"order": {
"type": "number"
},
"professions": {
"type": "array",
"items": {
"type": "string"
}
},
"races": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"id",
"title",
"description",
"answers",
"order"
]
},
"properties": {},
"additionalProperties": false
}
|
o45140
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://judkins.house/apis/k2/v1/loadBalancerConfig.json",
"$$target": "loadBalancerConfig.json",
"title": "Load balancer configuration",
"description": "Load balancer configuration for Kubernetes API servers",
"properties": {
"name": {
"description": "Name of the load balancer configuration.",
"type": "string",
"maxLength": 32
},
"type": {
"description": "Type of load balancer.",
"enum": [
"cloud",
"flipbit"
],
"type": "string"
}
},
"required": [
"type"
],
"additionalProperties": false,
"type": "object"
}
|
o90407
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Provider",
"description": "Name of the provider",
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/path"
},
{
"$ref": "#/definitions/inheritance"
}
]
},
"definitions": {
"path": {
"description": "Path to the artifact",
"type": "string",
"value": "null"
},
"inheritance": {
"type": "object",
"properties": {
"inherit": {
"name": "inherit",
"description": "List of components whose artifacts will be added to the list of artifacts for the provider.",
"type": "array"
}
}
}
}
}
|
o82223
|
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "array",
"minItems": 1,
"_uniqueItems": true,
"items": {
"type": "object",
"properties": {
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"manufacturer": {
"type": "string"
},
"type": {
"type": "string"
},
"version": {
"type": "object",
"properties": {
"class": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"search": {
"anyOf": [
{
"type": "array"
},
{
"type": "null"
}
]
}
},
"required": [
"class",
"search"
]
}
},
"required": [
"name",
"manufacturer",
"type",
"version"
]
}
}
|
o60835
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"type": {
"type": "string"
},
"message": {
"type": "string"
},
"ctx": {
"type": "object",
"patternProperties": {
"^[0-9a-zA-Z_-]{1,255}$": {
"anyOf": [
{
"type": "object",
"properties": {
"a": {
"type": "string",
"maxLength": 32767
},
"b": {
"type": "number"
},
"c": {
"type": "object",
"properties": {
"key": {
"type": "string",
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
},
"value": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
},
"additionalProperties": false
}
}
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"description": {
"type": "string",
"maxLength": 32767
},
"tags": {
"type": "object",
"patternProperties": {
"^[0-9a-zA-Z_-]{1,255}$": {
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
}
}
}
}
}
]
}
},
"additionalProperties": false
}
}
}
|
o9961
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "The utility configuration for a particular project",
"properties": {
"bundle_id": {
"description": "The workflow's unique bundle ID",
"type": "string"
},
"export_file": {
"description": "The path to the exported Alfred workflow file",
"pattern": "^(.*?)\\.alfred3?workflow$",
"type": "string"
},
"readme": {
"description": "The path to the README file to include in the workflow",
"type": "string"
},
"resources": {
"description": "A list of file patterns to include in the packaged workflow",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"export_file",
"bundle_id",
"resources"
],
"type": "object"
}
|
o28226
|
{
"properties": {
"gestures": {
"default": true,
"description": "Whether gesture support should be set up.",
"type": "boolean",
"x-prompt": "Set up HammerJS for gesture recognition?"
},
"project": {
"$default": {
"$source": "projectName"
},
"description": "Name of the project.",
"type": "string"
},
"themes": {
"default": [
"minima-light"
],
"description": "Themes that will be added to project.",
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true,
"x-prompt": {
"items": [
"minima-light",
"minima-deep-dark",
"minima-dark"
],
"message": "What themes should be added?",
"multiselect": true,
"type": "list"
}
}
},
"required": [],
"title": "Alyle UI ng-add schematic",
"type": "object"
}
|
o1334
|
{
"optional": true,
"properties": {
"comment": {
"type": "string"
},
"mimeType": {
"type": "string"
},
"params": {
"properties": {
"comment": {
"type": "string"
},
"contentType": {
"type": "string"
},
"fileName": {
"type": "string"
},
"name": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"name"
],
"type": "array"
},
"text": {
"type": "string"
}
},
"required": [
"mimeType"
],
"type": "object"
}
|
o90449
|
{
"additionalProperties": false,
"properties": {
"offeringChangePolicy": {
"enum": [
"contains-all",
"exactly-match",
"no-restrictions"
],
"type": "string"
},
"offeringChangePolicyIgnoreTags": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
}
},
"type": "object"
}
|
o27837
|
{
"definitions": {
"Playlist": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"isRanked": {
"type": "boolean"
},
"imageUrl": {
"type": [
"string",
"null"
]
},
"gameMode": {
"type": "string"
},
"isActive": {
"type": "boolean"
},
"id": {
"type": "string"
},
"contentId": {
"type": "string"
}
},
"required": [
"name",
"description",
"isRanked",
"imageUrl",
"gameMode",
"isActive",
"id",
"contentId"
]
}
},
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"$ref": "#/definitions/Playlist"
}
}
|
o5474
|
{
"title": "JSONPath ready predicate",
"properties": {
"dependency_type": {
"default": "jsonpath_ready",
"enum": [
"jsonpath_ready"
],
"type": "string",
"title": "Dependency Type"
},
"expressions": {
"type": "array"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"id": "jsonpath_ready"
}
|
o66170
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "schema for a contact detail",
"id": "https://raw.githubusercontent.com/eviratec/schema/master/v1/contact/detail.json#",
"properties": {
"content": {
"type": "string"
},
"date_added": {
"_format": "date-time",
"type": "string"
},
"id": {
"_format": "uuid",
"type": "string"
},
"type": {
"enum": [
"email_address",
"phone_number",
"address"
]
}
},
"required": [
"id",
"type",
"content",
"date_added"
],
"type": "object"
}
|
o39497
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Improve Digital Adapter Params",
"description": "A schema which validates params accepted by Improve Digital adapter",
"type": "object",
"properties": {
"placementId": {
"type": "integer",
"minimum": 1,
"description": "An ID which identifies this placement of the impression"
},
"publisherId": {
"type": "integer",
"minimum": 1,
"description": "An ID which identifies publisher. Required when using a placementKey"
},
"placementKey": {
"type": "string",
"description": "An uniq name which identifies this placement of the impression. Must be used with publisherId"
},
"keyValues": {
"type": "object",
"description": "Contains one or more key-value pairings for key-value targeting"
},
"size": {
"type": "object",
"properties": {
"w": {
"type": "integer"
},
"h": {
"type": "integer"
}
},
"required": [
"w",
"h"
],
"description": "Placement size"
}
},
"oneOf": [
{
"required": [
"placementId"
]
},
{
"required": [
"publisherId",
"placementKey"
]
}
]
}
|
o68312
|
{
"additionalProperties": false,
"properties": {
"openvpn-admin": {
"properties": {
"cpus": {
"default": 0.01,
"description": "CPU shares to allocate to each openvpn instance.",
"minimum": 0.01,
"type": "number"
},
"framework-name": {
"default": "openvpn-admin",
"description": "openvpn framework name",
"type": "string"
},
"instances": {
"default": 1,
"description": "Number of openvpn instances to run.",
"minimum": 1,
"type": "integer"
},
"mem": {
"default": 128.0,
"description": "Memory (MB) to allocate to each openvpn task.",
"minimum": 64.0,
"type": "number"
}
},
"type": "object"
}
},
"type": "object"
}
|
o90809
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Other",
"description": "Other",
"type": "object",
"properties": {
"nonResidentLandlord": {
"title": "Non Resident Landlord",
"description": "An explicit declaration that the user is a Non-Resident Landlord. The default is FALSE",
"type": "boolean",
"example": "true"
},
"rarJointLet": {
"title": "Other Capital allowance",
"description": "A notification that the Rent A Room income (RAR) is shared with another individual.",
"type": "boolean",
"example": "true"
}
},
"additionalProperties": false
}
|
o46428
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"properties": {
"email": {
"_format": "email",
"type": "string"
},
"first": {
"type": "string"
},
"last": {
"type": "string"
},
"password": {
"minLength": 8,
"type": "string"
},
"roles": {
"type": "array"
},
"username": {
"minLength": 3,
"type": "string"
},
"verification": {
"type": "string"
},
"verified": {
"type": "boolean"
}
},
"required": [
"email",
"first",
"last",
"username",
"verified",
"roles"
],
"title": "user schema",
"type": "object"
}
|
o26296
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"dependencies": {
"favoriteTopic": [
"tags"
]
},
"properties": {
"email": {
"pattern": "^[\\w|-|.]+@[\\w]+\\.[A-Za-z]{2,4}$",
"type": "string"
},
"favoriteTopic": {
"type": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"email",
"firstName",
"lastName"
],
"type": "object"
}
|
o81526
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"carrier": {
"type": "string",
"enum": [
"dhl",
"ups",
"dpd",
"hermes",
"gls"
],
"description": "acronym of the carrier you want to use"
},
"pickup_date": {
"type": "string",
"pattern": "^[0-9]{4}/[0-9]{2}/[0-9]{2}$"
}
},
"required": [
"carrier",
"pickup_date"
],
"additionalProperties": false
}
|
o61080
|
{
"copyright": [
"Copyright 2013 Red Hat, Inc. and/or its affiliates.",
"This file is part of lightblue.",
"This program is free software: you can redistribute it and/or modify",
"it under the terms of the GNU General Public License as published by",
"the Free Software Foundation, either version 3 of the License, or",
"(at your option) any later version.",
"This program is distributed in the hope that it will be useful,",
"but WITHOUT ANY WARRANTY; without even the implied warranty of",
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the",
"GNU General Public License for more details.",
"You should have received a copy of the GNU General Public License",
"along with this program. If not, see <http://www.gnu.org/licenses/>."
],
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"array": {
"type": "string"
},
"contains": {
"enum": [
"$any",
"$all",
"$none"
]
},
"values": {
"type": "array",
"minItems": 1,
"items": {
"type": "string"
},
"_uniqueItems": true
}
},
"required": [
"array",
"contains",
"values"
],
"additionalProperties": false
}
|
o66302
|
{
"id": "https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/schemas/v1.2/infoObject.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "info object (section 5.1.3)",
"type": "object",
"required": [
"title",
"description"
],
"properties": {
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"termsOfServiceUrl": {
"type": "string",
"format": "uri"
},
"contact": {
"type": "string",
"format": "email"
},
"license": {
"type": "string"
},
"licenseUrl": {
"type": "string",
"format": "uri"
}
},
"additionalProperties": false
}
|
o12176
|
{
"additionalProperties": true,
"description": "Identifies the kinds and scope of items in the resource",
"example": "../examples/resourceType.json",
"properties": {
"name": {
"description": "The name of the resource component.",
"translation": {},
"type": "string"
},
"type": {
"codelist": "iso_scope",
"description": "The type of resource(or component of a resource) being described.",
"minLength": 1,
"translation": {},
"type": "string"
}
},
"required": [
"type"
],
"title": "resourceType",
"type": "object"
}
|
o19044
|
{
"title": "YAML Publisher",
"required": [
"publisher_type",
"yamlfile"
],
"properties": {
"publisher_type": {
"default": "fromyaml-pub",
"enum": [
"fromyaml-pub"
],
"type": "string"
},
"yamlfile": {
"type": "string",
"title": "YAML file"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"id": "yaml_publisher"
}
|
o66164
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"bulk_publishing": {
"type": "boolean"
},
"links": {
"type": "object",
"additionalProperties": false,
"properties": {
"facets": {
"description": "Facets belonging to this group.",
"$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
}
}
}
|
o21209
|
{
"id": "https://raw.githubusercontent.com/InfinniPlatform/InfinniUI-schema/master/DataSource/RestDataSource/UrlParams.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u043f\u0440\u043e\u0441\u0430",
"type": "object",
"properties": {
"Origin": {
"description": "\u0425\u043e\u0441\u0442 \u0438 \u043f\u043e\u0440\u0442",
"type": "string"
},
"Path": {
"description": "\u0421\u0442\u0440\u043e\u043a\u0430 \u043f\u0443\u0442\u0438 (\u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0441\u0442\u0430)",
"type": "string"
},
"Method": {
"description": "\u041c\u0435\u0442\u043e\u0434 \u0437\u0430\u043f\u0440\u043e\u0441\u0430",
"type": "string"
},
"Data": {
"description": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u0430",
"type": "object"
},
"Params": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u043f\u0440\u043e\u0441\u0430",
"type": "object"
}
},
"required": [
"Path"
]
}
|
o7462
|
{
"description": "A MWF call-to-action component's schema definition.",
"properties": {
"config": {
"properties": {
"secondary": {
"disabled": "boolean"
}
},
"type": "object"
},
"content": {
"properties": {
"href": {
"type": "string"
},
"textContent": {
"description": "This is the text content for the call to action. Place your call to action content here!",
"type": "string"
}
},
"required": [
"href",
"textContent"
],
"type": "object"
}
},
"required": [
"content"
],
"title": "Call to action",
"type": "object"
}
|
o85180
|
{
"id": "http://n7space.com/asn1-lib-general-schema.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "ASN.1 Types Library General Information schema",
"definitions": {
"nonEmptyString": {
"type": "string",
"minLength": 1
}
},
"type": "object",
"properties": {
"name": {
"$ref": "#/definitions/nonEmptyString"
},
"description": {
"type": "string"
},
"vendor": {
"type": "string"
},
"version": {
"type": "string"
},
"license": {
"type": "string"
}
},
"required": [
"name"
],
"additionalProperties": false
}
|
o62650
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"person": {
"type": "object",
"properties": {
"first_name": {
"type": "string",
"enum": [
"Andrew"
]
},
"last_name": {
"type": "string",
"enum": [
"Smith"
]
}
},
"required": [
"first_name",
"last_name"
],
"additionalProperties": false
}
},
"required": [
"person"
]
}
|
o69519
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://raw.githubusercontent.com/AlekseyBuzmakov/FCAPS/master/FCAPS/schemas/Other/ClassifierClasses.json",
"title": "Mapping between Objects and Classes",
"description": "This schema describes a file that gives a correspondance between object names and classes",
"type": "array",
"items": {
"title": "Object Name to Class Map",
"description": "Correspondance of one object name to one class",
"type": "object",
"properties": {
"N": {
"title": "Object Name",
"type": "string"
},
"Cl": {
"title": "Class Name",
"type": "string"
}
},
"required": [
"N",
"Cl"
]
},
"_uniqueItems": true
}
|
o997
|
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://example.com/schemas/Around.json",
"type": "object",
"definitions": {
"ThingOne": {
"type": "object",
"properties": {
"redFish": {
"type": "string"
}
}
},
"ThingTwo": {
"type": "object",
"properties": {
"blueFish": {
"type": "string"
}
}
}
},
"properties": {
"thing": {
"allOf": [
{
"oneOf": [
{
"$ref": "#/definitions/ThingOne"
},
{
"$ref": "#/definitions/ThingTwo"
}
]
},
{
"properties": {
"discriminator": {
"enum": [
"ThingOne",
"ThingTwo"
]
}
}
}
]
}
}
}
|
o58632
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "hybrid flow response",
"id": "http://localhost:3000/schemas/authorize-hybrid-response.json#",
"properties": {
"access_token": {
"description": "The OAuth 2.0 access token. Required for the UserInfo endpoint and other authorised protected resources.",
"type": "string"
},
"code": {
"description": "The OAuth 2.0 authorisation code. Required to obtain the ID token and token from the token endpoint.",
"type": "string"
},
"expires_in": {
"description": "Expiration time of the access token in seconds since the response was generated.",
"type": "number"
},
"id_token": {
"description": "The OpenID Connect ID token.",
"type": "string"
},
"state": {
"description": "The state value, if one was passed with the request. Clients must validate the value before proceeding.",
"type": "string"
},
"token_type": {
"description": "The OAuth 2.0 token type, set to bearer.",
"enum": [
"bearer"
],
"type": "string"
}
},
"required": [
"access_token",
"code"
],
"title": "OAuth hybrid flow",
"type": "object"
}
|
o20474
|
{
"definitions": {
"address": {
"description": "schema for a host address",
"format": "hostname",
"type": "string"
},
"port": {
"description": "schema for a port",
"maximum": 65536,
"minimum": 1024,
"type": "integer"
}
},
"description": "Test schema.",
"properties": {
"address": {
"$ref": "#/definitions/address"
},
"port": {
"$ref": "#/definitions/port"
},
"str": {
"format": "only-a",
"type": "string"
}
},
"required": [
"port"
],
"type": "object"
}
|
o55253
|
{
"id": "https://raw.githubusercontent.com/InfinniPlatform/InfinniPlatform/master/Files/Schema/mongodbDocumentStorage.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "mongodbDocumentStorage",
"description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432 MongoDB.",
"type": "object",
"properties": {
"ConnectionString": {
"description": "\u0421\u0442\u0440\u043e\u043a\u0430 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f. \u041f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435 \u0441\u043c. https://docs.mongodb.com/manual/reference/connection-string.",
"type": "string",
"default": "mongodb://localhost:27017"
}
},
"required": [
"ConnectionString"
]
}
|
o7389
|
{
"description": "A MWF logo component's schema definition.",
"properties": {
"content": {
"dependencies": {
"href": [
"label"
]
},
"properties": {
"href": {
"type": "string"
},
"image": {
"properties": {
"alt": {
"type": "string"
},
"src": {
"type": "string"
}
},
"required": [
"src",
"alt"
],
"type": "object"
},
"label": {
"type": "string"
},
"logoType": {
"type": "string"
}
},
"required": [
"logoType"
],
"type": "object"
}
},
"required": [
"content"
],
"title": "Hero",
"type": "object"
}
|
o85198
|
{
"$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"
}
},
"required": [
"start_date",
"end_date"
]
},
"minItems": 1
}
},
"required": [
"slots"
]
}
|
o36598
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"status": {
"type": "string",
"enum": [
"active",
"inactive"
]
}
},
"additionalProperties": false
}
|
o6167
|
{
"definitions": {},
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"$id": "http://www.pucomex.serpro.gov.br/lpco/detalhar_prorrogacao.schema.json",
"properties": {
"situacao": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"descricao": {
"type": "string"
}
}
},
"novaDataFimVigencia": {
"type": [
"string",
"null"
]
},
"dataInicioVigencia": {
"type": [
"string",
"null"
]
},
"dataFimVigencia": {
"type": [
"string",
"null"
]
},
"dataCadastroSolicitacao": {
"type": [
"string",
"null"
]
},
"dataUltimaAlteracao": {
"type": [
"string",
"null"
]
},
"justificativa": {
"type": "string"
}
}
}
|
o73038
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"booking_reason": {
"type": "string"
},
"slots": {
"type": "array",
"description": "List of slots representing the start/end date of the bookings",
"additionalProperties": false,
"items": {
"type": "object",
"properties": {
"start_date": {
"description": "Unix timestamp representing the start date of the booking",
"type": "integer"
},
"end_date": {
"description": "Unix timestamp representing the end date of the booking",
"type": "integer"
},
"iana": {
"description": "IANA identifier of the booking owner",
"type": "string"
}
},
"required": [
"start_date",
"end_date",
"iana"
]
},
"minItems": 1
}
},
"required": [
"slots"
]
}
|
o12229
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"id": {
"type": [
"string",
"null"
],
"description": "The role id"
},
"name": {
"type": [
"string",
"null"
],
"description": "The role name",
"minLength": 1
},
"translationKey": {
"type": [
"string",
"null"
],
"description": "The role displayed value",
"minLength": 1
}
},
"claroline": {
"requiredAtCreation": [
"translationKey"
],
"ids": [
"id",
"name"
]
}
}
|
o32487
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"filename": {
"type": "string"
},
"layout": {
"type": "string"
},
"data_bind": {
"type": "object",
"properties": {
"table_name": {
"type": "string"
},
"query": {
"type": "object",
"properties": {
"action": {
"type": "string"
},
"params": {
"type": "string"
}
},
"required": [
"action",
"params"
]
},
"required": {
"type": "boolean"
}
},
"required": [
"table_name",
"query"
]
},
"body": {
"type": "string"
}
},
"required": [
"filename",
"body"
],
"unique_attributes": [
"filename"
]
}
|
o45261
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Fibaro Home Center Login JSON Schema",
"name": "login",
"type": "object",
"properties": {
"status": {
"description": "User Authorized Flag",
"type": "boolean"
},
"userID": {
"description": "Identifier for the user",
"type": "number",
"minimum": 0
},
"username": {
"description": "Name of the user",
"type": "string",
"maxLength": 20
},
"type": {
"description": "User type",
"enum": [
"user",
"superuser"
]
}
},
"required": [
"status"
],
"additionalProperties": false
}
|
o56009
|
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "array",
"minItems": 1,
"_uniqueItems": true,
"items": {
"type": "object",
"properties": {
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"brandname": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"name",
"brandname"
]
}
}
|
o60836
|
{
"properties": {
"config": {
"type": "object"
},
"dependencies": {
"properties": {
"endpoint": {
"items": {
"description": "Endpoints the service depends on",
"examples": [
"bar"
],
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"name": {
"description": "Name of the service",
"examples": [
"example-gateway"
],
"type": "string"
},
"type": {
"description": "Type of the service, currently the only valid type is gateway",
"examples": [
"gateway"
],
"type": "string"
}
},
"required": [
"name",
"type",
"config",
"dependencies"
],
"type": "object"
}
|
o83294
|
{
"additionalProperties": false,
"description": "",
"properties": {
"day": {
"maximum": 31,
"minimum": 1,
"type": "integer"
},
"month": {
"maximum": 12,
"minimum": 1,
"type": "integer"
},
"year": {
"type": "integer"
}
},
"title": "date",
"type": "object"
}
|
o28259
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"properties": {
"created_by": {
"name": "created_by",
"type": "integer"
},
"id": {
"name": "id",
"type": "integer"
}
},
"title": "subschema1",
"type": "object"
}
|
o89702
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Activities",
"description": "A list of squash training activities.",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"description": "Unique identifier for the activity.",
"type": "string"
},
"name": {
"description": "Name of the activity.",
"type": "string"
},
"shortDescription": {
"description": "Brief description of the activity.",
"type": "string"
},
"description": {
"description": "Full description of the activity.",
"type": "string"
}
},
"required": [
"id",
"name",
"shortDescription",
"description"
]
}
}
|
o26117
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"properties": {
"email": {
"_format": "email",
"maxLength": 1024,
"type": "string"
},
"token": {
"minLength": 1,
"type": "string"
}
},
"required": [
"email",
"token"
],
"type": "object"
}
|
o9857
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Action",
"type": "object",
"properties": {
"target": {
"type": "string",
"description": "The **generatedIdentifier** given by iFLUX Server. See the API `GET actionTargets` or GET `actionTargets/:id`"
},
"type": {
"type": "string",
"description": "Valid URL defining the action type."
},
"properties": {
"type": "object",
"description": "Free object that contains the transformation done by the rule evaluation. If no transformation, the event is sent as the properties. In this case, refers to `POST /events`.",
"properties": {
"*": {
"type": "object"
}
}
}
},
"required": [
"target",
"type",
"properties"
]
}
|
o14490
|
{
"$schema": "http://json-schema.org/draft-04/schema",
"additionalProperties": false,
"properties": {
"homePage": {
"_format": "uri",
"description": "the homepage for this career site",
"type": "string"
},
"id": {
"description": "immutable id for this career site",
"type": "integer"
},
"label": {
"description": "label for this career site, e.g. Graduate recruitment site",
"type": "string"
}
},
"required": [
"id",
"label",
"homePage"
],
"type": "object"
}
|
o79550
|
{
"title": "Layer Options",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"description": "Additional options available for the popup layer.",
"properties": {
"returnTopmostRaster": {
"type": "boolean",
"description": "Indicates whether or not only the topmost raster should be displayed."
},
"showNoDataRecords": {
"type": "boolean",
"description": "Indicates whether or not the NoData records should be displayed."
}
}
}
|
o90282
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "PickedProduct",
"description": "A specific product within a packing list",
"type": "object",
"properties": {
"doc_type": {
"type": "string",
"pattern": "^pickedProduct$"
},
"version": {
"type": "string",
"format": "semver"
},
"expectedQty": {
"type": "integer"
},
"actualQty": {
"type": "integer"
},
"productType": {
"type": "string"
}
},
"required": [
"doc_type",
"version",
"expectedQty",
"actualQty",
"productType"
]
}
|
o37730
|
{
"properties": {
"_id": {
"type": "integer"
},
"answer": {
"type": "string"
},
"brief": {
"description": "Relationship link to a Brief instance",
"properties": {},
"type": "object"
},
"brief_id": {
"type": "integer"
},
"published_at": {
"format": "date-time",
"type": "string"
},
"question": {
"type": "string"
}
},
"required": [
"id",
"question",
"answer",
"brief_id"
],
"title": "BriefClarificationQuestion",
"type": "object"
}
|
o21083
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"_oai": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"sets": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"id"
]
}
}
}
|
o48007
|
{
"description": "A reference to an ordered UNI. The UNI is referenced on an Order by customer order number (PON), and order item reference.",
"properties": {
"buyerPurchaseOrderNumber": {
"description": "The purchase order number for the order that contains the referenced UNI. This is required if the ordered UNI is not on the same order as the orderedUniReference.",
"maxLength": 16,
"type": "string"
},
"objectType": {
"description": "The type of the object, orderedUniReference.",
"enum": [
"orderedUniReference"
],
"type": "string"
},
"orderId": {
"description": "An unique identifier for an order.",
"maxLength": 45,
"type": "string"
},
"orderItemReference": {
"description": "The order item reference for the UNI on the referenced order, or on the current order if a buyerPurchaseOrderNumber is not provided.",
"maxLength": 4,
"type": "string"
}
},
"required": [
"objectType",
"orderItemReference"
],
"title": "orderedUniReference",
"type": "object"
}
|
o28206
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://integracja.firefighters.ki.agh.edu.pl",
"description": "RS from notification center",
"type": "object",
"properties": {
"reportHeaders": {
"id": "http://integracja.firefighters.ki.agh.edu.pl/reportHeaders",
"type": "array",
"items": {
"id": "http://integracja.firefighters.ki.agh.edu.pl/reportHeaders/0",
"type": "object",
"properties": {
"reportId": {
"id": "http://integracja.firefighters.ki.agh.edu.pl/reportHeaders/0/reportId",
"type": "string"
},
"notificationDate": {
"id": "http://integracja.firefighters.ki.agh.edu.pl/reportHeaders/0/notificationDate",
"type": "string"
},
"actionName": {
"id": "http://integracja.firefighters.ki.agh.edu.pl/reportHeaders/0/actionName",
"type": "string"
},
"address": {
"id": "http://integracja.firefighters.ki.agh.edu.pl/reportHeaders/0/address",
"type": "string"
}
},
"additionalProperties": false
},
"additionalItems": false
}
},
"additionalProperties": false
}
|
o81499
|
{
"definitions": {},
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"$id": "http://www.pucomex.serpro.gov.br/lpco/deferir_prorrogacao_resp.schema.json",
"properties": {
"situacao": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"descricao": {
"type": "string"
}
}
},
"novaDataFimVigencia": {
"type": "string"
}
}
}
|
o73033
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"requires": [
"log"
],
"log": {
"type": "object",
"description": "Display log messages received through wrapper events.",
"properties": {
"stream": {
"type": "string",
"description": "The topic through which to gather log messages."
},
"bufferSize": {
"type": "integer",
"description": "Maximum number of log message items to keep in memory.",
"default": 5000
}
}
},
"properties": {
"log": {
"$ref": "#/log"
}
},
"required": [
"log"
]
}
|
o89607
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Expense",
"description": "Expense",
"type": "object",
"properties": {
"amount": {
"title": "Amount",
"description": "Expenses associated with the running of the business. The value must be between -99999999999.99 and 99999999999.99.",
"type": "number",
"multipleOf": 0.01,
"minimum": -99999999999.99,
"maximum": 99999999999.99,
"example": "1000.45"
},
"disallowableAmount": {
"title": "Disallowable amount",
"description": "Any expense or partial expense that cannot be claimed for tax purposes. The value must be between -99999999999.99 and 99999999999.99.",
"type": "number",
"multipleOf": 0.01,
"minimum": -99999999999.99,
"maximum": 99999999999.99,
"example": "1000.45"
}
},
"required": [
"amount"
],
"additionalProperties": false
}
|
o46416
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"id": {
"type": "integer",
"minimum": 1
},
"firstName": {
"type": "string",
"faker": "name.firstName"
},
"lastName": {
"type": "string",
"faker": "name.lastName"
},
"emailAddress": {
"type": "string",
"faker": "internet.email"
},
"userName": {
"type": "string",
"faker": "internet.userName"
},
"createdAt": {
"type": "string",
"faker": "date.past"
},
"updatedAt": {
"type": "string",
"faker": "date.past"
}
},
"required": [
"id",
"firstName",
"lastName",
"emailAddress",
"userName",
"createdAt",
"updatedAt"
]
}
|
o88588
|
{
"title": "PointCloud Return Filter",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"description": "Filters points based on the value of the return number/return count.",
"properties": {
"field": {
"type": "string",
"description": "The name of the field that is used for the filter."
},
"includedReturns": {
"type": "array",
"description": "All points with at least one specified return status will be kept. Status values: `last`, `firstOfMany`, `lastOfMany`, `single`",
"items": {
"type": "string",
"enum": [
"last",
"firstOfMany",
"lastOfMany",
"single"
]
}
},
"type": {
"type": "string",
"enum": [
"pointCloudReturnFilter"
]
}
},
"required": [
"field",
"includedReturns",
"type"
],
"additionalProperties": false,
"esriDocumentation": {
"examples": [
{
"title": "PointCloud Return Filter",
"description": "",
"code": {
"filters": [
{
"type": "pointCloudReturnFilter",
"field": "USAGE",
"includedReturns": [
"firstOfMany",
"single"
]
}
]
}
}
]
}
}
|
o90264
|
{
"$schema": "http://json-schema.org/draft-04/schema",
"type": "object",
"properties": {
"start_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"description": "Path(s) of the source file to begin the checking. The path is relative to the workspace directory. Multiple paths are allowed and individually checked."
},
"package_path": {
"type": "string",
"description": "A value of `package.path`. The paths are relative to the workspace directory. `package.path` can be dynamically set in the program, but such assignments will be ignored if the explicit value is given here."
},
"package_cpath": {
"type": "string",
"description": "A value of `package.cpath`. The paths are relative to the workspace directory. `package.cpath` can be dynamically set in the program, but such assignments will be ignored if the explicit value is given here."
},
"preload": {
"type": "object",
"properties": {
"open": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of built-in libraries loaded as like `--# open`. Takes precedence over `require`."
},
"require": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of libraries loaded via `require()`."
}
},
"description": "A list of default libraries that will be preloaded into the environment before checking."
}
},
"required": [
"start_path"
]
}
|
o57168
|
{
"$schema": "http://json-schema.org/draft-06/schema#",
"description": "ParaDrop host configuration - firewall defaults object",
"type": "object",
"properties": {
"conntrack": {},
"forward": {
"type": "string",
"enum": [
"ACCEPT",
"REJECT",
"DROP"
]
},
"input": {
"type": "string",
"enum": [
"ACCEPT",
"REJECT",
"DROP"
]
},
"masq": {},
"masq_src": {
"type": "array",
"description": "List of source addresses or subnets to which SNAT should be applied.",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"output": {
"type": "string",
"enum": [
"ACCEPT",
"REJECT",
"DROP"
]
}
}
}
|
o12608
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"delete": {
"type": "array",
"items": {
"type": "string"
}
},
"read": {
"type": "array",
"items": {
"type": "string"
}
},
"contrib": {
"type": "array",
"items": {
"type": "string"
}
},
"manager": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
|
o12223
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Chargeback finance",
"description": "Chargeback messages for Finance division",
"type": "object",
"properties": {
"functionCode": {
"type": "string"
},
"usageUnits": {
"type": "integer"
},
"division": {
"type": "integer",
"minimum": 15,
"maximum": 30,
"default": 15
}
},
"required": [
"functionCode",
"usageUnits",
"division"
]
}
|
o83684
|
{
"id": "https://letsencrypt.org/schema/01/certificate#",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Schema for a certificate message",
"type": "object",
"required": [
"type",
"certificate"
],
"properties": {
"type": {
"enum": [
"certificate"
]
},
"certificate": {
"type": "string"
},
"chain": {
"type": "array",
"minItems": 1,
"items": {
"type": "string"
}
},
"refresh": {
"type": "string"
}
}
}
|
o40346
|
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Brief clarification question schema",
"type": "object",
"properties": {
"question": {
"minLength": 1,
"maxLength": 5000,
"pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)",
"type": "string"
},
"answer": {
"minLength": 1,
"maxLength": 5000,
"pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)",
"type": "string"
}
},
"additionalProperties": false,
"required": [
"question",
"answer"
]
}
|
o21053
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The value returned by GET /_stats",
"items": {
"properties": {
"couchdb": {
"type": "object"
},
"httpd": {
"type": "object"
},
"httpd_request_methods": {
"type": "object"
},
"httpd_status_codes": {
"type": "object"
}
},
"required": [
"couchdb",
"httpd",
"httpd_request_methods",
"httpd_status_codes"
],
"type": "object"
},
"title": "CouchDB _stats",
"type": "array"
}
|
o60114
|
{
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "@runnerty-notificator-console",
"definitions": {
"config": {
"type": "object",
"required": [
"id",
"type"
],
"properties": {
"id": {
"type": "string"
},
"type": {
"type": "string",
"pattern": "@runnerty-notificator-console"
}
}
},
"params": {
"type": "object",
"required": [
"message"
],
"properties": {
"message": {
"type": "string"
},
"mode": {
"type": "string"
}
}
}
},
"properties": {
"config": {
"$ref": "#/definitions/config"
},
"params": {
"$ref": "#/definitions/params"
}
},
"required": [
"config",
"params"
]
}
|
o44065
|
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "An example schema",
"type": "object",
"properties": {
"a": {
"type": "string"
},
"b": {
"type": "integer"
},
"c": {
"type": "string",
"enum": [
"abc",
"def",
"ghi",
"jkl"
]
}
},
"if": {
"properties": {
"c": {
"enum": [
"ghi"
]
}
}
},
"then": {
"required": [
"a",
"b",
"c"
]
},
"else": {
"required": [
"a",
"c"
]
}
}
|
o4834
|
{
"title": "Parameter Selection",
"items": {
"type": "object",
"properties": {
"value": {
"oneOf": [
{
"type": "string"
},
{
"type": "array"
},
{
"type": "number"
},
{
"required": [
"expression_type"
],
"type": "object",
"properties": {
"output": {
"type": "string"
},
"expression_type": {
"default": "stage-output-selector",
"enum": [
"stage-output-selector"
],
"type": "string"
},
"stages": {
"type": "string"
},
"flatten": {
"type": "boolean"
},
"unwrap": {
"type": "boolean"
}
}
}
],
"title": "Value"
},
"key": {
"type": "string",
"title": "Key/Attribute"
}
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"id": "parameter_selection"
}
|
o66183
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "#mbox_sha1sum",
"type": "object",
"required": [
"mbox_sha1sum"
],
"properties": {
"mbox_sha1sum": {
"id": "#mbox_sha1sum!core",
"type": "string",
"format": "sha1"
},
"mbox": {
"type": "null"
},
"openid": {
"type": "null"
},
"account": {
"type": "null"
}
}
}
|
o76656
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "PermissionGrant",
"type": "object",
"additionalProperties": false,
"properties": {
"username": {
"type": "string",
"description": "Name of the user to grant the accessLevel to."
},
"accessLevel": {
"type": "string",
"enum": [
"NONE",
"READ",
"WRITE",
"ADMIN"
],
"description": "Type of permission to grant access to"
}
},
"javaName": "PermissionGrant"
}
|
o39441
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"rank": {
"type": "number"
},
"date": {
"type": "string"
},
"scores": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"value": {
"type": "number"
}
}
}
}
},
"required": [
"name",
"rank",
"date",
"scores"
]
},
"properties": {},
"additionalProperties": false
}
|
o45205
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://jsonschema.net/vcard",
"type": "object",
"title": "vcard",
"properties": {
"vcard:fn": {
"id": "http://jsonschema.net/dcat:Distribution/0/vcard:fn",
"type": "string",
"title": "Name"
},
"vcard:hasTelephone": {
"id": "http://jsonschema.net/dcat:Distribution/0/vcard:hasTelephone",
"type": "string",
"title": "Telephone"
},
"vcard:hasEmail": {
"id": "http://jsonschema.net/dcat:Distribution/0/vcard:hasEmail",
"type": "string",
"title": "Email"
},
"vcard:hasURL": {
"id": "http://jsonschema.net/dcat:Distribution/0/vcard:hasURL",
"type": "string",
"title": "URL"
}
}
}
|
o36441
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Reject step",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"kind": {
"enum": [
"reject"
]
},
"label": {
"type": "string"
},
"title": {
"type": "string"
},
"reason": {
"enum": [
"busy",
"rejected"
]
},
"iface": {
"type": "object"
}
},
"required": [
"name",
"kind",
"label",
"title"
]
}
|
o58490
|
{
"definitions": {
"stringArray": {
"additionalItems": false,
"items": {
"type": "string"
},
"type": "array"
}
},
"properties": {
"ramlTitle": {
"type": "string"
},
"validationViolations": {
"$ref": "#/definitions/stringArray"
}
},
"type": "object"
}
|
o63477
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"socialNetwork": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "name of the network, e.g. LinkedIn"
},
"icon": {
"type": "string",
"format": "uri",
"description": "uri of a thumbnail image representing the social network"
},
"uri": {
"type": "string",
"format": "uri",
"description": "uri that a candidate can follow to connect to the social network"
}
},
"additionalProperties": false,
"required": [
"name",
"icon",
"uri"
]
}
},
"type": "array",
"description": "details of the social networks enabled by this tenant",
"items": {
"$ref": "#/definitions/socialNetwork"
}
}
|
o79600
|
{
"description": "A comment that is attached to an object (supported objects: release)",
"properties": {
"_id": {
"description": "Unique identifier for a build. Gets generated automatically on creation.",
"pattern": "^[a-z0-9._-]{2,}$",
"readOnly": true,
"type": "string"
},
"created_at": {
"description": "Timestamp when the comment was posted.",
"readOnly": true,
"type": "string"
},
"from": {
"description": "User who wrote the comment",
"readOnly": true,
"type": "object"
},
"message": {
"description": "Message",
"maxLength": 5000,
"minLength": 3,
"type": "string"
}
},
"required": [
"id",
"message"
],
"title": "Comment",
"type": "object"
}
|
o84345
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"message": {
"default": "",
"description": "Message to log to the console",
"type": "string"
}
},
"required": [
"message"
],
"title": "Log a message to the console",
"type": "object"
}
|
o12503
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "create tasks request",
"description": "create tasks request",
"type": "object",
"properties": {
"docker_image": {
"type": "string",
"pattern": "(.+/)?.+:.+"
},
"cmd": {
"type": "array",
"minItems": 1,
"items": {
"type": "string"
}
},
"creds": {
"type": "object",
"properties": {
"email": {
"type": "string",
"minLength": 1
},
"username": {
"type": "string",
"minLength": 1
},
"password": {
"type": "string",
"minLength": 1
}
},
"required": [
"email",
"username",
"password"
],
"additionalProperties": false
}
},
"required": [
"docker_image",
"cmd"
],
"additionalProperties": false
}
|
o76476
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://schema.envirocar.org/announcement.json#",
"type": "object",
"required": [
"id",
"category",
"priority",
"content"
],
"properties": {
"created": {
"type": "string",
"format": "date-time"
},
"modified": {
"type": "string",
"format": "date-time"
},
"id": {
"type": "string"
},
"category": {
"type": "string"
},
"priority": {
"type": "string"
},
"content": {
"type": "object",
"minProperties": 1,
"additionalProperties": {
"type": "string"
}
}
}
}
|
o44344
|
End of preview. Expand
in Data Studio
README.md exists but content is empty.
- Downloads last month
- 13