mirror of
https://github.com/cachix/install-nix-action.git
synced 2025-05-15 04:07:13 +00:00
v6
This commit is contained in:
parent
cd5893b2c6
commit
70742d22d9
6774 changed files with 1602535 additions and 1 deletions
20
node_modules/json-schema/draft-03/examples/address
generated
vendored
Normal file
20
node_modules/json-schema/draft-03/examples/address
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"description" : "An Address following the convention of http://microformats.org/wiki/hcard",
|
||||
"type" : "object",
|
||||
"properties" : {
|
||||
"post-office-box" : { "type" : "string" },
|
||||
"extended-address" : { "type" : "string" },
|
||||
"street-address" : { "type":"string" },
|
||||
"locality" : { "type" : "string", "required" : true },
|
||||
"region" : { "type" : "string", "required" : true },
|
||||
"postal-code" : { "type" : "string" },
|
||||
"country-name" : { "type" : "string", "required" : true }
|
||||
},
|
||||
"dependencies" : {
|
||||
"post-office-box" : "street-address",
|
||||
"extended-address" : "street-address",
|
||||
"street-address" : "region",
|
||||
"locality" : "region",
|
||||
"region" : "country-name"
|
||||
}
|
||||
}
|
53
node_modules/json-schema/draft-03/examples/calendar
generated
vendored
Normal file
53
node_modules/json-schema/draft-03/examples/calendar
generated
vendored
Normal file
|
@ -0,0 +1,53 @@
|
|||
{
|
||||
"description" : "A representation of an event",
|
||||
"type" : "object",
|
||||
"properties" : {
|
||||
"dtstart" : {
|
||||
"format" : "date-time",
|
||||
"type" : "string",
|
||||
"description" : "Event starting time",
|
||||
"required":true
|
||||
},
|
||||
"summary" : {
|
||||
"type":"string",
|
||||
"required":true
|
||||
},
|
||||
"location" : {
|
||||
"type" : "string"
|
||||
},
|
||||
"url" : {
|
||||
"type" : "string",
|
||||
"format" : "url"
|
||||
},
|
||||
"dtend" : {
|
||||
"format" : "date-time",
|
||||
"type" : "string",
|
||||
"description" : "Event ending time"
|
||||
},
|
||||
"duration" : {
|
||||
"format" : "date",
|
||||
"type" : "string",
|
||||
"description" : "Event duration"
|
||||
},
|
||||
"rdate" : {
|
||||
"format" : "date-time",
|
||||
"type" : "string",
|
||||
"description" : "Recurrence date"
|
||||
},
|
||||
"rrule" : {
|
||||
"type" : "string",
|
||||
"description" : "Recurrence rule"
|
||||
},
|
||||
"category" : {
|
||||
"type" : "string"
|
||||
},
|
||||
"description" : {
|
||||
"type" : "string"
|
||||
},
|
||||
"geo" : { "$ref" : "http://json-schema.org/draft-03/geo" }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
105
node_modules/json-schema/draft-03/examples/card
generated
vendored
Normal file
105
node_modules/json-schema/draft-03/examples/card
generated
vendored
Normal file
|
@ -0,0 +1,105 @@
|
|||
{
|
||||
"description":"A representation of a person, company, organization, or place",
|
||||
"type":"object",
|
||||
"properties":{
|
||||
"fn":{
|
||||
"description":"Formatted Name",
|
||||
"type":"string"
|
||||
},
|
||||
"familyName":{
|
||||
"type":"string",
|
||||
"required":true
|
||||
},
|
||||
"givenName":{
|
||||
"type":"string",
|
||||
"required":true
|
||||
},
|
||||
"additionalName":{
|
||||
"type":"array",
|
||||
"items":{
|
||||
"type":"string"
|
||||
}
|
||||
},
|
||||
"honorificPrefix":{
|
||||
"type":"array",
|
||||
"items":{
|
||||
"type":"string"
|
||||
}
|
||||
},
|
||||
"honorificSuffix":{
|
||||
"type":"array",
|
||||
"items":{
|
||||
"type":"string"
|
||||
}
|
||||
},
|
||||
"nickname":{
|
||||
"type":"string"
|
||||
},
|
||||
"url":{
|
||||
"type":"string",
|
||||
"format":"url"
|
||||
},
|
||||
"email":{
|
||||
"type":"object",
|
||||
"properties":{
|
||||
"type":{
|
||||
"type":"string"
|
||||
},
|
||||
"value":{
|
||||
"type":"string",
|
||||
"format":"email"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tel":{
|
||||
"type":"object",
|
||||
"properties":{
|
||||
"type":{
|
||||
"type":"string"
|
||||
},
|
||||
"value":{
|
||||
"type":"string",
|
||||
"format":"phone"
|
||||
}
|
||||
}
|
||||
},
|
||||
"adr":{"$ref" : "http://json-schema.org/address"},
|
||||
"geo":{"$ref" : "http://json-schema.org/geo"},
|
||||
"tz":{
|
||||
"type":"string"
|
||||
},
|
||||
"photo":{
|
||||
"format":"image",
|
||||
"type":"string"
|
||||
},
|
||||
"logo":{
|
||||
"format":"image",
|
||||
"type":"string"
|
||||
},
|
||||
"sound":{
|
||||
"format":"attachment",
|
||||
"type":"string"
|
||||
},
|
||||
"bday":{
|
||||
"type":"string",
|
||||
"format":"date"
|
||||
},
|
||||
"title":{
|
||||
"type":"string"
|
||||
},
|
||||
"role":{
|
||||
"type":"string"
|
||||
},
|
||||
"org":{
|
||||
"type":"object",
|
||||
"properties":{
|
||||
"organizationName":{
|
||||
"type":"string"
|
||||
},
|
||||
"organizationUnit":{
|
||||
"type":"string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
8
node_modules/json-schema/draft-03/examples/geo
generated
vendored
Normal file
8
node_modules/json-schema/draft-03/examples/geo
generated
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"description" : "A geographical coordinate",
|
||||
"type" : "object",
|
||||
"properties" : {
|
||||
"latitude" : { "type" : "number" },
|
||||
"longitude" : { "type" : "number" }
|
||||
}
|
||||
}
|
23
node_modules/json-schema/draft-03/examples/interfaces
generated
vendored
Normal file
23
node_modules/json-schema/draft-03/examples/interfaces
generated
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"extends":"http://json-schema.org/hyper-schema",
|
||||
"description":"A schema for schema interface definitions that describe programmatic class structures using JSON schema syntax",
|
||||
"properties":{
|
||||
"methods":{
|
||||
"type":"object",
|
||||
"description":"This defines the set of methods available to the class instances",
|
||||
"additionalProperties":{
|
||||
"type":"object",
|
||||
"description":"The definition of the method",
|
||||
"properties":{
|
||||
"parameters":{
|
||||
"type":"array",
|
||||
"description":"The set of parameters that should be passed to the method when it is called",
|
||||
"items":{"$ref":"#"},
|
||||
"required": true
|
||||
},
|
||||
"returns":{"$ref":"#"}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue