schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
tslint.json
|
jsRules
|
A map of rules that will be used to lint JavaScript files. These rules apply to `.js` and `.jsx` files.
|
{}
|
tslint.json
|
defaultSeverity
|
The severity level used when a rule specifies "default" as its severity level. If undefined, "error" is used.
|
{"type": "string", "enum": ["error", "warning", "warn", "off", "none"], "default": "error"}
|
tslint.json
|
linterOptions
|
Additional linter options.
|
{"type": "object", "properties": {"exclude": {"type": "array", "items": {"type": "string"}}}}
|
tslint.json
|
exclude
|
An array of globs. Any file matching these globs will not be linted. All exclude patterns are relative to the configuration file they were specified in.
|
{"type": "array", "items": {"type": "string"}}
|
project.json
|
compilationOptions
|
[Deprecated] Options that are passed to the compiler. Use 'buildOptions' instead.
|
{"type": "object", "properties": {"define": {"type": "array", "uniqueItems": true, "items": {"type": "string"}}, "nowarn": {"type": "array", "uniqueItems": true, "items": {"type": "string"}}, "warningsAsErrors": {"type": "boolean", "default": false}, "allowUnsafe": {"type": "boolean", "default": false}, "emitEntryPoint": {"type": "boolean", "default": false}, "optimize": {"type": "boolean", "default": false}, "platform": {"type": "string", "enum": ["anycpu", "anycpu32bitpreferred", "ARM", "x86", "x64", "Itanium"]}, "languageVersion": {"type": "string", "enum": ["csharp1", "csharp2", "csharp3", "csharp4", "csharp5", "csharp6", "experimental"]}, "keyFile": {"type": "string"}, "delaySign": {"type": "boolean", "default": false}, "publicSign": {"type": "boolean", "default": false}, "debugType": {"type": "string", "enum": ["portable", "full"]}, "preserveCompilationContext": {"type": "boolean"}, "outputName": {"type": "string"}}}
|
project.json
|
preserveCompilationContext
|
Set this option to preserve reference assemblies and other context data to allow for runtime compilation
|
{"type": "boolean"}
|
project.json
|
buildOptions
|
Options that are passed to the compiler.
|
{"type": "object", "properties": {"define": {"type": "array", "uniqueItems": true, "items": {"type": "string"}}, "nowarn": {"type": "array", "uniqueItems": true, "items": {"type": "string"}}, "warningsAsErrors": {"type": "boolean", "default": false}, "allowUnsafe": {"type": "boolean", "default": false}, "emitEntryPoint": {"type": "boolean", "default": false}, "optimize": {"type": "boolean", "default": false}, "platform": {"type": "string", "enum": ["anycpu", "anycpu32bitpreferred", "ARM", "x86", "x64", "Itanium"]}, "languageVersion": {"type": "string", "enum": ["csharp1", "csharp2", "csharp3", "csharp4", "csharp5", "csharp6", "experimental"]}, "keyFile": {"type": "string"}, "delaySign": {"type": "boolean", "default": false}, "publicSign": {"type": "boolean", "default": false}, "debugType": {"type": "string", "enum": ["portable", "full", "none"]}, "preserveCompilationContext": {"type": "boolean"}, "outputName": {"type": "string"}, "compilerName": {"type": "string", "default": "csc"}, "compile": {"type": ["string", "array", "object"], "items": {"type": "string"}, "properties": {"include": {"type": ["string", "array"], "items": {"type": "string"}}, "exclude": {"type": ["string", "array"], "items": {"type": "string"}}, "includeFiles": {"type": ["string", "array"], "items": {"type": "string"}}, "excludeFiles": {"type": ["string", "array"], "items": {"type": "string"}}, "builtIns": {"type": ["string", "array", "object"], "items": {"type": "string"}, "properties": {"include": {"type": ["string", "array"], "items": {"type": "string"}}, "exclude": {"type": ["string", "array"], "items": {"type": "string"}}}}, "mappings": {"type": "object"}}}, "embed": {"allOf": [{}, {}]}, "copyToOutput": {"allOf": [{}, {}]}, "xmlDoc": {"type": "boolean"}, "additionalArguments": {"type": "array", "items": {"type": "string"}}}}
|
project.json
|
preserveCompilationContext
|
Set this option to preserve reference assemblies and other context data to allow for runtime compilation.
|
{"type": "boolean"}
|
project.json
|
compile
|
Defines glob patterns and file path to include for compilation.
|
{"type": ["string", "array", "object"], "items": {"type": "string"}, "properties": {"include": {"type": ["string", "array"], "items": {"type": "string"}}, "exclude": {"type": ["string", "array"], "items": {"type": "string"}}, "includeFiles": {"type": ["string", "array"], "items": {"type": "string"}}, "excludeFiles": {"type": ["string", "array"], "items": {"type": "string"}}, "builtIns": {"type": ["string", "array", "object"], "items": {"type": "string"}, "properties": {"include": {"type": ["string", "array"], "items": {"type": "string"}}, "exclude": {"type": ["string", "array"], "items": {"type": "string"}}}}, "mappings": {"type": "object"}}}
|
project.json
|
include
|
List of file globbing patterns to be included.
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
exclude
|
List of file globbing patterns to be excluded.
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
includeFiles
|
List of file paths to be included.
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
excludeFiles
|
List of file paths to be excluded.
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
include
|
List of file globbing patterns to be included.
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
exclude
|
List of file globbing patterns to be included.
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
mappings
|
Pairs of destination folders and glob patterns specifying additional files to include/exclude.
|
{"type": "object"}
|
project.json
|
embed
|
Defines glob patterns and file paths of resource files to include for compilation.
|
{}
|
project.json
|
copyToOutput
|
Defines glob patterns and file paths to include for copying to build output.
|
{}
|
project.json
|
System.GC.Server
|
Enables/disables server garbage collection.
|
{"type": "boolean", "default": false}
|
project.json
|
System.GC.Concurrent
|
Enables/disables concurrent garbage collection.
|
{"type": "boolean", "default": true}
|
project.json
|
System.GC.HeapCount
|
Limits the number of heaps created by the garbage collector.
|
{"type": "integer", "minimum": 0}
|
project.json
|
System.GC.HeapAffinitizeMask
|
Specifies the exact processors that garbage collector threads should use.
|
{"type": "integer", "minimum": 0}
|
project.json
|
System.GC.GCHeapAffinitizeRanges
|
Specifies the list of processors to use for garbage collector threads.
|
{"type": "string", "minLength": 1}
|
project.json
|
System.GC.NoAffinitize
|
Specifies whether to affinitize garbage collection threads with processors. To affinitize a GC thread means that it can only run on its specific CPU. A heap is created for each GC thread.
|
{"type": "boolean", "default": false}
|
project.json
|
System.GC.HeapHardLimit
|
Specifies the maximum commit size, in bytes, for the GC heap and GC bookkeeping.
|
{"type": "string"}
|
project.json
|
System.GC.HeapHardLimitPercent
|
Specifies the GC heap usage as a percentage of the total memory.
|
{"type": "number"}
|
project.json
|
System.GC.RetainVM
|
Configures whether segments that should be deleted are put on a standby list for future use or are released back to the operating system (OS).
|
{"type": "boolean", "default": false}
|
project.json
|
System.GC.LOHThreshold
|
Specifies the threshold size, in bytes, that causes objects to go on the large object heap (LOH).
|
{"type": "integer", "default": 85000}
|
project.json
|
System.Threading.ThreadPool.MinThreads
|
Sets the minimum number of threads for the thread pool.
|
{"type": "integer", "minimum": 1}
|
project.json
|
System.Threading.ThreadPool.MaxThreads
|
Sets the maximum number of threads for the thread pool.
|
{"type": "integer", "minimum": 1}
|
project.json
|
framework
|
Properties of the shared framework to use when activating the application.
|
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}}
|
project.json
|
applyPatches
|
Determines if the framework version is strictly obeyed by the host.
|
{"type": "boolean"}
|
project.json
|
packOptions
|
Defines options pertaining to the packaging of the project output into a NuGet package.
|
{"type": "object", "properties": {"summary": {"type": "string"}, "tags": {"type": "array", "uniqueItems": true, "items": {"type": "string"}}, "owners": {"type": "array", "uniqueItems": true, "items": {"type": "string"}}, "releaseNotes": {"type": "string"}, "iconUrl": {"type": "string"}, "licenseUrl": {"type": "string"}, "requireLicenseAcceptance": {"type": "boolean", "default": false}, "repository": {"type": "object", "properties": {"type": {"type": "string", "enum": ["git"], "default": "git"}, "url": {"type": "string", "format": "uri"}}, "additionalProperties": {"type": "string"}}, "files": {"allOf": [{}, {}]}}}
|
project.json
|
summary
|
A short description of the package.
|
{"type": "string"}
|
project.json
|
tags
|
A space-delimited list of tags and keywords that describe the package.
|
{"type": "array", "uniqueItems": true, "items": {"type": "string"}}
|
project.json
|
owners
|
List of owners of the package.
|
{"type": "array", "uniqueItems": true, "items": {"type": "string"}}
|
project.json
|
releaseNotes
|
A description of the changes made in each release of the package.
|
{"type": "string"}
|
project.json
|
iconUrl
|
A URL for the image to use as the icon for the package. This should be a 32x32-pixel .png file that has a transparent background.
|
{"type": "string"}
|
project.json
|
licenseUrl
|
A link to the license for the package.
|
{"type": "string"}
|
project.json
|
requireLicenseAcceptance
|
A Boolean value that specifies whether the client needs to ensure that the package license (described by licenseUrl) is accepted before the package is installed.
|
{"type": "boolean", "default": false}
|
project.json
|
repository
|
Contains information about the repository where the project is stored.
|
{"type": "object", "properties": {"type": {"type": "string", "enum": ["git"], "default": "git"}, "url": {"type": "string", "format": "uri"}}, "additionalProperties": {"type": "string"}}
|
project.json
|
files
|
Defines glob patterns and file paths to include in the generated NuGet package.
|
{}
|
project.json
|
publishOptions
|
Defines glob patterns and file paths to include in publish output.
|
{}
|
project.json
|
imports
|
Allow packages supporting these frameworks to be installed in this target, regardless of the compatibility rules.
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
dependencies
|
Each dependency is defined by a name and a version. Dependencies are resolved from NuGet feeds defined by your package sources and projects located in the directories specified by the 'global.json' file.
|
{"type": "object", "additionalProperties": {"type": ["string", "object"], "properties": {"version": {"type": "string"}, "type": {"type": "string", "default": "default", "enum": ["default", "build", "platform"]}, "target": {"type": "string", "enum": ["project", "package"]}, "include": {}, "exclude": {}, "suppressParent": {}}}}
|
project.json
|
target
|
Restrict this dependency to matching only a Project or a Package.
|
{"type": "string", "enum": ["project", "package"]}
|
project.json
|
script
|
A command line script or scripts.
Available variables:
%project:Directory% - The project directory
%project:Name% - The project name
%project:Version% - The project version
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
authors
|
The author of the application.
|
{"type": "array", "uniqueItems": true, "items": {"type": "string"}}
|
project.json
|
packInclude
|
[Deprecated] Pairs of destination folders and glob patterns specifying additional files to include in the output NuGet package. (data type: JSON map). Example: { "tools/": "tools/**/*.*" }. Use 'files' in 'packOptions' instead.
|
{"type": "object"}
|
project.json
|
publishExclude
|
[Deprecated] Glob pattern to specify files to exclude from publish output. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ]. Use 'publishOptions' instead.
|
{"type": ["string", "array"], "items": {"type": "string"}, "default": ["obj/**/*.*", "bin/**/*.*", "**/.*/**"]}
|
project.json
|
compile
|
[Deprecated] Glob pattern to specify files to compile. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ]. Use 'compile' in 'buildOptions' instead.
|
{"type": ["string", "array"], "items": {"type": "string"}, "default": "**/*.cs"}
|
project.json
|
compileExclude
|
[Deprecated] Glob pattern to specify files to exclude from compilation. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ]. Use 'compile' in 'buildOptions' instead.
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
compileFiles
|
[Deprecated] Files to include in compilation (overrides 'compileExclude'). (data type: string or array). Example: [ "Folder1/File1.ext", "Folder2/File2.ext" ]. Use 'compile' in 'buildOptions' instead.
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
content
|
[Deprecated] Glob pattern to specify files to include as content. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ]. Use 'publishOptions' to publish or 'copyToOutput' in 'buildOptions' to copy to build output instead.
|
{"type": ["string", "array"], "items": {"type": "string"}, "default": "**/*"}
|
project.json
|
contentExclude
|
[Deprecated] Glob pattern to specify files to exclude from the content list. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ]. Use 'publishOptions' to publish or 'copyToOutput' in 'buildOptions' to copy to build output instead.
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
contentFiles
|
[Deprecated] Files to include as content (overrides 'contentExclude'). (data type: string or array). Example: [ "Folder1/File1.ext", "Folder2/File2.ext" ]. Use 'publishOptions' to publish or 'copyToOutput' in 'buildOptions' to copy to build output instead.
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
preprocess
|
Glob pattern to specify files to use for preprocessing. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ]
|
{"type": ["string", "array"], "items": {"type": "string"}, "default": "compiler/preprocess/**/*.cs"}
|
project.json
|
preprocessExclude
|
Glob pattern to specify files to exclude from use for preprocessing. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ]
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
preprocessFiles
|
Files to include to use for preprocessing (overrides 'preprocessExclude'). (data type: string or array). Example: [ "Folder1/File1.ext", "Folder2/File2.ext" ]
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
resource
|
[Deprecated] Glob pattern to specify files to include as resources. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ]. Use 'embed' in 'buildOptions' instead.
|
{"type": ["string", "array"], "items": {"type": "string"}, "default": ["compiler/resources/**/*", "**/*.resx"]}
|
project.json
|
resourceExclude
|
[Deprecated] Glob pattern to specify files to exclude from the resources list. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ]. Use 'embed' in 'buildOptions' instead.
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
resourceFiles
|
[Deprecated] Files to include as resources (overrides 'resourceExclude'). (data type: string or array). Example: [ "Folder1/File1.ext", "Folder2/File2.ext" ]. Use 'embed' in 'buildOptions' instead.
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
shared
|
Glob pattern to specify files to share with dependent projects. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ]
|
{"type": ["string", "array"], "items": {"type": "string"}, "default": "compiler/shared/**/*.cs"}
|
project.json
|
sharedExclude
|
Glob pattern to specify files to exclude from sharing with dependent projects. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ]
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
sharedFiles
|
Files to include for sharing with dependent projects (overrides 'sharedExclude'). (data type: string or array). Example: [ "Folder1/File1.ext", "Folder2/File2.ext" ]
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
exclude
|
[Deprecated] Glob pattern to indicate files to exclude from other glob patterns, in addition to the default patterns specified in 'excludeBuiltIn'. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ]. Use 'exclude' within 'compile' or 'embed' instead.
|
{"type": ["string", "array"], "items": {"type": "string"}}
|
project.json
|
excludeBuiltIn
|
[Deprecated] Default glob pattern to indicate files to exclude from other glob patterns. (data type: string or array with glob pattern(s)). Example: [ "Folder1/*.ext", "Folder2/*.ext" ]. Use 'exclude' within 'compile' or 'embed' instead.
|
{"type": ["string", "array"], "items": {"type": "string"}, "default": ["bin/**", "obj/**", "**/*.xproj"]}
|
project.json
|
testRunner
|
The name of the test runner to use with this project
|
{"type": "string"}
|
project.json
|
configurations
|
Configurations are named groups of compilation settings. There are two defaults built into the runtime: 'Debug' and 'Release'.
|
{"type": "object", "additionalProperties": {"type": "object", "properties": {"compilationOptions": {}, "buildOptions": {}}}}
|
project.json
|
copyright
|
Copyright details for the package.
|
{"type": "string"}
|
project.json
|
iconUrl
|
[Deprecated] A URL for the image to use as the icon for the package. This should be a 32x32-pixel .png file that has a transparent background. Use this in 'packOptions' instead.
|
{"type": "string"}
|
project.json
|
licenseUrl
|
[Deprecated] A link to the license for the package. Use this in 'packOptions' instead.
|
{"type": "string"}
|
project.json
|
requireLicenseAcceptance
|
[Deprecated] A Boolean value that specifies whether the client needs to ensure that the package license (described by licenseUrl) is accepted before the package is installed. Use this in 'packOptions' instead.
|
{"type": "boolean", "default": false}
|
project.json
|
owners
|
[Deprecated] List of owners of the package. Use this in 'packOptions' instead.
|
{"type": "array", "uniqueItems": true, "items": {"type": "string"}}
|
project.json
|
projectUrl
|
A URL for the home page of the package.
|
{"type": "string"}
|
project.json
|
summary
|
[Deprecated] A short description of the package. Use this in 'packOptions' instead.
|
{"type": "string"}
|
project.json
|
tags
|
[Deprecated] A space-delimited list of tags and keywords that describe the package. Use this in 'packOptions' instead.
|
{"type": "array", "uniqueItems": true, "items": {"type": "string"}}
|
project.json
|
title
|
The human-friendly title of the package
|
{"type": "string"}
|
project.json
|
releaseNotes
|
[Deprecated] A description of the changes made in each release of the package. Use this in 'packOptions' instead.
|
{"type": "string"}
|
project.json
|
language
|
The locale ID for the package, such as en-us.
|
{"type": "string"}
|
project.json
|
description
|
The description of the project/package.
|
{"type": "string"}
|
project.json
|
frameworks
|
Target frameworks that will be built, and dependencies that are specific to the build of this project for that framework.
|
{"type": "object", "additionalProperties": {}}
|
project.json
|
namedResource
|
Overrides the generated resource names with custom ones.
|
{"type": "object", "additionalProperties": {"type": "string"}}
|
project.json
|
repository
|
[Deprecated] Contains information about the repository where the project is stored. Use this in 'packOptions' instead.
|
{"type": "object", "properties": {"type": {"type": "string", "enum": ["git"], "default": "git"}, "url": {"type": "string", "format": "uri"}}, "additionalProperties": {"type": "string"}}
|
project.json
|
scripts
|
Scripts to execute during the various stages.
|
{"type": "object", "properties": {"precompile": {}, "postcompile": {}, "prepack": {}, "postpack": {}, "prepublish": {}, "postpublish": {}, "prerestore": {}, "postrestore": {}, "prepare": {}}}
|
project.json
|
version
|
The version of the project/package. Examples: 1.2.3, 1.2.3-beta, 1.2.3-*
|
{"type": "string"}
|
project.json
|
tools
|
Project-specific command line tools accessible when in the project.json directory.
|
{"type": "object", "additionalProperties": {"type": ["string", "object"], "properties": {"version": {"type": "string"}}}}
|
project.json
|
runtimes
|
List of runtime identifiers supported by this project (used when building standalone applications).
|
{"type": "object"}
|
project.json
|
userSecretsId
|
Specify a unique identifier for the development time user secrets of the project.
|
{"type": "string"}
|
ninjs-1.3.json
|
A news item as JSON object -- copyright 2020 IPTC - International Press Telecommunications Council - www.iptc.org - This document is published under the Creative Commons Attribution 4.0 license, see http://creativecommons.org/licenses/by/4.0/
|
{"$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "id": "http://www.iptc.org/std/ninjs/ninjs-schema_1.3.json#", "patternProperties": {"^description_[a-zA-Z0-9_]+": {"type": "string"}, "^body_[a-zA-Z0-9_]+": {"type": "string"}, "^headline_[a-zA-Z0-9_]+": {"type": "string"}}, "properties": {"uri": {"type": "string", "format": "uri"}, "type": {"type": "string", "enum": ["text", "audio", "video", "picture", "graphic", "composite", "component"]}, "mimetype": {"type": "string"}, "representationtype": {"type": "string", "enum": ["complete", "incomplete"]}, "profile": {"type": "string"}, "version": {"type": "string"}, "firstcreated": {"type": "string", "format": "date-time"}, "versioncreated": {"type": "string", "format": "date-time"}, "embargoed": {"type": "string", "format": "date-time"}, "pubstatus": {"type": "string", "enum": ["usable", "withheld", "canceled"]}, "urgency": {"type": "number"}, "copyrightholder": {"type": "string"}, "copyrightnotice": {"type": "string"}, "usageterms": {"type": "string"}, "ednote": {"type": "string"}, "language": {"type": "string"}, "person": {"type": "array", "items": {"type": "object", "additionalProperties": false, "properties": {"name": {"type": "string"}, "rel": {"type": "string"}, "scheme": {"type": "string", "format": "uri"}, "code": {"type": "string"}}}}, "organisation": {"type": "array", "items": {"type": "object", "additionalProperties": false, "properties": {"name": {"type": "string"}, "rel": {"type": "string"}, "scheme": {"type": "string", "format": "uri"}, "code": {"type": "string"}, "symbols": {"type": "array", "items": {"type": "object", "additionalProperties": false, "properties": {"ticker": {"type": "string"}, "exchange": {"type": "string"}}}}}}}, "place": {"type": "array", "items": {"type": "object", "additionalProperties": false, "patternProperties": {"^geometry_[a-zA-Z0-9_]+": {"type": "object"}}, "properties": {"name": {"type": "string"}, "rel": {"type": "string"}, "scheme": {"type": "string", "format": "uri"}, "code": {"type": "string"}}}}, "subject": {"type": "array", "items": {"type": "object", "additionalProperties": false, "properties": {"name": {"type": "string"}, "rel": {"type": "string"}, "scheme": {"type": "string", "format": "uri"}, "code": {"type": "string"}}}}, "event": {"type": "array", "items": {"type": "object", "additionalProperties": false, "properties": {"name": {"type": "string"}, "rel": {"type": "string"}, "scheme": {"type": "string", "format": "uri"}, "code": {"type": "string"}}}}, "object": {"type": "array", "items": {"type": "object", "additionalProperties": false, "properties": {"name": {"type": "string"}, "rel": {"type": "string"}, "scheme": {"type": "string", "format": "uri"}, "code": {"type": "string"}}}}, "infosource": {"type": "array", "items": {"type": "object", "additionalProperties": false, "properties": {"name": {"type": "string"}, "rel": {"type": "string"}, "scheme": {"type": "string", "format": "uri"}, "code": {"type": "string"}}}}, "byline": {"type": "string"}, "headline": {"type": "string"}, "slugline": {"type": "string"}, "located": {"type": "string"}, "charcount": {"type": "number"}, "wordcount": {"type": "number"}, "renditions": {"type": "object", "additionalProperties": false, "patternProperties": {"^[a-zA-Z0-9_]+": {"type": "object", "additionalProperties": false, "properties": {"href": {"type": "string", "format": "uri"}, "mimetype": {"type": "string"}, "height": {"type": "number"}, "width": {"type": "number"}, "sizeinbytes": {"type": "number"}, "duration": {"type": "number"}, "format": {"type": "string"}}}}}, "associations": {"type": "object", "additionalProperties": false, "patternProperties": {"^[a-zA-Z0-9_]+": {}}}, "altids": {"type": "object", "additionalProperties": true}, "trustindicator": {"type": "array", "items": {"type": "object", "additionalProperties": false, "properties": {"scheme": {"type": "string", "format": "uri"}, "code": {"type": "string"}, "href": {"type": "string", "format": "uri"}}}}, "$standard": {"type": "object", "additionalProperties": false, "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "schema": {"type": "string", "format": "uri"}}}, "genre": {"type": "array", "items": {"type": "object", "additionalProperties": false, "properties": {"name": {"type": "string"}, "scheme": {"type": "string", "format": "uri"}, "code": {"type": "string"}}}}}, "required": ["uri"], "type": "object"}
|
|
ninjs-1.3.json
|
^description_[a-zA-Z0-9_]+
|
A free-form textual description of the content of the item. (The string appended to description_ in the property name should reflect the format and/or the purpose of the text, separating the parts with _). nar:description
|
{"type": "string"}
|
ninjs-1.3.json
|
^body_[a-zA-Z0-9_]+
|
The textual content of the news object. (The string appended to body_ in the property name should reflect the format and/or the purpose of the text, separating the parts with _). nar:inlineData or nar:inlineXML
|
{"type": "string"}
|
ninjs-1.3.json
|
^headline_[a-zA-Z0-9_]+
|
Additional headlines or strings of that type can be handled here. This is not replacing the main headline-property in ninjs. (The string appended to headline_ in the property name should reflect the format and/or the purpose of the text, separating the parts with _) nar:headline with roles issue #13. (Added in 1.3)
|
{"type": "string"}
|
ninjs-1.3.json
|
uri
|
The identifier for this news object. nar:newsItem@guid
|
{"type": "string", "format": "uri"}
|
ninjs-1.3.json
|
type
|
The generic news type of this news object. (Value 'component' added in version 1.2 as issue #21.). nar:itemClass
|
{"type": "string", "enum": ["text", "audio", "video", "picture", "graphic", "composite", "component"]}
|
ninjs-1.3.json
|
mimetype
|
A MIME type which applies to this news object. nar:contentType
|
{"type": "string"}
|
ninjs-1.3.json
|
representationtype
|
Indicates how complete this representation of a news item is. No mapping to nar. Specific for ninjs.
|
{"type": "string", "enum": ["complete", "incomplete"]}
|
ninjs-1.3.json
|
profile
|
An identifier for the structure of the news object. This can be any string but we suggest something identifying the structure of the content such as 'text-only' or 'text-photo'. Profiles are typically provider-specific. nar:profile
|
{"type": "string"}
|
ninjs-1.3.json
|
version
|
The version of the news object which is identified by the uri property. nar:newsItem@version
|
{"type": "string"}
|
ninjs-1.3.json
|
firstcreated
|
Indicates when the first version of the item was created. (Added in version 1.2 from issue #5). nar:firstCreated
|
{"type": "string", "format": "date-time"}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.