hexsha
stringlengths
40
40
size
int64
5
1.05M
ext
stringclasses
98 values
lang
stringclasses
21 values
max_stars_repo_path
stringlengths
3
945
max_stars_repo_name
stringlengths
4
118
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
listlengths
1
10
max_stars_count
int64
1
368k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
945
max_issues_repo_name
stringlengths
4
118
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
listlengths
1
10
max_issues_count
int64
1
134k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
945
max_forks_repo_name
stringlengths
4
135
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
listlengths
1
10
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
5
1.05M
avg_line_length
float64
1
1.03M
max_line_length
int64
2
1.03M
alphanum_fraction
float64
0
1
991f74f183e79eb3636cd7fadda1a69e08a7ab01
618
h
C
engine/GameObject.h
LHolmberg/L3D
6020222700f3ee70cfbf02601bd93bfd59a8fb34
[ "MIT" ]
null
null
null
engine/GameObject.h
LHolmberg/L3D
6020222700f3ee70cfbf02601bd93bfd59a8fb34
[ "MIT" ]
null
null
null
engine/GameObject.h
LHolmberg/L3D
6020222700f3ee70cfbf02601bd93bfd59a8fb34
[ "MIT" ]
null
null
null
#pragma once #include <GL/glew.h> #include <GLFW/glfw3.h> #include <iostream> #include <fstream> #include <string> #include <sstream> #include "Player.h" #include "Random.h" #include "math.h" #include "GLpch.h" #include "external/SOIL/stb_image_aug.h" #include <soil.h> class GameObject { public: void Startup(); unsigned int CreateShader(std::string vShader, std::string fShader); unsigned int program; unsigned int cubemapTexture; static unsigned int LoadCubemap(const char* list[]); const float* viewPtr; const float* projPtr; Math::Matrix4 view; Math::Matrix4 projection; Math::Matrix4 model; };
17.657143
69
0.731392
60da9165d4cf738c619a46bd8bb420a78ac3635e
1,462
swift
Swift
ChatApp/ChatApp/components/Components/MessageBubble.swift
emilhotkowski/chat-app
808840d35acd0dbe0a23fe1cc6618ad60bbd8146
[ "MIT" ]
null
null
null
ChatApp/ChatApp/components/Components/MessageBubble.swift
emilhotkowski/chat-app
808840d35acd0dbe0a23fe1cc6618ad60bbd8146
[ "MIT" ]
null
null
null
ChatApp/ChatApp/components/Components/MessageBubble.swift
emilhotkowski/chat-app
808840d35acd0dbe0a23fe1cc6618ad60bbd8146
[ "MIT" ]
null
null
null
// // MessageBubble.swift // ChatApp // // Created by Emil Hotkowski on 17/03/2022. // import SwiftUI struct MessageBubble: View { let message: Message @State private var showTime = false var body: some View { VStack(alignment: message.received ? .leading : .trailing) { HStack { Text(message.text) .padding() .background(message.received ? Color("Gray") : Color("Peach")) } .cornerRadius(30) .frame(maxWidth: 300, alignment: message.received ? .leading : .trailing) .onTapGesture { showTime.toggle() } if showTime { Text("\(message.timestamp.formatted(.dateTime.hour().minute()))") .font(.caption2) .foregroundColor(.gray) .padding(message.received ? .leading : .trailing, 25) } } .frame(maxWidth: .infinity, alignment: message.received ? .leading : .trailing) .padding(message.received ? .leading : .trailing) .padding(.horizontal, 10) } } struct MessageBubble_Previews: PreviewProvider { static var previews: some View { MessageBubble(message: Message( id: "123", text: "Some much fun to code in SwiftUI. This is better than sex!", received: false, timestamp: Date.now )) } }
29.836735
87
0.53762
e771d16713a8cefc925b8bd536cbec450ee024a2
2,320
js
JavaScript
client/src/components/AreasTable/AreasRow/AreasRow.js
cross-development/full-stack-app
fde0d749d39d71bc85bb6cc6f4af1b3d2006bda5
[ "MIT" ]
null
null
null
client/src/components/AreasTable/AreasRow/AreasRow.js
cross-development/full-stack-app
fde0d749d39d71bc85bb6cc6f4af1b3d2006bda5
[ "MIT" ]
null
null
null
client/src/components/AreasTable/AreasRow/AreasRow.js
cross-development/full-stack-app
fde0d749d39d71bc85bb6cc6f4af1b3d2006bda5
[ "MIT" ]
null
null
null
//Core import React from 'react'; import PropTypes from 'prop-types'; //Styles import { StyledTableBodyRow, StyledTableBodyCell } from './AreasRow.styles'; const AreasRow = ({ area, idx }) => ( <StyledTableBodyRow> <StyledTableBodyCell>{idx + 1}</StyledTableBodyCell> <StyledTableBodyCell>{area.legalEntity}</StyledTableBodyCell> <StyledTableBodyCell>{area.department}</StyledTableBodyCell> <StyledTableBodyCell>{area.villageCouncil}</StyledTableBodyCell> <StyledTableBodyCell>{area.fieldNumber}</StyledTableBodyCell> <StyledTableBodyCell>{area.fieldAreaHa}</StyledTableBodyCell> <StyledTableBodyCell>{area.sownAreaHa}</StyledTableBodyCell> <StyledTableBodyCell>{area.landArea}</StyledTableBodyCell> <StyledTableBodyCell>{area.culture}</StyledTableBodyCell> <StyledTableBodyCell>{area.cultureYear}</StyledTableBodyCell> <StyledTableBodyCell>{area.cadNumber}</StyledTableBodyCell> <StyledTableBodyCell>{area.mortgagee}</StyledTableBodyCell> <StyledTableBodyCell>{area.ownership}</StyledTableBodyCell> <StyledTableBodyCell>{area.registrationStatus}</StyledTableBodyCell> <StyledTableBodyCell>{area.registrationAgency}</StyledTableBodyCell> <StyledTableBodyCell>{area.longitude}</StyledTableBodyCell> <StyledTableBodyCell>{area.latitude}</StyledTableBodyCell> </StyledTableBodyRow> ); AreasRow.propTypes = { idx: PropTypes.number.isRequired, area: PropTypes.shape({ legalEntity: PropTypes.string.isRequired, department: PropTypes.string.isRequired, villageCouncil: PropTypes.string.isRequired, fieldNumber: PropTypes.string.isRequired, fieldAreaHa: PropTypes.number.isRequired, sownAreaHa: PropTypes.number.isRequired, landArea: PropTypes.number.isRequired, culture: PropTypes.string.isRequired, cultureYear: PropTypes.number.isRequired, cadNumber: PropTypes.string.isRequired, mortgagee: PropTypes.string, ownership: PropTypes.string.isRequired, registrationStatus: PropTypes.string, registrationAgency: PropTypes.string, longitude: PropTypes.number, latitude: PropTypes.number, }).isRequired, }; AreasRow.defaultProps = { mortgagee: 'Не заложено', registrationStatus: 'Информация отсутствует', registrationAgency: 'Информация отсутствует', longitude: 'Информация отсутствует', latitude: 'Информация отсутствует', }; export default AreasRow;
38.666667
76
0.799569
352a9c30913a3efe1212ae0f4756a65c44b1cd04
55
asm
Assembly
test/movntq.asm
cryptoptusenix/assemblyline
fd4908f9eee237cbeebc2e17d2bdec1c7928a187
[ "Apache-2.0" ]
null
null
null
test/movntq.asm
cryptoptusenix/assemblyline
fd4908f9eee237cbeebc2e17d2bdec1c7928a187
[ "Apache-2.0" ]
9
2021-09-15T18:04:36.000Z
2021-09-28T01:22:15.000Z
test/movntq.asm
daviduwu9/AssemblyLine
ecabc96e254be5a1e02654258ba4a60ea708397a
[ "Apache-2.0" ]
null
null
null
SECTION .text GLOBAL test test: movntq [rax+0x5b], mm5
11
22
0.745455
851001338b1b517292f69818e5295f51c89e4407
233
swift
Swift
Tests/GampKitTests/Mocks/MockRequest.swift
brightdigit/GampK
723593dbf5bc666ca0f9936927d0b4b225031ca0
[ "MIT" ]
2
2020-06-25T12:00:54.000Z
2021-02-19T07:31:03.000Z
Tests/GampKitTests/Mocks/MockRequest.swift
brightdigit/GampK
723593dbf5bc666ca0f9936927d0b4b225031ca0
[ "MIT" ]
12
2020-03-10T17:44:58.000Z
2021-11-30T14:54:30.000Z
Tests/GampKitTests/Mocks/MockRequest.swift
brightdigit/GampKit
723593dbf5bc666ca0f9936927d0b4b225031ca0
[ "MIT" ]
null
null
null
import Foundation import GampKit class MockRequest: Request { var body: Data? var sent = false var actualError: Error? init(body: Data?, actualError: Error?) { self.body = body self.actualError = actualError } }
15.533333
42
0.686695
df57c79804f2819fb37bfdca5b174dfca5bef462
455
rb
Ruby
spec/support/models.rb
jpawlyn/similar_models
7ffc4c79007f4b1ee0df99331593ca44a3cc360d
[ "MIT" ]
null
null
null
spec/support/models.rb
jpawlyn/similar_models
7ffc4c79007f4b1ee0df99331593ca44a3cc360d
[ "MIT" ]
null
null
null
spec/support/models.rb
jpawlyn/similar_models
7ffc4c79007f4b1ee0df99331593ca44a3cc360d
[ "MIT" ]
null
null
null
class Post < ActiveRecord::Base has_many :author_posts has_many :authors, through: :author_posts has_and_belongs_to_many :tags has_similar_models :authors has_similar_models :tags, as: :similar_posts_by_tag has_similar_models :authors, :tags, as: :similar_posts_by_author_and_tag end class Tag < ActiveRecord::Base end class Author < ActiveRecord::Base end class AuthorPost < ActiveRecord::Base belongs_to :author belongs_to :post end
21.666667
74
0.793407
7888c72dfdd6de9816e94a7c04eb042f8e8c8d63
6,304
asm
Assembly
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_848.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
9
2020-08-13T19:41:58.000Z
2022-03-30T12:22:51.000Z
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_848.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
1
2021-04-29T06:29:35.000Z
2021-05-13T21:02:30.000Z
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_848.asm
ljhsiun2/medusa
67d769b8a2fb42c538f10287abaf0e6dbb463f0c
[ "MIT" ]
3
2020-07-14T17:07:07.000Z
2022-03-21T01:12:22.000Z
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r15 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x5f78, %rsi lea addresses_A_ht+0x11988, %rdi nop cmp $34566, %r10 mov $51, %rcx rep movsb nop nop nop nop and $29351, %rdx lea addresses_D_ht+0x9374, %rcx nop nop nop add %rbp, %rbp mov $0x6162636465666768, %r10 movq %r10, %xmm0 vmovups %ymm0, (%rcx) nop nop xor $43692, %rcx lea addresses_A_ht+0x6378, %rdi clflush (%rdi) and $43072, %r15 mov $0x6162636465666768, %rbp movq %rbp, (%rdi) nop cmp %rdi, %rdi lea addresses_WC_ht+0x12b78, %rsi nop nop and $35905, %rdx movb (%rsi), %r15b nop xor $58601, %rbp lea addresses_WT_ht+0xc378, %rsi nop nop dec %r15 mov (%rsi), %r10w nop nop add $19730, %rbp lea addresses_UC_ht+0x1ed06, %rdx sub %rbp, %rbp mov $0x6162636465666768, %rsi movq %rsi, (%rdx) nop nop nop add %rcx, %rcx lea addresses_UC_ht+0x9778, %rbp cmp %rsi, %rsi movb (%rbp), %r10b nop nop add %r10, %r10 lea addresses_normal_ht+0x19ca8, %rcx nop nop nop nop and %rdx, %rdx mov (%rcx), %rbp nop nop nop nop add $63394, %r10 lea addresses_normal_ht+0x18b78, %rbp sub $46139, %rsi mov $0x6162636465666768, %rdx movq %rdx, (%rbp) nop nop nop nop xor $7687, %rdx lea addresses_A_ht+0x176b8, %rdx nop nop and $54053, %r15 mov (%rdx), %di lfence pop %rsi pop %rdx pop %rdi pop %rcx pop %rbp pop %r15 pop %r10 ret .global s_faulty_load s_faulty_load: push %r11 push %r9 push %rax push %rbp push %rbx // Faulty Load lea addresses_A+0x1f378, %rbp and $56378, %r11 vmovups (%rbp), %ymm6 vextracti128 $1, %ymm6, %xmm6 vpextrq $0, %xmm6, %rax lea oracles, %r11 and $0xff, %rax shlq $12, %rax mov (%r11,%rax,1), %rax pop %rbx pop %rbp pop %rax pop %r9 pop %r11 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'type': 'addresses_A', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}} [Faulty Load] {'OP': 'LOAD', 'src': {'type': 'addresses_A', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}} <gen_prepare_buffer> {'OP': 'REPM', 'src': {'type': 'addresses_D_ht', 'congruent': 9, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 3, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_D_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 2, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_A_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 8, 'same': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_WC_ht', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 11, 'same': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_WT_ht', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 11, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_UC_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 1, 'same': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 1, 'AVXalign': True, 'NT': False, 'congruent': 10, 'same': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_normal_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 3, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 8, 'same': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_A_ht', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 6, 'same': False}} {'35': 21829} 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 */
42.308725
2,999
0.657043
79a641d7b8d72677cdb1bfd372883f06c4c2c54b
327
lua
Lua
utils/main_caffe_convert.lua
erfannoury/fast-rcnn-torch
c81ad15ad9e3dcb2869dc2f90ebee19bffd5c1ec
[ "MIT" ]
null
null
null
utils/main_caffe_convert.lua
erfannoury/fast-rcnn-torch
c81ad15ad9e3dcb2869dc2f90ebee19bffd5c1ec
[ "MIT" ]
null
null
null
utils/main_caffe_convert.lua
erfannoury/fast-rcnn-torch
c81ad15ad9e3dcb2869dc2f90ebee19bffd5c1ec
[ "MIT" ]
null
null
null
require('nn') require('cudnn') require('inn') require('detection') caffeConverter = detection.CaffeModelConverter('./models/VGG16/VGG16_imgnet.lua','/mnt/mag5tb/data/detection/data/imagenet_models/VGG16.prototxt','/mnt/mag5tb/data/detection/data/imagenet_models/VGG16.v2.caffemodel','VGG16.v2','./') caffeConverter:convert()
36.333333
232
0.779817
99214f57ca75f5fd0f932df061e8cf5ace4763a7
2,209
h
C
lib/include/xnetwork/algorithms/community/tests/test_kclique.h
luk036/xnetwork
462c25da3aead6b834e6027f4d679dc47965b134
[ "MIT" ]
1
2020-03-31T06:10:58.000Z
2020-03-31T06:10:58.000Z
lib/include/xnetwork/algorithms/community/tests/test_kclique.h
luk036/xnetwork
462c25da3aead6b834e6027f4d679dc47965b134
[ "MIT" ]
null
null
null
lib/include/xnetwork/algorithms/community/tests/test_kclique.h
luk036/xnetwork
462c25da3aead6b834e6027f4d679dc47965b134
[ "MIT" ]
1
2020-04-08T05:56:26.000Z
2020-04-08T05:56:26.000Z
from itertools import combinations from nose.tools import assert_equal from nose.tools import raises #include <xnetwork.hpp> // as xn from xnetwork.algorithms.community import k_clique_communities auto test_overlapping_K5() { G = xn::Graph(); G.add_edges_from(combinations(range(5), 2)); // Add a five clique G.add_edges_from(combinations(range(2, 7), 2)); // Add another five clique c = list(k_clique_communities(G, 4)); assert_equal(c, [frozenset(range(7))]); c = set(k_clique_communities(G, 5)); assert_equal(c, {frozenset(range(5)), frozenset(range(2, 7))}); auto test_isolated_K5() { G = xn::Graph(); G.add_edges_from(combinations(range(0, 5), 2)); // Add a five clique G.add_edges_from(combinations(range(5, 10), 2)); // Add another five clique c = set(k_clique_communities(G, 5)); assert_equal(c, {frozenset(range(5)), frozenset(range(5, 10))}); class TestZacharyKarateClub: public object { auto setup() { this->G = xn::karate_club_graph(); auto _check_communities( k, expected) { communities = set(k_clique_communities(this->G, k)); assert_equal(communities, expected); auto test_k2() { // clique percolation with k=2 is just connected components expected = {frozenset(this->G)} this->_check_communities(2, expected); auto test_k3() { comm1 = [0, 1, 2, 3, 7, 8, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 26, 27, 28, 29, 30, 31, 32, 33]; comm2 = [0, 4, 5, 6, 10, 16]; comm3 = [24, 25, 31]; expected = {frozenset(comm1), frozenset(comm2), frozenset(comm3)} this->_check_communities(3, expected); auto test_k4() { expected = {frozenset([0, 1, 2, 3, 7, 13]), frozenset([8, 32, 30, 33]), frozenset([32, 33, 29, 23])} this->_check_communities(4, expected); auto test_k5() { expected = {frozenset([0, 1, 2, 3, 7, 13])} this->_check_communities(5, expected); auto test_k6() { expected = set(); this->_check_communities(6, expected); /// /// @raises(xn::XNetworkError); auto test_bad_k() { list(k_clique_communities(xn::Graph(), 1));
32.970149
80
0.617474
fd524e33a7130d932da525ee7063745d405862df
4,694
swift
Swift
ABLEManager/Sources/Models/PeripheralDevice.swift
ABLEsrls/A-BLEManager
d9d8ea9a70117cb9f5adc669cab334d08bf9fd51
[ "MIT" ]
2
2019-05-14T18:24:31.000Z
2019-07-23T11:23:24.000Z
ABLEManager/Sources/Models/PeripheralDevice.swift
ABLEsrls/ABLEManager
d9d8ea9a70117cb9f5adc669cab334d08bf9fd51
[ "MIT" ]
null
null
null
ABLEManager/Sources/Models/PeripheralDevice.swift
ABLEsrls/ABLEManager
d9d8ea9a70117cb9f5adc669cab334d08bf9fd51
[ "MIT" ]
1
2020-11-11T03:33:10.000Z
2020-11-11T03:33:10.000Z
// // PeripheralDevice.swift // ABLEManager // // Created by Riccardo Paolillo on 02/01/2019. // Copyright © 2019 ABLE. All rights reserved. // import CoreBluetooth import Foundation open class PeripheralDevice: Equatable, Comparable, Hashable, CustomStringConvertible, CustomDebugStringConvertible { public var peripheral: CBPeripheral? public var advData: [String: Any] public var rssi: NSNumber public var services: [CBService] public var characteristics: [CBCharacteristic] init(with peripheral: CBPeripheral, advData: [String: Any] = [String: Any](), rssi: NSNumber = NSNumber()) { self.peripheral = peripheral self.services = peripheral.services ?? [CBService]() self.characteristics = [CBCharacteristic]() self.advData = advData self.rssi = rssi } public var peripheralName: String { if self.name.count > 0 { return self.name } if self.advName.count > 0 { return self.advName } return "" } public var advName: String { if let name = advData["kCBAdvDataLocalName"] as? String { return name } return "" } public var name: String { guard let device = peripheral else { return "" } return device.name ?? "" } public static func ==(lhs: PeripheralDevice, rhs: PeripheralDevice) -> Bool { guard let _ = lhs.peripheral, let _ = rhs.peripheral else { return false } var equals = true equals = equals && (lhs.peripheralName.compare(rhs.peripheralName) == .orderedSame) equals = equals && (lhs.characteristics.count == rhs.characteristics.count) return equals } public static func <(lhs: PeripheralDevice, rhs: PeripheralDevice) -> Bool { let lhsName = lhs.peripheralName let rhsName = rhs.peripheralName switch lhsName.compare(rhsName) { case .orderedDescending: return false case .orderedAscending: return true case .orderedSame: guard let lhsDevice = lhs.peripheral, let rhsDevice = rhs.peripheral else { return false } return lhsDevice.identifier.uuidString < rhsDevice.identifier.uuidString } } public func hash(into hasher: inout Hasher) { guard let device = peripheral else { return } hasher.combine(device.identifier.uuidString) } public var description: String { var res = "DEVICE\n" res.append("\tName: " + (peripheral?.name ?? "") + "\n") res.append("\tADVData: " + advData.representableString + "\n") res.append("\tRSSI: " + "\(rssi)" + "\n") res.append("\n\n") return res } public var debugDescription: String { var res = "DEVICE\n" res.append("\tName: " + (peripheral?.name ?? "") + "\n") res.append("\tADVData: " + advData.representableString + "\n") res.append("\tRSSI: " + "\(rssi)" + "\n") res.append("\tServices: " + services.representableString + "\n") res.append("\tCharacteristics: " + characteristics.representableString + "\n") res.append("\n\n") return res } } public extension Array where Iterator.Element == PeripheralDevice { @discardableResult mutating func appendDistinc(_ device: PeripheralDevice, sorting: Bool=true) -> Bool { var valueAppended = false if contains(device) == false { append(device) valueAppended = true } if valueAppended && sorting { sort() } return valueAppended } @discardableResult mutating func updatePeripheral(_ device: PeripheralDevice, sorting: Bool=true) -> Bool { var valueUpdated = false forEach { let elementUUID = $0.peripheral?.identifier.uuidString ?? "" let deviceUUID = device.peripheral?.identifier.uuidString ?? "" if elementUUID.compare(deviceUUID) == .orderedSame { $0.peripheral = device.peripheral valueUpdated = true } } if valueUpdated && sorting { sort() } return valueUpdated } }
29.522013
117
0.544738
227652bf6f0be1861a3bfd8942feca69dd97172b
4,877
html
HTML
pipermail/antlr-interest/2003-May/003984.html
hpcc-systems/website-antlr3
aa6181595356409f8dc624e54715f56bd10707a8
[ "BSD-3-Clause" ]
null
null
null
pipermail/antlr-interest/2003-May/003984.html
hpcc-systems/website-antlr3
aa6181595356409f8dc624e54715f56bd10707a8
[ "BSD-3-Clause" ]
null
null
null
pipermail/antlr-interest/2003-May/003984.html
hpcc-systems/website-antlr3
aa6181595356409f8dc624e54715f56bd10707a8
[ "BSD-3-Clause" ]
null
null
null
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> <HTML> <HEAD> <TITLE> [antlr-interest] Re: antlr vs. sableCC comparison </TITLE> <LINK REL="Index" HREF="index.html" > <LINK REL="made" HREF="mailto:antlr-interest%40antlr.org?Subject=%5Bantlr-interest%5D%20Re%3A%20antlr%20vs.%20sableCC%20comparison&In-Reply-To=ban11u%2Bcsmu%40eGroups.com"> <META NAME="robots" CONTENT="index,nofollow"> <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> <LINK REL="Previous" HREF="003983.html"> <LINK REL="Next" HREF="003990.html"> </HEAD> <BODY BGCOLOR="#ffffff"> <H1>[antlr-interest] Re: antlr vs. sableCC comparison</H1> <B>Oliver Zeigermann</B> <A HREF="mailto:antlr-interest%40antlr.org?Subject=%5Bantlr-interest%5D%20Re%3A%20antlr%20vs.%20sableCC%20comparison&In-Reply-To=ban11u%2Bcsmu%40eGroups.com" TITLE="[antlr-interest] Re: antlr vs. sableCC comparison">oliver at zeigermann.de </A><BR> <I>Sat May 24 04:19:13 PDT 2003</I> <P><UL> <LI>Previous message: <A HREF="003983.html">[antlr-interest] Re: antlr vs. sableCC comparison </A></li> <LI>Next message: <A HREF="003990.html">[antlr-interest] Re: antlr vs. sableCC comparison </A></li> <LI> <B>Messages sorted by:</B> <a href="date.html#3984">[ date ]</a> <a href="thread.html#3984">[ thread ]</a> <a href="subject.html#3984">[ subject ]</a> <a href="author.html#3984">[ author ]</a> </LI> </UL> <HR> <!--beginarticle--> <PRE>--- In <A HREF="http://www.antlr.org/mailman/listinfo/antlr-interest">antlr-interest at yahoogroups.com</A>, &quot;lgcraymer&quot; &lt;<A HREF="http://www.antlr.org/mailman/listinfo/antlr-interest">lgc at m...</A>&gt; wrote: &gt;<i> My reaction to SableCC has always been, &quot;Why?&quot;, and the answer </I>&gt;<i> always seems to be &quot;it was a good excuse for Gagnon to have fun </I>&gt;<i> writing a master's thesis&quot;. It has less functionality than either </I>&gt;<i> ANTLR or JavaCC and was introduced after both were available. </I> At the time he wrote SableCC, only few *LALR* generators for Java were around and it was yet undecided which would be the best, so he just tried to do something good. As you said, both ANTLR or JavaCC are *LL*. &gt;<i> Predicated LL(k) (ANTLR) parsing can handle any context-free </I>&gt;<i> grammar, but LALR does not and modern versions of yacc support GLR </I>&gt;<i> parsing to get past the LALR limitation. </I> I think you mix something up here (or do I?). Surely neither YACC nor SableCC nor ANTLR can handle all context free grammars! What you wanted to say is any context free language, i.e. a language that can be described by a context free grammar, can also be described by an ANTLR grammar, right? Anyway, please tell more about GLR. How does it work? Personally, I am fan of ANTLR and LL, but still, there are some good reasons to choose bottom up methods. Some purists like the idea of describing a language completely by the means of a most human readable and thus natural (hopefully context free) grammar. To use such grammars with LL or LR methods you will have to modify them. It turns out that LR methods need less modification of the grammar than LL, which is considered valuable by some pepole. &gt;<i> ANTLR's tree grammar approach is more powerful than the visitor </I>&gt;<i> approach. In fact, a visitor can be expressed as a special ANTLR </I>&gt;<i> tree (I've not tested this code, but it should work): </I>&gt;<i> </I>&gt;<i> visitor </I>&gt;<i> : </I>&gt;<i> ( visit )+ </I>&gt;<i> ; </I>&gt;<i> </I>&gt;<i> visit </I>&gt;<i> : </I>&gt;<i> ( . </I>&gt;<i> | #( . ( visit )+ ) </I>&gt;<i> ) </I>&gt;<i> ; </I> I do not think that will work (maybe it does). How to decide between first and second alternative of rule visit? This will do, I think (visitor rule unchanged): visit : #( . ( visit )* ) ; Oliver Your use of Yahoo! Groups is subject to <A HREF="http://docs.yahoo.com/info/terms/">http://docs.yahoo.com/info/terms/</A> </PRE> <!--endarticle--> <HR> <P><UL> <!--threads--> <LI>Previous message: <A HREF="003983.html">[antlr-interest] Re: antlr vs. sableCC comparison </A></li> <LI>Next message: <A HREF="003990.html">[antlr-interest] Re: antlr vs. sableCC comparison </A></li> <LI> <B>Messages sorted by:</B> <a href="date.html#3984">[ date ]</a> <a href="thread.html#3984">[ thread ]</a> <a href="subject.html#3984">[ subject ]</a> <a href="author.html#3984">[ author ]</a> </LI> </UL> <hr> <a href="http://www.antlr.org/mailman/listinfo/antlr-interest">More information about the antlr-interest mailing list</a><br> </body></html>
40.305785
229
0.650195
604d9ab423ebfd7e83846b187a7e5e3e19e13861
315
html
HTML
templates/login.html
geoffreyvd/Offerte
3963ceea424b30bec8d05adba63e5c05a348aa82
[ "FSFAP" ]
4
2018-12-05T20:09:39.000Z
2022-01-23T17:03:36.000Z
templates/login.html
geoffreyvd/Offerte
3963ceea424b30bec8d05adba63e5c05a348aa82
[ "FSFAP" ]
null
null
null
templates/login.html
geoffreyvd/Offerte
3963ceea424b30bec8d05adba63e5c05a348aa82
[ "FSFAP" ]
null
null
null
<form class="form-signin"> <h2 class="form-signin-heading">Voer wachtwoord in</h2> <br> <input type="password" ng-model="paswoord" class="form-control" placeholder="Wachtwoord"> <br> <button class="btn btn-primary btn-block" ng-click="checkPass(paswoord);" type="submit">Log in</button> </form>
45
108
0.68254
9c6900155ed24f8fe529649efec319023432f5c4
715,938
js
JavaScript
lib/schemas.js
toptal/structured-data-testing-tool
0610ba0d42c5b90a26baa8daf8b24191ebbd4531
[ "0BSD" ]
null
null
null
lib/schemas.js
toptal/structured-data-testing-tool
0610ba0d42c5b90a26baa8daf8b24191ebbd4531
[ "0BSD" ]
1
2022-01-22T23:25:04.000Z
2022-01-22T23:25:04.000Z
lib/schemas.js
toptal/structured-data-testing-tool
0610ba0d42c5b90a26baa8daf8b24191ebbd4531
[ "0BSD" ]
1
2022-02-10T19:00:27.000Z
2022-02-10T19:00:27.000Z
const text = `{\n "Thing": {\n "name": "Thing",\n "description": "The most generic type of item.",\n "depth": 0\n },\n "Action": {\n "name": "Action",\n "description": "An action performed by a direct agent and indirect participants upon a direct object...",\n "depth": 1,\n "subClassOf": "Thing"\n },\n "AchieveAction": {\n "name": "AchieveAction",\n "description": "The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process.",\n "depth": 2,\n "subClassOf": "Action"\n },\n "LoseAction": {\n "name": "LoseAction",\n "description": "The act of being defeated in a competitive activity.",\n "depth": 3,\n "subClassOf": "AchieveAction"\n },\n "TieAction": {\n "name": "TieAction",\n "description": "The act of reaching a draw in a competitive activity.",\n "depth": 3,\n "subClassOf": "AchieveAction"\n },\n "WinAction": {\n "name": "WinAction",\n "description": "The act of achieving victory in a competitive activity.",\n "depth": 3,\n "subClassOf": "AchieveAction"\n },\n "AssessAction": {\n "name": "AssessAction",\n "description": "The act of forming one's opinion, reaction or sentiment.",\n "depth": 2,\n "subClassOf": "Action"\n },\n "ChooseAction": {\n "name": "ChooseAction",\n "description": "The act of expressing a preference from a set of options or a large or unbounded set of choices/options.",\n "depth": 3,\n "subClassOf": "AssessAction"\n },\n "VoteAction": {\n "name": "VoteAction",\n "description": "The act of expressing a preference from a fixed/finite/structured set of choices/options.",\n "depth": 4,\n "subClassOf": "ChooseAction"\n },\n "IgnoreAction": {\n "name": "IgnoreAction",\n "description": "The act of intentionally disregarding the object. An agent ignores an object.",\n "depth": 3,\n "subClassOf": "AssessAction"\n },\n "ReactAction": {\n "name": "ReactAction",\n "description": "The act of responding instinctively and emotionally to an object, expressing a sentiment.",\n "depth": 3,\n "subClassOf": "AssessAction"\n },\n "AgreeAction": {\n "name": "AgreeAction",\n "description": "The act of expressing a consistency of opinion with the object...",\n "depth": 4,\n "subClassOf": "ReactAction"\n },\n "DisagreeAction": {\n "name": "DisagreeAction",\n "description": "The act of expressing a difference of opinion with the object...",\n "depth": 4,\n "subClassOf": "ReactAction"\n },\n "DislikeAction": {\n "name": "DislikeAction",\n "description": "The act of expressing a negative sentiment about the object. An agent dislikes an object (a proposition, topic or theme) with participants.",\n "depth": 4,\n "subClassOf": "ReactAction"\n },\n "EndorseAction": {\n "name": "EndorseAction",\n "description": "An agent approves/certifies/likes/supports/sanction an object.",\n "depth": 4,\n "subClassOf": "ReactAction"\n },\n "LikeAction": {\n "name": "LikeAction",\n "description": "The act of expressing a positive sentiment about the object. An agent likes an object (a proposition, topic or theme) with participants.",\n "depth": 4,\n "subClassOf": "ReactAction"\n },\n "WantAction": {\n "name": "WantAction",\n "description": "The act of expressing a desire about the object. An agent wants an object.",\n "depth": 4,\n "subClassOf": "ReactAction"\n },\n "ReviewAction": {\n "name": "ReviewAction",\n "description": "The act of producing a balanced opinion about the object for an audience...",\n "depth": 3,\n "subClassOf": "AssessAction"\n },\n "ConsumeAction": {\n "name": "ConsumeAction",\n "description": "The act of ingesting information/resources/food.",\n "depth": 2,\n "subClassOf": "Action"\n },\n "DrinkAction": {\n "name": "DrinkAction",\n "description": "The act of swallowing liquids.",\n "depth": 3,\n "subClassOf": "ConsumeAction"\n },\n "EatAction": {\n "name": "EatAction",\n "description": "The act of swallowing solid objects.",\n "depth": 3,\n "subClassOf": "ConsumeAction"\n },\n "InstallAction": {\n "name": "InstallAction",\n "description": "The act of installing an application.",\n "depth": 3,\n "subClassOf": "ConsumeAction"\n },\n "ListenAction": {\n "name": "ListenAction",\n "description": "The act of consuming audio content.",\n "depth": 3,\n "subClassOf": "ConsumeAction"\n },\n "ReadAction": {\n "name": "ReadAction",\n "description": "The act of consuming written content.",\n "depth": 3,\n "subClassOf": "ConsumeAction"\n },\n "UseAction": {\n "name": "UseAction",\n "description": "The act of applying an object to its intended purpose.",\n "depth": 3,\n "subClassOf": "ConsumeAction"\n },\n "WearAction": {\n "name": "WearAction",\n "description": "The act of dressing oneself in clothing.",\n "depth": 4,\n "subClassOf": "UseAction"\n },\n "ViewAction": {\n "name": "ViewAction",\n "description": "The act of consuming static visual content.",\n "depth": 3,\n "subClassOf": "ConsumeAction"\n },\n "WatchAction": {\n "name": "WatchAction",\n "description": "The act of consuming dynamic/moving visual content.",\n "depth": 3,\n "subClassOf": "ConsumeAction"\n },\n "ControlAction": {\n "name": "ControlAction",\n "description": "An agent controls a device or application.",\n "depth": 2,\n "subClassOf": "Action"\n },\n "ActivateAction": {\n "name": "ActivateAction",\n "description": "The act of starting or activating a device or application (e.g...",\n "depth": 3,\n "subClassOf": "ControlAction"\n },\n "DeactivateAction": {\n "name": "DeactivateAction",\n "description": "The act of stopping or deactivating a device or application (e...",\n "depth": 3,\n "subClassOf": "ControlAction"\n },\n "ResumeAction": {\n "name": "ResumeAction",\n "description": "The act of resuming a device or application which was formerly paused (e...",\n "depth": 3,\n "subClassOf": "ControlAction"\n },\n "SuspendAction": {\n "name": "SuspendAction",\n "description": "The act of momentarily pausing a device or application (e.g. pause music playback or pause a timer).",\n "depth": 3,\n "subClassOf": "ControlAction"\n },\n "CreateAction": {\n "name": "CreateAction",\n "description": "The act of deliberately creating/producing/generating/building a result out of the agent.",\n "depth": 2,\n "subClassOf": "Action"\n },\n "CookAction": {\n "name": "CookAction",\n "description": "The act of producing/preparing food.",\n "depth": 3,\n "subClassOf": "CreateAction"\n },\n "DrawAction": {\n "name": "DrawAction",\n "description": "The act of producing a visual/graphical representation of an object, typically with a pen/pencil and paper as instruments.",\n "depth": 3,\n "subClassOf": "CreateAction"\n },\n "FilmAction": {\n "name": "FilmAction",\n "description": "The act of capturing sound and moving images on film, video, or digitally.",\n "depth": 3,\n "subClassOf": "CreateAction"\n },\n "PaintAction": {\n "name": "PaintAction",\n "description": "The act of producing a painting, typically with paint and canvas as instruments.",\n "depth": 3,\n "subClassOf": "CreateAction"\n },\n "PhotographAction": {\n "name": "PhotographAction",\n "description": "The act of capturing still images of objects using a camera.",\n "depth": 3,\n "subClassOf": "CreateAction"\n },\n "WriteAction": {\n "name": "WriteAction",\n "description": "The act of authoring written creative content.",\n "depth": 3,\n "subClassOf": "CreateAction"\n },\n "FindAction": {\n "name": "FindAction",\n "description": "The act of finding an object.\\n\\nRelated actions:\\n\\n\\nSearchAction: FindAction is generally lead by a SearchAction, but not necessarily.",\n "depth": 2,\n "subClassOf": "Action"\n },\n "CheckAction": {\n "name": "CheckAction",\n "description": "An agent inspects, determines, investigates, inquires, or examines an object's accuracy, quality, condition, or state.",\n "depth": 3,\n "subClassOf": "FindAction"\n },\n "DiscoverAction": {\n "name": "DiscoverAction",\n "description": "The act of discovering/finding an object.",\n "depth": 3,\n "subClassOf": "FindAction"\n },\n "TrackAction": {\n "name": "TrackAction",\n "description": "An agent tracks an object for updates.\\n\\nRelated actions:\\n\\n\\nFollowAction: Unlike FollowAction, TrackAction refers to the interest on the location of innanimates objects...",\n "depth": 3,\n "subClassOf": "FindAction"\n },\n "InteractAction": {\n "name": "InteractAction",\n "description": "The act of interacting with another person or organization.",\n "depth": 2,\n "subClassOf": "Action"\n },\n "BefriendAction": {\n "name": "BefriendAction",\n "description": "The act of forming a personal connection with someone (object) mutually/bidirectionally/symmetrically...",\n "depth": 3,\n "subClassOf": "InteractAction"\n },\n "CommunicateAction": {\n "name": "CommunicateAction",\n "description": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation.",\n "depth": 3,\n "subClassOf": "InteractAction"\n },\n "AskAction": {\n "name": "AskAction",\n "description": "The act of posing a question / favor to someone.\\n\\nRelated actions:\\n\\n\\nReplyAction: Appears generally as a response to AskAction.",\n "depth": 4,\n "subClassOf": "CommunicateAction"\n },\n "CheckInAction": {\n "name": "CheckInAction",\n "description": "The act of an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e...",\n "depth": 4,\n "subClassOf": "CommunicateAction"\n },\n "CheckOutAction": {\n "name": "CheckOutAction",\n "description": "The act of an agent communicating (service provider, social media, etc) their departure of a previously reserved service (e...",\n "depth": 4,\n "subClassOf": "CommunicateAction"\n },\n "CommentAction": {\n "name": "CommentAction",\n "description": "The act of generating a comment about a subject.",\n "depth": 4,\n "subClassOf": "CommunicateAction"\n },\n "InformAction": {\n "name": "InformAction",\n "description": "The act of notifying someone of information pertinent to them, with no expectation of a response.",\n "depth": 4,\n "subClassOf": "CommunicateAction"\n },\n "ConfirmAction": {\n "name": "ConfirmAction",\n "description": "The act of notifying someone that a future event/action is going to happen as expected...",\n "depth": 5,\n "subClassOf": "InformAction"\n },\n "RsvpAction": {\n "name": "RsvpAction",\n "description": "The act of notifying an event organizer as to whether you expect to attend the event.",\n "depth": 5,\n "subClassOf": "InformAction"\n },\n "InviteAction": {\n "name": "InviteAction",\n "description": "The act of asking someone to attend an event. Reciprocal of RsvpAction.",\n "depth": 4,\n "subClassOf": "CommunicateAction"\n },\n "ReplyAction": {\n "name": "ReplyAction",\n "description": "The act of responding to a question/message asked/sent by the object...",\n "depth": 4,\n "subClassOf": "CommunicateAction"\n },\n "ShareAction": {\n "name": "ShareAction",\n "description": "The act of distributing content to people for their amusement or edification.",\n "depth": 4,\n "subClassOf": "CommunicateAction"\n },\n "FollowAction": {\n "name": "FollowAction",\n "description": "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates polled from...",\n "depth": 3,\n "subClassOf": "InteractAction"\n },\n "JoinAction": {\n "name": "JoinAction",\n "description": "An agent joins an event/group with participants/friends at a location...",\n "depth": 3,\n "subClassOf": "InteractAction"\n },\n "LeaveAction": {\n "name": "LeaveAction",\n "description": "An agent leaves an event / group with participants/friends at a location...",\n "depth": 3,\n "subClassOf": "InteractAction"\n },\n "MarryAction": {\n "name": "MarryAction",\n "description": "The act of marrying a person.",\n "depth": 3,\n "subClassOf": "InteractAction"\n },\n "RegisterAction": {\n "name": "RegisterAction",\n "description": "The act of registering to be a user of a service, product or web page...",\n "depth": 3,\n "subClassOf": "InteractAction"\n },\n "SubscribeAction": {\n "name": "SubscribeAction",\n "description": "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates pushed to...",\n "depth": 3,\n "subClassOf": "InteractAction"\n },\n "UnRegisterAction": {\n "name": "UnRegisterAction",\n "description": "The act of un-registering from a service.\\n\\nRelated actions:\\n\\n\\nRegisterAction: antonym of UnRegisterAction...",\n "depth": 3,\n "subClassOf": "InteractAction"\n },\n "MoveAction": {\n "name": "MoveAction",\n "description": "The act of an agent relocating to a place.\\n\\nRelated actions:\\n\\n\\nTransferAction: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.",\n "depth": 2,\n "subClassOf": "Action"\n },\n "ArriveAction": {\n "name": "ArriveAction",\n "description": "The act of arriving at a place. An agent arrives at a destination from a fromLocation, optionally with participants.",\n "depth": 3,\n "subClassOf": "MoveAction"\n },\n "DepartAction": {\n "name": "DepartAction",\n "description": "The act of departing from a place. An agent departs from an fromLocation for a destination, optionally with participants.",\n "depth": 3,\n "subClassOf": "MoveAction"\n },\n "TravelAction": {\n "name": "TravelAction",\n "description": "The act of traveling from an fromLocation to a destination by a specified mode of transport, optionally with participants.",\n "depth": 3,\n "subClassOf": "MoveAction"\n },\n "OrganizeAction": {\n "name": "OrganizeAction",\n "description": "The act of manipulating/administering/supervising/controlling one or more objects.",\n "depth": 2,\n "subClassOf": "Action"\n },\n "AllocateAction": {\n "name": "AllocateAction",\n "description": "The act of organizing tasks/objects/events by associating resources to it.",\n "depth": 3,\n "subClassOf": "OrganizeAction"\n },\n "AcceptAction": {\n "name": "AcceptAction",\n "description": "The act of committing to/adopting an object.\\n\\nRelated actions:\\n\\n\\nRejectAction: The antonym of AcceptAction.",\n "depth": 4,\n "subClassOf": "AllocateAction"\n },\n "AssignAction": {\n "name": "AssignAction",\n "description": "The act of allocating an action/event/task to some destination (someone or something).",\n "depth": 4,\n "subClassOf": "AllocateAction"\n },\n "AuthorizeAction": {\n "name": "AuthorizeAction",\n "description": "The act of granting permission to an object.",\n "depth": 4,\n "subClassOf": "AllocateAction"\n },\n "RejectAction": {\n "name": "RejectAction",\n "description": "The act of rejecting to/adopting an object.\\n\\nRelated actions:\\n\\n\\nAcceptAction: The antonym of RejectAction.",\n "depth": 4,\n "subClassOf": "AllocateAction"\n },\n "ApplyAction": {\n "name": "ApplyAction",\n "description": "The act of registering to an organization/service without the guarantee to receive it...",\n "depth": 3,\n "subClassOf": "OrganizeAction"\n },\n "BookmarkAction": {\n "name": "BookmarkAction",\n "description": "An agent bookmarks/flags/labels/tags/marks an object.",\n "depth": 3,\n "subClassOf": "OrganizeAction"\n },\n "PlanAction": {\n "name": "PlanAction",\n "description": "The act of planning the execution of an event/task/action/reservation/plan to a future date.",\n "depth": 3,\n "subClassOf": "OrganizeAction"\n },\n "CancelAction": {\n "name": "CancelAction",\n "description": "The act of asserting that a future event/action is no longer going to happen...",\n "depth": 4,\n "subClassOf": "PlanAction"\n },\n "ReserveAction": {\n "name": "ReserveAction",\n "description": "Reserving a concrete object.\\n\\nRelated actions:\\n\\n\\nScheduleAction: Unlike ScheduleAction, ReserveAction reserves concrete objects (e...",\n "depth": 4,\n "subClassOf": "PlanAction"\n },\n "ScheduleAction": {\n "name": "ScheduleAction",\n "description": "Scheduling future actions, events, or tasks.\\n\\nRelated actions:\\n\\n\\nReserveAction: Unlike ReserveAction, ScheduleAction allocates future actions (e...",\n "depth": 4,\n "subClassOf": "PlanAction"\n },\n "PlayAction": {\n "name": "PlayAction",\n "description": "The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise...",\n "depth": 2,\n "subClassOf": "Action"\n },\n "ExerciseAction": {\n "name": "ExerciseAction",\n "description": "The act of participating in exertive activity for the purposes of improving health and fitness.",\n "depth": 3,\n "subClassOf": "PlayAction"\n },\n "PerformAction": {\n "name": "PerformAction",\n "description": "The act of participating in performance arts.",\n "depth": 3,\n "subClassOf": "PlayAction"\n },\n "SearchAction": {\n "name": "SearchAction",\n "description": "The act of searching for an object.\\n\\nRelated actions:\\n\\n\\nFindAction: SearchAction generally leads to a FindAction, but not necessarily.",\n "depth": 2,\n "subClassOf": "Action"\n },\n "TradeAction": {\n "name": "TradeAction",\n "description": "The act of participating in an exchange of goods and services for monetary compensation...",\n "depth": 2,\n "subClassOf": "Action"\n },\n "BuyAction": {\n "name": "BuyAction",\n "description": "The act of giving money to a seller in exchange for goods or services rendered...",\n "depth": 3,\n "subClassOf": "TradeAction"\n },\n "DonateAction": {\n "name": "DonateAction",\n "description": "The act of providing goods, services, or money without compensation, often for philanthropic reasons.",\n "depth": 3,\n "subClassOf": "TradeAction"\n },\n "OrderAction": {\n "name": "OrderAction",\n "description": "An agent orders an object/product/service to be delivered/sent.",\n "depth": 3,\n "subClassOf": "TradeAction"\n },\n "PayAction": {\n "name": "PayAction",\n "description": "An agent pays a price to a participant.",\n "depth": 3,\n "subClassOf": "TradeAction"\n },\n "PreOrderAction": {\n "name": "PreOrderAction",\n "description": "An agent orders a (not yet released) object/product/service to be delivered/sent.",\n "depth": 3,\n "subClassOf": "TradeAction"\n },\n "QuoteAction": {\n "name": "QuoteAction",\n "description": "An agent quotes/estimates/appraises an object/product/service with a price at a location/store.",\n "depth": 3,\n "subClassOf": "TradeAction"\n },\n "RentAction": {\n "name": "RentAction",\n "description": "The act of giving money in return for temporary use, but not ownership, of an object such as a vehicle or property...",\n "depth": 3,\n "subClassOf": "TradeAction"\n },\n "SellAction": {\n "name": "SellAction",\n "description": "The act of taking money from a buyer in exchange for goods or services rendered...",\n "depth": 3,\n "subClassOf": "TradeAction"\n },\n "TipAction": {\n "name": "TipAction",\n "description": "The act of giving money voluntarily to a beneficiary in recognition of services rendered.",\n "depth": 3,\n "subClassOf": "TradeAction"\n },\n "TransferAction": {\n "name": "TransferAction",\n "description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another.",\n "depth": 2,\n "subClassOf": "Action"\n },\n "BorrowAction": {\n "name": "BorrowAction",\n "description": "The act of obtaining an object under an agreement to return it at a later date...",\n "depth": 3,\n "subClassOf": "TransferAction"\n },\n "DownloadAction": {\n "name": "DownloadAction",\n "description": "The act of downloading an object.",\n "depth": 3,\n "subClassOf": "TransferAction"\n },\n "GiveAction": {\n "name": "GiveAction",\n "description": "The act of transferring ownership of an object to a destination...",\n "depth": 3,\n "subClassOf": "TransferAction"\n },\n "LendAction": {\n "name": "LendAction",\n "description": "The act of providing an object under an agreement that it will be returned at a later date...",\n "depth": 3,\n "subClassOf": "TransferAction"\n },\n "MoneyTransfer": {\n "name": "MoneyTransfer",\n "description": "The act of transferring money from one place to another place...",\n "depth": 3,\n "subClassOf": "TransferAction"\n },\n "ReceiveAction": {\n "name": "ReceiveAction",\n "description": "The act of physically/electronically taking delivery of an object thathas been transferred from an origin to a destination...",\n "depth": 3,\n "subClassOf": "TransferAction"\n },\n "ReturnAction": {\n "name": "ReturnAction",\n "description": "The act of returning to the origin that which was previously received (concrete objects) or taken (ownership).",\n "depth": 3,\n "subClassOf": "TransferAction"\n },\n "SendAction": {\n "name": "SendAction",\n "description": "The act of physically/electronically dispatching an object for transfer from an origin to a destination...",\n "depth": 3,\n "subClassOf": "TransferAction"\n },\n "TakeAction": {\n "name": "TakeAction",\n "description": "The act of gaining ownership of an object from an origin. Reciprocal of GiveAction...",\n "depth": 3,\n "subClassOf": "TransferAction"\n },\n "UpdateAction": {\n "name": "UpdateAction",\n "description": "The act of managing by changing/editing the state of the object.",\n "depth": 2,\n "subClassOf": "Action"\n },\n "AddAction": {\n "name": "AddAction",\n "description": "The act of editing by adding an object to a collection.",\n "depth": 3,\n "subClassOf": "UpdateAction"\n },\n "InsertAction": {\n "name": "InsertAction",\n "description": "The act of adding at a specific location in an ordered collection.",\n "depth": 4,\n "subClassOf": "AddAction"\n },\n "AppendAction": {\n "name": "AppendAction",\n "description": "The act of inserting at the end if an ordered collection.",\n "depth": 5,\n "subClassOf": "InsertAction"\n },\n "PrependAction": {\n "name": "PrependAction",\n "description": "The act of inserting at the beginning if an ordered collection.",\n "depth": 5,\n "subClassOf": "InsertAction"\n },\n "DeleteAction": {\n "name": "DeleteAction",\n "description": "The act of editing a recipient by removing one of its objects.",\n "depth": 3,\n "subClassOf": "UpdateAction"\n },\n "ReplaceAction": {\n "name": "ReplaceAction",\n "description": "The act of editing a recipient by replacing an old object with a new object.",\n "depth": 3,\n "subClassOf": "UpdateAction"\n },\n "CreativeWork": {\n "name": "CreativeWork",\n "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",\n "depth": 1,\n "subClassOf": "Thing"\n },\n "3DModel": {\n "name": "3DModel",\n "description": "A 3D model represents some kind of 3D content, which may have encodings in one or more MediaObjects...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "ArchiveComponent": {\n "name": "ArchiveComponent",\n "description": "An intangible type to be applied to any archive content, carrying with it a set of properties required to describe archival items and collections.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Article": {\n "name": "Article",\n "description": "An article, such as a news article or piece of investigative report...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "AdvertiserContentArticle": {\n "name": "AdvertiserContentArticle",\n "description": "An Article that an external entity has paid to place or to produce to its specifications...",\n "depth": 3,\n "subClassOf": "Article"\n },\n "NewsArticle": {\n "name": "NewsArticle",\n "description": "A NewsArticle is an article whose content reports news, or provides background context and supporting materials for understanding the news...",\n "depth": 3,\n "subClassOf": "Article"\n },\n "AnalysisNewsArticle": {\n "name": "AnalysisNewsArticle",\n "description": "An AnalysisNewsArticle is a NewsArticle that, while based on factual reporting, incorporates the expertise of the author/producer, offering interpretations and conclusions.",\n "depth": 4,\n "subClassOf": "NewsArticle"\n },\n "AskPublicNewsArticle": {\n "name": "AskPublicNewsArticle",\n "description": "A NewsArticle expressing an open call by a NewsMediaOrganization asking the public for input, insights, clarifications, anecdotes, documentation, etc...",\n "depth": 4,\n "subClassOf": "NewsArticle"\n },\n "BackgroundNewsArticle": {\n "name": "BackgroundNewsArticle",\n "description": "A NewsArticle providing historical context, definition and detail on a specific topic (aka \\"explainer\\" or \\"backgrounder\\")...",\n "depth": 4,\n "subClassOf": "NewsArticle"\n },\n "OpinionNewsArticle": {\n "name": "OpinionNewsArticle",\n "description": "An OpinionNewsArticle is a NewsArticle that primarily expresses opinions rather than journalistic reporting of news and events...",\n "depth": 4,\n "subClassOf": "NewsArticle"\n },\n "ReportageNewsArticle": {\n "name": "ReportageNewsArticle",\n "description": "The ReportageNewsArticle type is a subtype of NewsArticle representing\\n news articles which are the result of journalistic news reporting conventions...",\n "depth": 4,\n "subClassOf": "NewsArticle"\n },\n "ReviewNewsArticle": {\n "name": "ReviewNewsArticle",\n "description": "A NewsArticle and CriticReview providing a professional critic's assessment of a service, product, performance, or artistic or literary work.",\n "depth": 4,\n "subClassOf": "NewsArticle"\n },\n "Report": {\n "name": "Report",\n "description": "A Report generated by governmental or non-governmental organization.",\n "depth": 3,\n "subClassOf": "Article"\n },\n "SatiricalArticle": {\n "name": "SatiricalArticle",\n "description": "An Article whose content is primarily [satirical] in nature, i...",\n "depth": 3,\n "subClassOf": "Article"\n },\n "ScholarlyArticle": {\n "name": "ScholarlyArticle",\n "description": "A scholarly article.",\n "depth": 3,\n "subClassOf": "Article"\n },\n "MedicalScholarlyArticle": {\n "name": "MedicalScholarlyArticle",\n "description": "A scholarly article in the medical domain.",\n "depth": 4,\n "subClassOf": "ScholarlyArticle"\n },\n "SocialMediaPosting": {\n "name": "SocialMediaPosting",\n "description": "A post to a social media platform, including blog posts, tweets, Facebook posts, etc.",\n "depth": 3,\n "subClassOf": "Article"\n },\n "BlogPosting": {\n "name": "BlogPosting",\n "description": "A blog post.",\n "depth": 4,\n "subClassOf": "SocialMediaPosting"\n },\n "LiveBlogPosting": {\n "name": "LiveBlogPosting",\n "description": "A blog post intended to provide a rolling textual coverage of an ongoing event through continuous updates.",\n "depth": 5,\n "subClassOf": "BlogPosting"\n },\n "DiscussionForumPosting": {\n "name": "DiscussionForumPosting",\n "description": "A posting to a discussion forum.",\n "depth": 4,\n "subClassOf": "SocialMediaPosting"\n },\n "TechArticle": {\n "name": "TechArticle",\n "description": "A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc.",\n "depth": 3,\n "subClassOf": "Article"\n },\n "APIReference": {\n "name": "APIReference",\n "description": "Reference documentation for application programming interfaces (APIs).",\n "depth": 4,\n "subClassOf": "TechArticle"\n },\n "Atlas": {\n "name": "Atlas",\n "description": "A collection or bound volume of maps, charts, plates or tables, physical or in media form illustrating any subject.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Blog": {\n "name": "Blog",\n "description": "A blog.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Book": {\n "name": "Book",\n "description": "A book.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Audiobook": {\n "name": "Audiobook",\n "description": "An audiobook.",\n "depth": 3,\n "subClassOf": "Book"\n },\n "Chapter": {\n "name": "Chapter",\n "description": "One of the sections into which a book is divided. A chapter usually has a section number or a name.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Claim": {\n "name": "Claim",\n "description": "A Claim in Schema.org represents a specific, factually-oriented claim that could be the itemReviewed in a ClaimReview...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Clip": {\n "name": "Clip",\n "description": "A short TV or radio program or a segment/part of a program.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "MovieClip": {\n "name": "MovieClip",\n "description": "A short segment/part of a movie.",\n "depth": 3,\n "subClassOf": "Clip"\n },\n "RadioClip": {\n "name": "RadioClip",\n "description": "A short radio program or a segment/part of a radio program.",\n "depth": 3,\n "subClassOf": "Clip"\n },\n "TVClip": {\n "name": "TVClip",\n "description": "A short TV program or a segment/part of a TV program.",\n "depth": 3,\n "subClassOf": "Clip"\n },\n "VideoGameClip": {\n "name": "VideoGameClip",\n "description": "A short segment/part of a video game.",\n "depth": 3,\n "subClassOf": "Clip"\n },\n "Code": {\n "name": "Code",\n "description": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Collection": {\n "name": "Collection",\n "description": "A created collection of Creative Works or other artefacts.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "ComicStory": {\n "name": "ComicStory",\n "description": "The term \\"story\\" is any indivisible, re-printable\\n unit of a comic, including the interior stories, covers, and backmatter...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "ComicCoverArt": {\n "name": "ComicCoverArt",\n "description": "The artwork on the cover of a comic.",\n "depth": 3,\n "subClassOf": "ComicStory"\n },\n "Comment": {\n "name": "Comment",\n "description": "A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the text property, and its topic via about, properties shared with all CreativeWorks.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Answer": {\n "name": "Answer",\n "description": "An answer offered to a question; perhaps correct, perhaps opinionated or wrong.",\n "depth": 3,\n "subClassOf": "Comment"\n },\n "CorrectionComment": {\n "name": "CorrectionComment",\n "description": "A comment that corrects CreativeWork.",\n "depth": 3,\n "subClassOf": "Comment"\n },\n "Conversation": {\n "name": "Conversation",\n "description": "One or more messages between organizations or people on a particular topic...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Course": {\n "name": "Course",\n "description": "A description of an educational course which may be offered as distinct instances at which take place at different times or take place at different locations, or be offered through different media or modes of study...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "CreativeWorkSeason": {\n "name": "CreativeWorkSeason",\n "description": "A media season e.g. tv, radio, video game etc.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "PodcastSeason": {\n "name": "PodcastSeason",\n "description": "A single season of a podcast. Many podcasts do not break down into separate seasons...",\n "depth": 3,\n "subClassOf": "CreativeWorkSeason"\n },\n "RadioSeason": {\n "name": "RadioSeason",\n "description": "Season dedicated to radio broadcast and associated online delivery.",\n "depth": 3,\n "subClassOf": "CreativeWorkSeason"\n },\n "TVSeason": {\n "name": "TVSeason",\n "description": "Season dedicated to TV broadcast and associated online delivery.",\n "depth": 3,\n "subClassOf": "CreativeWorkSeason"\n },\n "CreativeWorkSeries": {\n "name": "CreativeWorkSeries",\n "description": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "BookSeries": {\n "name": "BookSeries",\n "description": "A series of books. Included books can be indicated with the hasPart property.",\n "depth": 3,\n "subClassOf": "CreativeWorkSeries"\n },\n "MovieSeries": {\n "name": "MovieSeries",\n "description": "A series of movies. Included movies can be indicated with the hasPart property.",\n "depth": 3,\n "subClassOf": "CreativeWorkSeries"\n },\n "Periodical": {\n "name": "Periodical",\n "description": "A publication in any medium issued in successive parts bearing numerical or chronological designations and intended, such as a magazine, scholarly journal, or newspaper to continue indefinitely...",\n "depth": 3,\n "subClassOf": "CreativeWorkSeries"\n },\n "ComicSeries": {\n "name": "ComicSeries",\n "description": "A sequential publication of comic stories under a\\n unifying title, for example \\"The Amazing Spider-Man\\" or \\"Groo the\\n Wanderer\\".",\n "depth": 4,\n "subClassOf": "Periodical"\n },\n "Newspaper": {\n "name": "Newspaper",\n "description": "A publication containing information about varied topics that are pertinent to general information, a geographic area, or a specific subject matter (i...",\n "depth": 4,\n "subClassOf": "Periodical"\n },\n "PodcastSeries": {\n "name": "PodcastSeries",\n "description": "A podcast is an episodic series of digital audio or video files which a user can download and listen to.",\n "depth": 3,\n "subClassOf": "CreativeWorkSeries"\n },\n "RadioSeries": {\n "name": "RadioSeries",\n "description": "CreativeWorkSeries dedicated to radio broadcast and associated online delivery.",\n "depth": 3,\n "subClassOf": "CreativeWorkSeries"\n },\n "TVSeries": {\n "name": "TVSeries",\n "description": "CreativeWorkSeries dedicated to TV broadcast and associated online delivery.",\n "depth": 3,\n "subClassOf": "CreativeWorkSeries"\n },\n "VideoGameSeries": {\n "name": "VideoGameSeries",\n "description": "A video game series.",\n "depth": 3,\n "subClassOf": "CreativeWorkSeries"\n },\n "DataCatalog": {\n "name": "DataCatalog",\n "description": "A collection of datasets.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Dataset": {\n "name": "Dataset",\n "description": "A body of structured information describing some topic(s) of interest.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "DataFeed": {\n "name": "DataFeed",\n "description": "A single feed providing structured information about one or more entities or topics.",\n "depth": 3,\n "subClassOf": "Dataset"\n },\n "CompleteDataFeed": {\n "name": "CompleteDataFeed",\n "description": "A CompleteDataFeed is a DataFeed whose standard representation includes content for every item currently in the feed...",\n "depth": 4,\n "subClassOf": "DataFeed"\n },\n "DefinedTermSet": {\n "name": "DefinedTermSet",\n "description": "A set of defined terms for example a set of categories or a classification scheme, a glossary, dictionary or enumeration.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "CategoryCodeSet": {\n "name": "CategoryCodeSet",\n "description": "A set of Category Code values.",\n "depth": 3,\n "subClassOf": "DefinedTermSet"\n },\n "Diet": {\n "name": "Diet",\n "description": "A strategy of regulating the intake of food to achieve or maintain a specific health-related goal.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "DigitalDocument": {\n "name": "DigitalDocument",\n "description": "An electronic file or document.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "NoteDigitalDocument": {\n "name": "NoteDigitalDocument",\n "description": "A file containing a note, primarily for the author.",\n "depth": 3,\n "subClassOf": "DigitalDocument"\n },\n "PresentationDigitalDocument": {\n "name": "PresentationDigitalDocument",\n "description": "A file containing slides or used for a presentation.",\n "depth": 3,\n "subClassOf": "DigitalDocument"\n },\n "SpreadsheetDigitalDocument": {\n "name": "SpreadsheetDigitalDocument",\n "description": "A spreadsheet file.",\n "depth": 3,\n "subClassOf": "DigitalDocument"\n },\n "TextDigitalDocument": {\n "name": "TextDigitalDocument",\n "description": "A file composed primarily of text.",\n "depth": 3,\n "subClassOf": "DigitalDocument"\n },\n "Drawing": {\n "name": "Drawing",\n "description": "A picture or diagram made with a pencil, pen, or crayon rather than paint.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "EducationalOccupationalCredential": {\n "name": "EducationalOccupationalCredential",\n "description": "An educational or occupational credential. A diploma, academic degree, certification, qualification, badge, etc...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Episode": {\n "name": "Episode",\n "description": "A media episode (e.g. TV, radio, video game) which can be part of a series or season.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "PodcastEpisode": {\n "name": "PodcastEpisode",\n "description": "A single episode of a podcast series.",\n "depth": 3,\n "subClassOf": "Episode"\n },\n "RadioEpisode": {\n "name": "RadioEpisode",\n "description": "A radio episode which can be part of a series or season.",\n "depth": 3,\n "subClassOf": "Episode"\n },\n "TVEpisode": {\n "name": "TVEpisode",\n "description": "A TV episode which can be part of a series or season.",\n "depth": 3,\n "subClassOf": "Episode"\n },\n "ExercisePlan": {\n "name": "ExercisePlan",\n "description": "Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Game": {\n "name": "Game",\n "description": "The Game type represents things which are games. These are typically rule-governed recreational activities, e...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "VideoGame": {\n "name": "VideoGame",\n "description": "A video game is an electronic game that involves human interaction with a user interface to generate visual feedback on a video device.",\n "depth": 3,\n "subClassOf": "Game"\n },\n "Guide": {\n "name": "Guide",\n "description": "Guide is a page or article that recommend specific products or services, or aspects of a thing for a user to consider...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "HowTo": {\n "name": "HowTo",\n "description": "Instructions that explain how to achieve a result by performing a sequence of steps.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Recipe": {\n "name": "Recipe",\n "description": "A recipe. For dietary restrictions covered by the recipe, a few common restrictions are enumerated via suitableForDiet...",\n "depth": 3,\n "subClassOf": "HowTo"\n },\n "HowToDirection": {\n "name": "HowToDirection",\n "description": "A direction indicating a single action to do in the instructions for how to achieve a result.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "HowToSection": {\n "name": "HowToSection",\n "description": "A sub-grouping of steps in the instructions for how to achieve a result (e...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "HowToStep": {\n "name": "HowToStep",\n "description": "A step in the instructions for how to achieve a result. It is an ordered list with HowToDirection and/or HowToTip items.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "HowToTip": {\n "name": "HowToTip",\n "description": "An explanation in the instructions for how to achieve a result...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Legislation": {\n "name": "Legislation",\n "description": "A legal document such as an act, decree, bill, etc. (enforceable or not) or a component of a legal act (like an article).",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "LegislationObject": {\n "name": "LegislationObject",\n "description": "A specific object or file containing a Legislation. Note that the same Legislation can be published in multiple files...",\n "depth": 3,\n "subClassOf": "Legislation"\n },\n "Manuscript": {\n "name": "Manuscript",\n "description": "A book, document, or piece of music written by hand rather than typed or printed.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Map": {\n "name": "Map",\n "description": "A map.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "MediaObject": {\n "name": "MediaObject",\n "description": "A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset i...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "AudioObject": {\n "name": "AudioObject",\n "description": "An audio file.",\n "depth": 3,\n "subClassOf": "MediaObject"\n },\n "DataDownload": {\n "name": "DataDownload",\n "description": "A dataset in downloadable form.",\n "depth": 3,\n "subClassOf": "MediaObject"\n },\n "ImageObject": {\n "name": "ImageObject",\n "description": "An image file.",\n "depth": 3,\n "subClassOf": "MediaObject"\n },\n "Barcode": {\n "name": "Barcode",\n "description": "An image of a visual machine-readable code such as a barcode or QR code.",\n "depth": 4,\n "subClassOf": "ImageObject"\n },\n "MusicVideoObject": {\n "name": "MusicVideoObject",\n "description": "A music video file.",\n "depth": 3,\n "subClassOf": "MediaObject"\n },\n "VideoObject": {\n "name": "VideoObject",\n "description": "A video file.",\n "depth": 3,\n "subClassOf": "MediaObject"\n },\n "Menu": {\n "name": "Menu",\n "description": "A structured representation of food or drink items available from a FoodEstablishment.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "MenuSection": {\n "name": "MenuSection",\n "description": "A sub-grouping of food or drink items in a menu. E.g. courses (such as 'Dinner', 'Breakfast', etc...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Message": {\n "name": "Message",\n "description": "A single message from a sender to one or more organizations or people.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "EmailMessage": {\n "name": "EmailMessage",\n "description": "An email message.",\n "depth": 3,\n "subClassOf": "Message"\n },\n "Movie": {\n "name": "Movie",\n "description": "A movie.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "MusicComposition": {\n "name": "MusicComposition",\n "description": "A musical composition.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "MusicPlaylist": {\n "name": "MusicPlaylist",\n "description": "A collection of music tracks in playlist form.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "MusicAlbum": {\n "name": "MusicAlbum",\n "description": "A collection of music tracks.",\n "depth": 3,\n "subClassOf": "MusicPlaylist"\n },\n "MusicRelease": {\n "name": "MusicRelease",\n "description": "A MusicRelease is a specific release of a music album.",\n "depth": 3,\n "subClassOf": "MusicPlaylist"\n },\n "MusicRecording": {\n "name": "MusicRecording",\n "description": "A music recording (track), usually a single song.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Painting": {\n "name": "Painting",\n "description": "A painting.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Photograph": {\n "name": "Photograph",\n "description": "A photograph.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Play": {\n "name": "Play",\n "description": "A play is a form of literature, usually consisting of dialogue between characters, intended for theatrical performance rather than just reading...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Poster": {\n "name": "Poster",\n "description": "A large, usually printed placard, bill, or announcement, often illustrated, that is posted to advertise or publicize something.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "PublicationIssue": {\n "name": "PublicationIssue",\n "description": "A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "ComicIssue": {\n "name": "ComicIssue",\n "description": "Individual comic issues are serially published as\\n part of a larger series...",\n "depth": 3,\n "subClassOf": "PublicationIssue"\n },\n "PublicationVolume": {\n "name": "PublicationVolume",\n "description": "A part of a successively published publication such as a periodical or multi-volume work, often numbered...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Question": {\n "name": "Question",\n "description": "A specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions (FAQ) document.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Quotation": {\n "name": "Quotation",\n "description": "A quotation. Often but not necessarily from some written work, attributable to a real world author and - if associated with a fictional character - to any fictional Person...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Review": {\n "name": "Review",\n "description": "A review of an item - for example, of a restaurant, movie, or store.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "ClaimReview": {\n "name": "ClaimReview",\n "description": "A fact-checking review of claims made (or reported) in some creative work (referenced via itemReviewed).",\n "depth": 3,\n "subClassOf": "Review"\n },\n "CriticReview": {\n "name": "CriticReview",\n "description": "A CriticReview is a more specialized form of Review written or published by a source that is recognized for its reviewing activities...",\n "depth": 3,\n "subClassOf": "Review"\n },\n "EmployerReview": {\n "name": "EmployerReview",\n "description": "An EmployerReview is a review of an Organization regarding its role as an employer, written by a current or former employee of that organization.",\n "depth": 3,\n "subClassOf": "Review"\n },\n "Recommendation": {\n "name": "Recommendation",\n "description": "Recommendation is a type of Review that suggests or proposes something as the best option or best course of action...",\n "depth": 3,\n "subClassOf": "Review"\n },\n "UserReview": {\n "name": "UserReview",\n "description": "A review created by an end-user (e.g. consumer, purchaser, attendee etc...",\n "depth": 3,\n "subClassOf": "Review"\n },\n "Sculpture": {\n "name": "Sculpture",\n "description": "A piece of sculpture.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Season": {\n "name": "Season",\n "description": "A media season e.g. tv, radio, video game etc.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "SheetMusic": {\n "name": "SheetMusic",\n "description": "Printed music, as opposed to performed or recorded music.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "ShortStory": {\n "name": "ShortStory",\n "description": "Short story or tale. A brief work of literature, usually written in narrative prose.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "SoftwareApplication": {\n "name": "SoftwareApplication",\n "description": "A software application.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "MobileApplication": {\n "name": "MobileApplication",\n "description": "A software application designed specifically to work well on a mobile device such as a telephone.",\n "depth": 3,\n "subClassOf": "SoftwareApplication"\n },\n "WebApplication": {\n "name": "WebApplication",\n "description": "Web applications.",\n "depth": 3,\n "subClassOf": "SoftwareApplication"\n },\n "SoftwareSourceCode": {\n "name": "SoftwareSourceCode",\n "description": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Thesis": {\n "name": "Thesis",\n "description": "A thesis or dissertation document submitted in support of candidature for an academic degree or professional qualification.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "VisualArtwork": {\n "name": "VisualArtwork",\n "description": "A work of art that is primarily visual in character.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "CoverArt": {\n "name": "CoverArt",\n "description": "The artwork on the outer surface of a CreativeWork.",\n "depth": 3,\n "subClassOf": "VisualArtwork"\n },\n "WebContent": {\n "name": "WebContent",\n "description": "WebContent is a type representing all WebPage, WebSite and WebPageElement content...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "HealthTopicContent": {\n "name": "HealthTopicContent",\n "description": "HealthTopicContent is WebContent that is about some aspect of a health topic, e...",\n "depth": 3,\n "subClassOf": "WebContent"\n },\n "WebPage": {\n "name": "WebPage",\n "description": "A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used...",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "AboutPage": {\n "name": "AboutPage",\n "description": "Web page type: About page.",\n "depth": 3,\n "subClassOf": "WebPage"\n },\n "CheckoutPage": {\n "name": "CheckoutPage",\n "description": "Web page type: Checkout page.",\n "depth": 3,\n "subClassOf": "WebPage"\n },\n "CollectionPage": {\n "name": "CollectionPage",\n "description": "Web page type: Collection page.",\n "depth": 3,\n "subClassOf": "WebPage"\n },\n "MediaGallery": {\n "name": "MediaGallery",\n "description": "Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia.",\n "depth": 4,\n "subClassOf": "CollectionPage"\n },\n "ImageGallery": {\n "name": "ImageGallery",\n "description": "Web page type: Image gallery page.",\n "depth": 5,\n "subClassOf": "MediaGallery"\n },\n "VideoGallery": {\n "name": "VideoGallery",\n "description": "Web page type: Video gallery page.",\n "depth": 5,\n "subClassOf": "MediaGallery"\n },\n "ContactPage": {\n "name": "ContactPage",\n "description": "Web page type: Contact page.",\n "depth": 3,\n "subClassOf": "WebPage"\n },\n "FAQPage": {\n "name": "FAQPage",\n "description": "A FAQPage is a WebPage presenting one or more \\"Frequently asked questions\\" (see also QAPage).",\n "depth": 3,\n "subClassOf": "WebPage"\n },\n "ItemPage": {\n "name": "ItemPage",\n "description": "A page devoted to a single item, such as a particular product or hotel.",\n "depth": 3,\n "subClassOf": "WebPage"\n },\n "MedicalWebPage": {\n "name": "MedicalWebPage",\n "description": "A web page that provides medical information.",\n "depth": 3,\n "subClassOf": "WebPage"\n },\n "ProfilePage": {\n "name": "ProfilePage",\n "description": "Web page type: Profile page.",\n "depth": 3,\n "subClassOf": "WebPage"\n },\n "QAPage": {\n "name": "QAPage",\n "description": "A QAPage is a WebPage focussed on a specific Question and its Answer(s), e...",\n "depth": 3,\n "subClassOf": "WebPage"\n },\n "RealEstateListing": {\n "name": "RealEstateListing",\n "description": "A RealEstateListing is a listing that describes one or more real-estate Offers (whose businessFunction is typically to lease out, or to sell)...",\n "depth": 3,\n "subClassOf": "WebPage"\n },\n "SearchResultsPage": {\n "name": "SearchResultsPage",\n "description": "Web page type: Search results page.",\n "depth": 3,\n "subClassOf": "WebPage"\n },\n "WebPageElement": {\n "name": "WebPageElement",\n "description": "A web page element, like a table or an image.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "SiteNavigationElement": {\n "name": "SiteNavigationElement",\n "description": "A navigation element of the page.",\n "depth": 3,\n "subClassOf": "WebPageElement"\n },\n "Table": {\n "name": "Table",\n "description": "A table on a Web page.",\n "depth": 3,\n "subClassOf": "WebPageElement"\n },\n "WPAdBlock": {\n "name": "WPAdBlock",\n "description": "An advertising section of the page.",\n "depth": 3,\n "subClassOf": "WebPageElement"\n },\n "WPFooter": {\n "name": "WPFooter",\n "description": "The footer section of the page.",\n "depth": 3,\n "subClassOf": "WebPageElement"\n },\n "WPHeader": {\n "name": "WPHeader",\n "description": "The header section of the page.",\n "depth": 3,\n "subClassOf": "WebPageElement"\n },\n "WPSideBar": {\n "name": "WPSideBar",\n "description": "A sidebar section of the page.",\n "depth": 3,\n "subClassOf": "WebPageElement"\n },\n "WebSite": {\n "name": "WebSite",\n "description": "A WebSite is a set of related web pages and other items typically served from a single web domain and accessible via URLs.",\n "depth": 2,\n "subClassOf": "CreativeWork"\n },\n "Event": {\n "name": "Event",\n "description": "An event happening at a certain time and location, such as a concert, lecture, or festival...",\n "depth": 1,\n "subClassOf": "Thing"\n },\n "BusinessEvent": {\n "name": "BusinessEvent",\n "description": "Event type: Business event.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "ChildrensEvent": {\n "name": "ChildrensEvent",\n "description": "Event type: Children's event.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "ComedyEvent": {\n "name": "ComedyEvent",\n "description": "Event type: Comedy event.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "CourseInstance": {\n "name": "CourseInstance",\n "description": "An instance of a Course which is distinct from other instances because it is offered at a different time or location or through different media or modes of study or to a specific section of students.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "DanceEvent": {\n "name": "DanceEvent",\n "description": "Event type: A social dance.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "DeliveryEvent": {\n "name": "DeliveryEvent",\n "description": "An event involving the delivery of an item.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "EducationEvent": {\n "name": "EducationEvent",\n "description": "Event type: Education event.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "EventSeries": {\n "name": "EventSeries",\n "description": "A series of Events. Included events can relate with the series using the superEvent property...",\n "depth": 2,\n "subClassOf": "Event"\n },\n "ExhibitionEvent": {\n "name": "ExhibitionEvent",\n "description": "Event type: Exhibition event, e.g. at a museum, library, archive, tradeshow, ...",\n "depth": 2,\n "subClassOf": "Event"\n },\n "Festival": {\n "name": "Festival",\n "description": "Event type: Festival.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "FoodEvent": {\n "name": "FoodEvent",\n "description": "Event type: Food event.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "LiteraryEvent": {\n "name": "LiteraryEvent",\n "description": "Event type: Literary event.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "MusicEvent": {\n "name": "MusicEvent",\n "description": "Event type: Music event.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "PublicationEvent": {\n "name": "PublicationEvent",\n "description": "A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type e...",\n "depth": 2,\n "subClassOf": "Event"\n },\n "BroadcastEvent": {\n "name": "BroadcastEvent",\n "description": "An over the air or online broadcast event.",\n "depth": 3,\n "subClassOf": "PublicationEvent"\n },\n "OnDemandEvent": {\n "name": "OnDemandEvent",\n "description": "A publication event e.g. catch-up TV or radio podcast, during which a program is available on-demand.",\n "depth": 3,\n "subClassOf": "PublicationEvent"\n },\n "SaleEvent": {\n "name": "SaleEvent",\n "description": "Event type: Sales event.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "ScreeningEvent": {\n "name": "ScreeningEvent",\n "description": "A screening of a movie or other video.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "SocialEvent": {\n "name": "SocialEvent",\n "description": "Event type: Social event.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "SportsEvent": {\n "name": "SportsEvent",\n "description": "Event type: Sports event.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "TheaterEvent": {\n "name": "TheaterEvent",\n "description": "Event type: Theater performance.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "UserInteraction": {\n "name": "UserInteraction",\n "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages...",\n "depth": 2,\n "subClassOf": "Event"\n },\n "UserBlocks": {\n "name": "UserBlocks",\n "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages...",\n "depth": 3,\n "subClassOf": "UserInteraction"\n },\n "UserCheckins": {\n "name": "UserCheckins",\n "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages...",\n "depth": 3,\n "subClassOf": "UserInteraction"\n },\n "UserComments": {\n "name": "UserComments",\n "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages...",\n "depth": 3,\n "subClassOf": "UserInteraction"\n },\n "UserDownloads": {\n "name": "UserDownloads",\n "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages...",\n "depth": 3,\n "subClassOf": "UserInteraction"\n },\n "UserLikes": {\n "name": "UserLikes",\n "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages...",\n "depth": 3,\n "subClassOf": "UserInteraction"\n },\n "UserPageVisits": {\n "name": "UserPageVisits",\n "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages...",\n "depth": 3,\n "subClassOf": "UserInteraction"\n },\n "UserPlays": {\n "name": "UserPlays",\n "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages...",\n "depth": 3,\n "subClassOf": "UserInteraction"\n },\n "UserPlusOnes": {\n "name": "UserPlusOnes",\n "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages...",\n "depth": 3,\n "subClassOf": "UserInteraction"\n },\n "UserTweets": {\n "name": "UserTweets",\n "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages...",\n "depth": 3,\n "subClassOf": "UserInteraction"\n },\n "VisualArtsEvent": {\n "name": "VisualArtsEvent",\n "description": "Event type: Visual arts event.",\n "depth": 2,\n "subClassOf": "Event"\n },\n "Intangible": {\n "name": "Intangible",\n "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.",\n "depth": 1,\n "subClassOf": "Thing"\n },\n "ActionAccessSpecification": {\n "name": "ActionAccessSpecification",\n "description": "A set of requirements that a must be fulfilled in order to perform an Action.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "AlignmentObject": {\n "name": "AlignmentObject",\n "description": "An intangible item that describes an alignment between a learning resource and a node in an educational framework.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Audience": {\n "name": "Audience",\n "description": "Intended audience for an item, i.e. the group for whom the item was created.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "BusinessAudience": {\n "name": "BusinessAudience",\n "description": "A set of characteristics belonging to businesses, e.g. who compose an item's target audience.",\n "depth": 3,\n "subClassOf": "Audience"\n },\n "EducationalAudience": {\n "name": "EducationalAudience",\n "description": "An EducationalAudience.",\n "depth": 3,\n "subClassOf": "Audience"\n },\n "MedicalAudience": {\n "name": "MedicalAudience",\n "description": "Target audiences for medical web pages. Enumerated type.",\n "depth": 3,\n "subClassOf": "Audience"\n },\n "Patient": {\n "name": "Patient",\n "description": "A patient is any person recipient of health care services.",\n "depth": 4,\n "subClassOf": "MedicalAudience"\n },\n "PeopleAudience": {\n "name": "PeopleAudience",\n "description": "A set of characteristics belonging to people, e.g. who compose an item's target audience.",\n "depth": 3,\n "subClassOf": "Audience"\n },\n "ParentAudience": {\n "name": "ParentAudience",\n "description": "A set of characteristics describing parents, who can be interested in viewing some content.",\n "depth": 4,\n "subClassOf": "PeopleAudience"\n },\n "BedDetails": {\n "name": "BedDetails",\n "description": "An entity holding detailed information about the available bed types, e...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Brand": {\n "name": "Brand",\n "description": "A brand is a name used by an organization or business person for labeling a product, product group, or similar.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "BroadcastChannel": {\n "name": "BroadcastChannel",\n "description": "A unique instance of a BroadcastService on a CableOrSatelliteService lineup.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "RadioChannel": {\n "name": "RadioChannel",\n "description": "A unique instance of a radio BroadcastService on a CableOrSatelliteService lineup.",\n "depth": 3,\n "subClassOf": "BroadcastChannel"\n },\n "AMRadioChannel": {\n "name": "AMRadioChannel",\n "description": "A radio channel that uses AM.",\n "depth": 4,\n "subClassOf": "RadioChannel"\n },\n "FMRadioChannel": {\n "name": "FMRadioChannel",\n "description": "A radio channel that uses FM.",\n "depth": 4,\n "subClassOf": "RadioChannel"\n },\n "TelevisionChannel": {\n "name": "TelevisionChannel",\n "description": "A unique instance of a television BroadcastService on a CableOrSatelliteService lineup.",\n "depth": 3,\n "subClassOf": "BroadcastChannel"\n },\n "BroadcastFrequencySpecification": {\n "name": "BroadcastFrequencySpecification",\n "description": "The frequency in MHz and the modulation used for a particular BroadcastService.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Class": {\n "name": "Class",\n "description": "A class, also often called a 'Type'; equivalent to rdfs:Class.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "ComputerLanguage": {\n "name": "ComputerLanguage",\n "description": "This type covers computer programming languages such as Scheme and Lisp, as well as other language-like computer representations...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "DataFeedItem": {\n "name": "DataFeedItem",\n "description": "A single item within a larger data feed.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "DefinedTerm": {\n "name": "DefinedTerm",\n "description": "A word, name, acronym, phrase, etc. with a formal definition. Often used in the context of category or subject classification, glossaries or dictionaries, product or creative work types, etc...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "CategoryCode": {\n "name": "CategoryCode",\n "description": "A Category Code.",\n "depth": 3,\n "subClassOf": "DefinedTerm"\n },\n "MedicalCode": {\n "name": "MedicalCode",\n "description": "A code for a medical entity.",\n "depth": 4,\n "subClassOf": "CategoryCode"\n },\n "Demand": {\n "name": "Demand",\n "description": "A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "DigitalDocumentPermission": {\n "name": "DigitalDocumentPermission",\n "description": "A permission for a particular person or group to access a particular file.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "EducationalOccupationalProgram": {\n "name": "EducationalOccupationalProgram",\n "description": "A program offered by an institution which determines the learning progress to achieve an outcome, usually a credential like a degree or certificate...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "WorkBasedProgram": {\n "name": "WorkBasedProgram",\n "description": "A program with both an educational and employment component. Typically based at a workplace and structured around work-based learning, with the aim of instilling competencies related to an occupation...",\n "depth": 3,\n "subClassOf": "EducationalOccupationalProgram"\n },\n "EntryPoint": {\n "name": "EntryPoint",\n "description": "An entry point, within some Web-based protocol.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Enumeration": {\n "name": "Enumeration",\n "description": "Lists or enumerations—for example, a list of cuisines or music genres, etc.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "ActionStatusType": {\n "name": "ActionStatusType",\n "description": "The status of an Action.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "ActiveActionStatus": {\n "name": "ActiveActionStatus",\n "description": "An in-progress action (e.g, while watching the movie, or driving to a location).",\n "depth": 4,\n "subClassOf": "ActionStatusType"\n },\n "CompletedActionStatus": {\n "name": "CompletedActionStatus",\n "description": "An action that has already taken place.",\n "depth": 4,\n "subClassOf": "ActionStatusType"\n },\n "FailedActionStatus": {\n "name": "FailedActionStatus",\n "description": "An action that failed to complete. The action's error property and the HTTP return code contain more information about the failure.",\n "depth": 4,\n "subClassOf": "ActionStatusType"\n },\n "PotentialActionStatus": {\n "name": "PotentialActionStatus",\n "description": "A description of an action that is supported.",\n "depth": 4,\n "subClassOf": "ActionStatusType"\n },\n "BoardingPolicyType": {\n "name": "BoardingPolicyType",\n "description": "A type of boarding policy used by an airline.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "GroupBoardingPolicy": {\n "name": "GroupBoardingPolicy",\n "description": "The airline boards by groups based on check-in time, priority, etc.",\n "depth": 4,\n "subClassOf": "BoardingPolicyType"\n },\n "ZoneBoardingPolicy": {\n "name": "ZoneBoardingPolicy",\n "description": "The airline boards by zones of the plane.",\n "depth": 4,\n "subClassOf": "BoardingPolicyType"\n },\n "BookFormatType": {\n "name": "BookFormatType",\n "description": "The publication format of the book.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "AudiobookFormat": {\n "name": "AudiobookFormat",\n "description": "Book format: Audiobook. This is an enumerated value for use with the bookFormat property...",\n "depth": 4,\n "subClassOf": "BookFormatType"\n },\n "EBook": {\n "name": "EBook",\n "description": "Book format: Ebook.",\n "depth": 4,\n "subClassOf": "BookFormatType"\n },\n "GraphicNovel": {\n "name": "GraphicNovel",\n "description": "Book format: GraphicNovel. May represent a bound collection of ComicIssue instances.",\n "depth": 4,\n "subClassOf": "BookFormatType"\n },\n "Hardcover": {\n "name": "Hardcover",\n "description": "Book format: Hardcover.",\n "depth": 4,\n "subClassOf": "BookFormatType"\n },\n "Paperback": {\n "name": "Paperback",\n "description": "Book format: Paperback.",\n "depth": 4,\n "subClassOf": "BookFormatType"\n },\n "BusinessEntityType": {\n "name": "BusinessEntityType",\n "description": "A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person...",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "BusinessFunction": {\n "name": "BusinessFunction",\n "description": "The business function specifies the type of activity or access (i...",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "ContactPointOption": {\n "name": "ContactPointOption",\n "description": "Enumerated options related to a ContactPoint.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "HearingImpairedSupported": {\n "name": "HearingImpairedSupported",\n "description": "Uses devices to support users with hearing impairments.",\n "depth": 4,\n "subClassOf": "ContactPointOption"\n },\n "TollFree": {\n "name": "TollFree",\n "description": "The associated telephone number is toll free.",\n "depth": 4,\n "subClassOf": "ContactPointOption"\n },\n "DayOfWeek": {\n "name": "DayOfWeek",\n "description": "The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer...",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "Friday": {\n "name": "Friday",\n "description": "The day of the week between Thursday and Saturday.",\n "depth": 4,\n "subClassOf": "DayOfWeek"\n },\n "Monday": {\n "name": "Monday",\n "description": "The day of the week between Sunday and Tuesday.",\n "depth": 4,\n "subClassOf": "DayOfWeek"\n },\n "PublicHolidays": {\n "name": "PublicHolidays",\n "description": "This stands for any day that is a public holiday; it is a placeholder for all official public holidays in some particular location...",\n "depth": 4,\n "subClassOf": "DayOfWeek"\n },\n "Saturday": {\n "name": "Saturday",\n "description": "The day of the week between Friday and Sunday.",\n "depth": 4,\n "subClassOf": "DayOfWeek"\n },\n "Sunday": {\n "name": "Sunday",\n "description": "The day of the week between Saturday and Monday.",\n "depth": 4,\n "subClassOf": "DayOfWeek"\n },\n "Thursday": {\n "name": "Thursday",\n "description": "The day of the week between Wednesday and Friday.",\n "depth": 4,\n "subClassOf": "DayOfWeek"\n },\n "Tuesday": {\n "name": "Tuesday",\n "description": "The day of the week between Monday and Wednesday.",\n "depth": 4,\n "subClassOf": "DayOfWeek"\n },\n "Wednesday": {\n "name": "Wednesday",\n "description": "The day of the week between Tuesday and Thursday.",\n "depth": 4,\n "subClassOf": "DayOfWeek"\n },\n "DeliveryMethod": {\n "name": "DeliveryMethod",\n "description": "A delivery method is a standardized procedure for transferring the product or service to the destination of fulfillment chosen by the customer...",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "LockerDelivery": {\n "name": "LockerDelivery",\n "description": "A DeliveryMethod in which an item is made available via locker.",\n "depth": 4,\n "subClassOf": "DeliveryMethod"\n },\n "OnSitePickup": {\n "name": "OnSitePickup",\n "description": "A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office.",\n "depth": 4,\n "subClassOf": "DeliveryMethod"\n },\n "ParcelService": {\n "name": "ParcelService",\n "description": "A private parcel service as the delivery mode available for a certain offer...",\n "depth": 4,\n "subClassOf": "DeliveryMethod"\n },\n "DigitalDocumentPermissionType": {\n "name": "DigitalDocumentPermissionType",\n "description": "A type of permission which can be granted for accessing a digital document.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "CommentPermission": {\n "name": "CommentPermission",\n "description": "Permission to add comments to the document.",\n "depth": 4,\n "subClassOf": "DigitalDocumentPermissionType"\n },\n "ReadPermission": {\n "name": "ReadPermission",\n "description": "Permission to read or view the document.",\n "depth": 4,\n "subClassOf": "DigitalDocumentPermissionType"\n },\n "WritePermission": {\n "name": "WritePermission",\n "description": "Permission to write or edit the document.",\n "depth": 4,\n "subClassOf": "DigitalDocumentPermissionType"\n },\n "EventStatusType": {\n "name": "EventStatusType",\n "description": "EventStatusType is an enumeration type whose instances represent several states that an Event may be in.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "EventCancelled": {\n "name": "EventCancelled",\n "description": "The event has been cancelled. If the event has multiple startDate values, all are assumed to be cancelled...",\n "depth": 4,\n "subClassOf": "EventStatusType"\n },\n "EventPostponed": {\n "name": "EventPostponed",\n "description": "The event has been postponed and no new date has been set. The event's previousStartDate should be set.",\n "depth": 4,\n "subClassOf": "EventStatusType"\n },\n "EventRescheduled": {\n "name": "EventRescheduled",\n "description": "The event has been rescheduled. The event's previousStartDate should be set to the old date and the startDate should be set to the event's new date...",\n "depth": 4,\n "subClassOf": "EventStatusType"\n },\n "EventScheduled": {\n "name": "EventScheduled",\n "description": "The event is taking place or has taken place on the startDate as scheduled...",\n "depth": 4,\n "subClassOf": "EventStatusType"\n },\n "GamePlayMode": {\n "name": "GamePlayMode",\n "description": "Indicates whether this game is multi-player, co-op or single-player.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "CoOp": {\n "name": "CoOp",\n "description": "Play mode: CoOp. Co-operative games, where you play on the same team with friends.",\n "depth": 4,\n "subClassOf": "GamePlayMode"\n },\n "MultiPlayer": {\n "name": "MultiPlayer",\n "description": "Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously.",\n "depth": 4,\n "subClassOf": "GamePlayMode"\n },\n "SinglePlayer": {\n "name": "SinglePlayer",\n "description": "Play mode: SinglePlayer. Which is played by a lone player.",\n "depth": 4,\n "subClassOf": "GamePlayMode"\n },\n "GameServerStatus": {\n "name": "GameServerStatus",\n "description": "Status of a game server.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "OfflinePermanently": {\n "name": "OfflinePermanently",\n "description": "Game server status: OfflinePermanently. Server is offline and not available.",\n "depth": 4,\n "subClassOf": "GameServerStatus"\n },\n "OfflineTemporarily": {\n "name": "OfflineTemporarily",\n "description": "Game server status: OfflineTemporarily. Server is offline now but it can be online soon.",\n "depth": 4,\n "subClassOf": "GameServerStatus"\n },\n "Online": {\n "name": "Online",\n "description": "Game server status: Online. Server is available.",\n "depth": 4,\n "subClassOf": "GameServerStatus"\n },\n "OnlineFull": {\n "name": "OnlineFull",\n "description": "Game server status: OnlineFull. Server is online but unavailable...",\n "depth": 4,\n "subClassOf": "GameServerStatus"\n },\n "GenderType": {\n "name": "GenderType",\n "description": "An enumeration of genders.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "Female": {\n "name": "Female",\n "description": "The female gender.",\n "depth": 4,\n "subClassOf": "GenderType"\n },\n "Male": {\n "name": "Male",\n "description": "The male gender.",\n "depth": 4,\n "subClassOf": "GenderType"\n },\n "HealthAspectEnumeration": {\n "name": "HealthAspectEnumeration",\n "description": "HealthAspectEnumeration enumerates several aspects of health content online, each of which might be described using hasHealthAspect and HealthTopicContent.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "BenefitsHealthAspect": {\n "name": "BenefitsHealthAspect",\n "description": "Content about the benefits and advantages of usage or utilization of topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "CausesHealthAspect": {\n "name": "CausesHealthAspect",\n "description": "Information about the causes and main actions that gave rise to the topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "ContagiousnessHealthAspect": {\n "name": "ContagiousnessHealthAspect",\n "description": "Content about contagion mechanisms and contagiousness information over the topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "HowOrWhereHealthAspect": {\n "name": "HowOrWhereHealthAspect",\n "description": "Information about how or where to find a topic. Also may contain location data that can be used for where to look for help if the topic is observed.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "LivingWithHealthAspect": {\n "name": "LivingWithHealthAspect",\n "description": "Information about coping or life related to the topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "MayTreatHealthAspect": {\n "name": "MayTreatHealthAspect",\n "description": "Related topics may be treated by a Topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "MisconceptionsHealthAspect": {\n "name": "MisconceptionsHealthAspect",\n "description": "Content about common misconceptions and myths that are related to a topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "OverviewHealthAspect": {\n "name": "OverviewHealthAspect",\n "description": "Overview of the content. Contains a summarized view of the topic with the most relevant information for an introduction.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "PatientExperienceHealthAspect": {\n "name": "PatientExperienceHealthAspect",\n "description": "Content about the real life experience of patients or people that have lived a similar experience about the topic...",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "PreventionHealthAspect": {\n "name": "PreventionHealthAspect",\n "description": "Information about actions or measures that can be taken to avoid getting the topic or reaching a critical situation related to the topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "PrognosisHealthAspect": {\n "name": "PrognosisHealthAspect",\n "description": "Typical progression and happenings of life course of the topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "RelatedTopicsHealthAspect": {\n "name": "RelatedTopicsHealthAspect",\n "description": "Other prominent or relevant topics tied to the main topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "RisksOrComplicationsHealthAspect": {\n "name": "RisksOrComplicationsHealthAspect",\n "description": "Information about the risk factors and possible complications that may follow a topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "ScreeningHealthAspect": {\n "name": "ScreeningHealthAspect",\n "description": "Content about how to screen or further filter a topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "SeeDoctorHealthAspect": {\n "name": "SeeDoctorHealthAspect",\n "description": "Information about questions that may be asked, when to see a professional, measures before seeing a doctor or content about the first consultation.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "SelfCareHealthAspect": {\n "name": "SelfCareHealthAspect",\n "description": "Self care actions or measures that can be taken to sooth, health or avoid a topic...",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "SideEffectsHealthAspect": {\n "name": "SideEffectsHealthAspect",\n "description": "Side effects that can be observed from the usage of the topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "StagesHealthAspect": {\n "name": "StagesHealthAspect",\n "description": "Stages that can be observed from a topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "SymptomsHealthAspect": {\n "name": "SymptomsHealthAspect",\n "description": "Symptoms or related symptoms of a Topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "TreatmentsHealthAspect": {\n "name": "TreatmentsHealthAspect",\n "description": "Treatments or related therapies for a Topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "TypesHealthAspect": {\n "name": "TypesHealthAspect",\n "description": "Categorization and other types related to a topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "UsageOrScheduleHealthAspect": {\n "name": "UsageOrScheduleHealthAspect",\n "description": "Content about how, when, frequency and dosage of a topic.",\n "depth": 4,\n "subClassOf": "HealthAspectEnumeration"\n },\n "ItemAvailability": {\n "name": "ItemAvailability",\n "description": "A list of possible product availability options.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "Discontinued": {\n "name": "Discontinued",\n "description": "Indicates that the item has been discontinued.",\n "depth": 4,\n "subClassOf": "ItemAvailability"\n },\n "InStock": {\n "name": "InStock",\n "description": "Indicates that the item is in stock.",\n "depth": 4,\n "subClassOf": "ItemAvailability"\n },\n "InStoreOnly": {\n "name": "InStoreOnly",\n "description": "Indicates that the item is available only at physical locations.",\n "depth": 4,\n "subClassOf": "ItemAvailability"\n },\n "LimitedAvailability": {\n "name": "LimitedAvailability",\n "description": "Indicates that the item has limited availability.",\n "depth": 4,\n "subClassOf": "ItemAvailability"\n },\n "OnlineOnly": {\n "name": "OnlineOnly",\n "description": "Indicates that the item is available only online.",\n "depth": 4,\n "subClassOf": "ItemAvailability"\n },\n "OutOfStock": {\n "name": "OutOfStock",\n "description": "Indicates that the item is out of stock.",\n "depth": 4,\n "subClassOf": "ItemAvailability"\n },\n "PreOrder": {\n "name": "PreOrder",\n "description": "Indicates that the item is available for pre-order.",\n "depth": 4,\n "subClassOf": "ItemAvailability"\n },\n "PreSale": {\n "name": "PreSale",\n "description": "Indicates that the item is available for ordering and delivery before general availability.",\n "depth": 4,\n "subClassOf": "ItemAvailability"\n },\n "SoldOut": {\n "name": "SoldOut",\n "description": "Indicates that the item has sold out.",\n "depth": 4,\n "subClassOf": "ItemAvailability"\n },\n "ItemListOrderType": {\n "name": "ItemListOrderType",\n "description": "Enumerated for values for itemListOrder for indicating how an ordered ItemList is organized.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "ItemListOrderAscending": {\n "name": "ItemListOrderAscending",\n "description": "An ItemList ordered with lower values listed first.",\n "depth": 4,\n "subClassOf": "ItemListOrderType"\n },\n "ItemListOrderDescending": {\n "name": "ItemListOrderDescending",\n "description": "An ItemList ordered with higher values listed first.",\n "depth": 4,\n "subClassOf": "ItemListOrderType"\n },\n "ItemListUnordered": {\n "name": "ItemListUnordered",\n "description": "An ItemList ordered with no explicit order.",\n "depth": 4,\n "subClassOf": "ItemListOrderType"\n },\n "LegalForceStatus": {\n "name": "LegalForceStatus",\n "description": "A list of possible statuses for the legal force of a legislation.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "InForce": {\n "name": "InForce",\n "description": "Indicates that a legislation is in force.",\n "depth": 4,\n "subClassOf": "LegalForceStatus"\n },\n "NotInForce": {\n "name": "NotInForce",\n "description": "Indicates that a legislation is currently not in force.",\n "depth": 4,\n "subClassOf": "LegalForceStatus"\n },\n "PartiallyInForce": {\n "name": "PartiallyInForce",\n "description": "Indicates that parts of the legislation are in force, and parts are not.",\n "depth": 4,\n "subClassOf": "LegalForceStatus"\n },\n "LegalValueLevel": {\n "name": "LegalValueLevel",\n "description": "A list of possible levels for the legal validity of a legislation.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "AuthoritativeLegalValue": {\n "name": "AuthoritativeLegalValue",\n "description": "Indicates that the publisher gives some special status to the publication of the document...",\n "depth": 4,\n "subClassOf": "LegalValueLevel"\n },\n "DefinitiveLegalValue": {\n "name": "DefinitiveLegalValue",\n "description": "Indicates a document for which the text is conclusively what the law says and is legally binding...",\n "depth": 4,\n "subClassOf": "LegalValueLevel"\n },\n "OfficialLegalValue": {\n "name": "OfficialLegalValue",\n "description": "All the documents published by an official publisher should have at least the legal value level \\"OfficialLegalValue\\"...",\n "depth": 4,\n "subClassOf": "LegalValueLevel"\n },\n "UnofficialLegalValue": {\n "name": "UnofficialLegalValue",\n "description": "Indicates that a document has no particular or special standing (e...",\n "depth": 4,\n "subClassOf": "LegalValueLevel"\n },\n "MapCategoryType": {\n "name": "MapCategoryType",\n "description": "An enumeration of several kinds of Map.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "ParkingMap": {\n "name": "ParkingMap",\n "description": "A parking map.",\n "depth": 4,\n "subClassOf": "MapCategoryType"\n },\n "SeatingMap": {\n "name": "SeatingMap",\n "description": "A seating map.",\n "depth": 4,\n "subClassOf": "MapCategoryType"\n },\n "TransitMap": {\n "name": "TransitMap",\n "description": "A transit map.",\n "depth": 4,\n "subClassOf": "MapCategoryType"\n },\n "VenueMap": {\n "name": "VenueMap",\n "description": "A venue map (e.g. for malls, auditoriums, museums, etc.).",\n "depth": 4,\n "subClassOf": "MapCategoryType"\n },\n "MedicalEnumeration": {\n "name": "MedicalEnumeration",\n "description": "Enumerations related to health and the practice of medicine: A concept that is used to attribute a quality to another concept, as a qualifier, a collection of items or a listing of all of the elements of a set in medicine practice.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "DrugClass": {\n "name": "DrugClass",\n "description": "A class of medical drugs, e.g., statins. Classes can represent general pharmacological class, common mechanisms of action, common physiological effects, etc.",\n "depth": 4,\n "subClassOf": "MedicalEnumeration"\n },\n "DrugCost": {\n "name": "DrugCost",\n "description": "The cost per unit of a medical drug. Note that this type is not meant to represent the price in an offer of a drug for sale; see the Offer type for that...",\n "depth": 4,\n "subClassOf": "MedicalEnumeration"\n },\n "DrugCostCategory": {\n "name": "DrugCostCategory",\n "description": "Enumerated categories of medical drug costs.",\n "depth": 4,\n "subClassOf": "MedicalEnumeration"\n },\n "DrugPregnancyCategory": {\n "name": "DrugPregnancyCategory",\n "description": "Categories that represent an assessment of the risk of fetal injury due to a drug or pharmaceutical used as directed by the mother during pregnancy.",\n "depth": 4,\n "subClassOf": "MedicalEnumeration"\n },\n "DrugPrescriptionStatus": {\n "name": "DrugPrescriptionStatus",\n "description": "Indicates whether this drug is available by prescription or over-the-counter.",\n "depth": 4,\n "subClassOf": "MedicalEnumeration"\n },\n "InfectiousAgentClass": {\n "name": "InfectiousAgentClass",\n "description": "Classes of agents or pathogens that transmit infectious diseases...",\n "depth": 4,\n "subClassOf": "MedicalEnumeration"\n },\n "MedicalDevicePurpose": {\n "name": "MedicalDevicePurpose",\n "description": "Categories of medical devices, organized by the purpose or intended use of the device.",\n "depth": 4,\n "subClassOf": "MedicalEnumeration"\n },\n "MedicalEvidenceLevel": {\n "name": "MedicalEvidenceLevel",\n "description": "Level of evidence for a medical guideline. Enumerated type.",\n "depth": 4,\n "subClassOf": "MedicalEnumeration"\n },\n "MedicalImagingTechnique": {\n "name": "MedicalImagingTechnique",\n "description": "Any medical imaging modality typically used for diagnostic purposes...",\n "depth": 4,\n "subClassOf": "MedicalEnumeration"\n },\n "MedicalObservationalStudyDesign": {\n "name": "MedicalObservationalStudyDesign",\n "description": "Design models for observational medical studies. Enumerated type.",\n "depth": 4,\n "subClassOf": "MedicalEnumeration"\n },\n "MedicalProcedureType": {\n "name": "MedicalProcedureType",\n "description": "An enumeration that describes different types of medical procedures.",\n "depth": 4,\n "subClassOf": "MedicalEnumeration"\n },\n "MedicalSpecialty": {\n "name": "MedicalSpecialty",\n "description": "Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties...",\n "depth": 4,\n "subClassOf": "MedicalEnumeration"\n },\n "MedicalStudyStatus": {\n "name": "MedicalStudyStatus",\n "description": "The status of a medical study. Enumerated type.",\n "depth": 4,\n "subClassOf": "MedicalEnumeration"\n },\n "MedicalTrialDesign": {\n "name": "MedicalTrialDesign",\n "description": "Design models for medical trials. Enumerated type.",\n "depth": 4,\n "subClassOf": "MedicalEnumeration"\n },\n "DoubleBlindedTrial": {\n "name": "DoubleBlindedTrial",\n "description": "A trial design in which neither the researcher nor the patient knows the details of the treatment the patient was randomly assigned to.",\n "depth": 5,\n "subClassOf": "MedicalTrialDesign"\n },\n "InternationalTrial": {\n "name": "InternationalTrial",\n "description": "An international trial.",\n "depth": 5,\n "subClassOf": "MedicalTrialDesign"\n },\n "MultiCenterTrial": {\n "name": "MultiCenterTrial",\n "description": "A trial that takes place at multiple centers.",\n "depth": 5,\n "subClassOf": "MedicalTrialDesign"\n },\n "OpenTrial": {\n "name": "OpenTrial",\n "description": "A trial design in which the researcher knows the full details of the treatment, and so does the patient.",\n "depth": 5,\n "subClassOf": "MedicalTrialDesign"\n },\n "PlaceboControlledTrial": {\n "name": "PlaceboControlledTrial",\n "description": "A placebo-controlled trial design.",\n "depth": 5,\n "subClassOf": "MedicalTrialDesign"\n },\n "RandomizedTrial": {\n "name": "RandomizedTrial",\n "description": "A randomized trial design.",\n "depth": 5,\n "subClassOf": "MedicalTrialDesign"\n },\n "SingleBlindedTrial": {\n "name": "SingleBlindedTrial",\n "description": "A trial design in which the researcher knows which treatment the patient was randomly assigned to but the patient does not.",\n "depth": 5,\n "subClassOf": "MedicalTrialDesign"\n },\n "SingleCenterTrial": {\n "name": "SingleCenterTrial",\n "description": "A trial that takes place at a single center.",\n "depth": 5,\n "subClassOf": "MedicalTrialDesign"\n },\n "TripleBlindedTrial": {\n "name": "TripleBlindedTrial",\n "description": "A trial design in which neither the researcher, the person administering the therapy nor the patient knows the details of the treatment the patient was randomly assigned to.",\n "depth": 5,\n "subClassOf": "MedicalTrialDesign"\n },\n "MedicineSystem": {\n "name": "MedicineSystem",\n "description": "Systems of medical practice.",\n "depth": 4,\n "subClassOf": "MedicalEnumeration"\n },\n "PhysicalExam": {\n "name": "PhysicalExam",\n "description": "A type of physical examination of a patient performed by a physician.",\n "depth": 4,\n "subClassOf": "MedicalEnumeration"\n },\n "MerchantReturnEnumeration": {\n "name": "MerchantReturnEnumeration",\n "description": "MerchantReturnEnumeration enumerates several kinds of product return policy...",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "MerchantReturnFiniteReturnWindow": {\n "name": "MerchantReturnFiniteReturnWindow",\n "description": "MerchantReturnFiniteReturnWindow: there is a finite window for product returns.",\n "depth": 4,\n "subClassOf": "MerchantReturnEnumeration"\n },\n "MerchantReturnNotPermitted": {\n "name": "MerchantReturnNotPermitted",\n "description": "MerchantReturnNotPermitted: product returns are not permitted.",\n "depth": 4,\n "subClassOf": "MerchantReturnEnumeration"\n },\n "MerchantReturnUnlimitedWindow": {\n "name": "MerchantReturnUnlimitedWindow",\n "description": "MerchantReturnUnlimitedWindow: there is an unlimited window for product returns.",\n "depth": 4,\n "subClassOf": "MerchantReturnEnumeration"\n },\n "MerchantReturnUnspecified": {\n "name": "MerchantReturnUnspecified",\n "description": "MerchantReturnUnspecified: a product return policy is not specified here.",\n "depth": 4,\n "subClassOf": "MerchantReturnEnumeration"\n },\n "MusicAlbumProductionType": {\n "name": "MusicAlbumProductionType",\n "description": "Classification of the album by it's type of content: soundtrack, live album, studio album, etc.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "CompilationAlbum": {\n "name": "CompilationAlbum",\n "description": "CompilationAlbum.",\n "depth": 4,\n "subClassOf": "MusicAlbumProductionType"\n },\n "DJMixAlbum": {\n "name": "DJMixAlbum",\n "description": "DJMixAlbum.",\n "depth": 4,\n "subClassOf": "MusicAlbumProductionType"\n },\n "DemoAlbum": {\n "name": "DemoAlbum",\n "description": "DemoAlbum.",\n "depth": 4,\n "subClassOf": "MusicAlbumProductionType"\n },\n "LiveAlbum": {\n "name": "LiveAlbum",\n "description": "LiveAlbum.",\n "depth": 4,\n "subClassOf": "MusicAlbumProductionType"\n },\n "MixtapeAlbum": {\n "name": "MixtapeAlbum",\n "description": "MixtapeAlbum.",\n "depth": 4,\n "subClassOf": "MusicAlbumProductionType"\n },\n "RemixAlbum": {\n "name": "RemixAlbum",\n "description": "RemixAlbum.",\n "depth": 4,\n "subClassOf": "MusicAlbumProductionType"\n },\n "SoundtrackAlbum": {\n "name": "SoundtrackAlbum",\n "description": "SoundtrackAlbum.",\n "depth": 4,\n "subClassOf": "MusicAlbumProductionType"\n },\n "SpokenWordAlbum": {\n "name": "SpokenWordAlbum",\n "description": "SpokenWordAlbum.",\n "depth": 4,\n "subClassOf": "MusicAlbumProductionType"\n },\n "StudioAlbum": {\n "name": "StudioAlbum",\n "description": "StudioAlbum.",\n "depth": 4,\n "subClassOf": "MusicAlbumProductionType"\n },\n "MusicAlbumReleaseType": {\n "name": "MusicAlbumReleaseType",\n "description": "The kind of release which this album is: single, EP or album.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "AlbumRelease": {\n "name": "AlbumRelease",\n "description": "AlbumRelease.",\n "depth": 4,\n "subClassOf": "MusicAlbumReleaseType"\n },\n "BroadcastRelease": {\n "name": "BroadcastRelease",\n "description": "BroadcastRelease.",\n "depth": 4,\n "subClassOf": "MusicAlbumReleaseType"\n },\n "EPRelease": {\n "name": "EPRelease",\n "description": "EPRelease.",\n "depth": 4,\n "subClassOf": "MusicAlbumReleaseType"\n },\n "SingleRelease": {\n "name": "SingleRelease",\n "description": "SingleRelease.",\n "depth": 4,\n "subClassOf": "MusicAlbumReleaseType"\n },\n "MusicReleaseFormatType": {\n "name": "MusicReleaseFormatType",\n "description": "Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc...",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "CDFormat": {\n "name": "CDFormat",\n "description": "CDFormat.",\n "depth": 4,\n "subClassOf": "MusicReleaseFormatType"\n },\n "CassetteFormat": {\n "name": "CassetteFormat",\n "description": "CassetteFormat.",\n "depth": 4,\n "subClassOf": "MusicReleaseFormatType"\n },\n "DVDFormat": {\n "name": "DVDFormat",\n "description": "DVDFormat.",\n "depth": 4,\n "subClassOf": "MusicReleaseFormatType"\n },\n "DigitalAudioTapeFormat": {\n "name": "DigitalAudioTapeFormat",\n "description": "DigitalAudioTapeFormat.",\n "depth": 4,\n "subClassOf": "MusicReleaseFormatType"\n },\n "DigitalFormat": {\n "name": "DigitalFormat",\n "description": "DigitalFormat.",\n "depth": 4,\n "subClassOf": "MusicReleaseFormatType"\n },\n "LaserDiscFormat": {\n "name": "LaserDiscFormat",\n "description": "LaserDiscFormat.",\n "depth": 4,\n "subClassOf": "MusicReleaseFormatType"\n },\n "VinylFormat": {\n "name": "VinylFormat",\n "description": "VinylFormat.",\n "depth": 4,\n "subClassOf": "MusicReleaseFormatType"\n },\n "OfferItemCondition": {\n "name": "OfferItemCondition",\n "description": "A list of possible conditions for the item.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "DamagedCondition": {\n "name": "DamagedCondition",\n "description": "Indicates that the item is damaged.",\n "depth": 4,\n "subClassOf": "OfferItemCondition"\n },\n "NewCondition": {\n "name": "NewCondition",\n "description": "Indicates that the item is new.",\n "depth": 4,\n "subClassOf": "OfferItemCondition"\n },\n "RefurbishedCondition": {\n "name": "RefurbishedCondition",\n "description": "Indicates that the item is refurbished.",\n "depth": 4,\n "subClassOf": "OfferItemCondition"\n },\n "UsedCondition": {\n "name": "UsedCondition",\n "description": "Indicates that the item is used.",\n "depth": 4,\n "subClassOf": "OfferItemCondition"\n },\n "OrderStatus": {\n "name": "OrderStatus",\n "description": "Enumerated status values for Order.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "OrderCancelled": {\n "name": "OrderCancelled",\n "description": "OrderStatus representing cancellation of an order.",\n "depth": 4,\n "subClassOf": "OrderStatus"\n },\n "OrderDelivered": {\n "name": "OrderDelivered",\n "description": "OrderStatus representing successful delivery of an order.",\n "depth": 4,\n "subClassOf": "OrderStatus"\n },\n "OrderInTransit": {\n "name": "OrderInTransit",\n "description": "OrderStatus representing that an order is in transit.",\n "depth": 4,\n "subClassOf": "OrderStatus"\n },\n "OrderPaymentDue": {\n "name": "OrderPaymentDue",\n "description": "OrderStatus representing that payment is due on an order.",\n "depth": 4,\n "subClassOf": "OrderStatus"\n },\n "OrderPickupAvailable": {\n "name": "OrderPickupAvailable",\n "description": "OrderStatus representing availability of an order for pickup.",\n "depth": 4,\n "subClassOf": "OrderStatus"\n },\n "OrderProblem": {\n "name": "OrderProblem",\n "description": "OrderStatus representing that there is a problem with the order.",\n "depth": 4,\n "subClassOf": "OrderStatus"\n },\n "OrderProcessing": {\n "name": "OrderProcessing",\n "description": "OrderStatus representing that an order is being processed.",\n "depth": 4,\n "subClassOf": "OrderStatus"\n },\n "OrderReturned": {\n "name": "OrderReturned",\n "description": "OrderStatus representing that an order has been returned.",\n "depth": 4,\n "subClassOf": "OrderStatus"\n },\n "PaymentMethod": {\n "name": "PaymentMethod",\n "description": "A payment method is a standardized procedure for transferring the monetary amount for a purchase...",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "PaymentCard": {\n "name": "PaymentCard",\n "description": "A payment method using a credit, debit, store or other card to associate the payment with an account.",\n "depth": 4,\n "subClassOf": "PaymentMethod"\n },\n "CreditCard": {\n "name": "CreditCard",\n "description": "A card payment method of a particular brand or name. Used to mark up a particular payment method and/or the financial product/service that supplies the card account...",\n "depth": 5,\n "subClassOf": "PaymentCard"\n },\n "PaymentStatusType": {\n "name": "PaymentStatusType",\n "description": "A specific payment status. For example, PaymentDue, PaymentComplete, etc.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "PaymentAutomaticallyApplied": {\n "name": "PaymentAutomaticallyApplied",\n "description": "An automatic payment system is in place and will be used.",\n "depth": 4,\n "subClassOf": "PaymentStatusType"\n },\n "PaymentComplete": {\n "name": "PaymentComplete",\n "description": "The payment has been received and processed.",\n "depth": 4,\n "subClassOf": "PaymentStatusType"\n },\n "PaymentDeclined": {\n "name": "PaymentDeclined",\n "description": "The payee received the payment, but it was declined for some reason.",\n "depth": 4,\n "subClassOf": "PaymentStatusType"\n },\n "PaymentDue": {\n "name": "PaymentDue",\n "description": "The payment is due, but still within an acceptable time to be received.",\n "depth": 4,\n "subClassOf": "PaymentStatusType"\n },\n "PaymentPastDue": {\n "name": "PaymentPastDue",\n "description": "The payment is due and considered late.",\n "depth": 4,\n "subClassOf": "PaymentStatusType"\n },\n "PhysicalActivityCategory": {\n "name": "PhysicalActivityCategory",\n "description": "Categories of physical activity, organized by physiologic classification.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "AerobicActivity": {\n "name": "AerobicActivity",\n "description": "Physical activity of relatively low intensity that depends primarily on the aerobic energy-generating process; during activity, the aerobic metabolism uses oxygen to adequately meet energy demands during exercise.",\n "depth": 4,\n "subClassOf": "PhysicalActivityCategory"\n },\n "AnaerobicActivity": {\n "name": "AnaerobicActivity",\n "description": "Physical activity that is of high-intensity which utilizes the anaerobic metabolism of the body.",\n "depth": 4,\n "subClassOf": "PhysicalActivityCategory"\n },\n "Balance": {\n "name": "Balance",\n "description": "Physical activity that is engaged to help maintain posture and balance.",\n "depth": 4,\n "subClassOf": "PhysicalActivityCategory"\n },\n "Flexibility": {\n "name": "Flexibility",\n "description": "Physical activity that is engaged in to improve joint and muscle flexibility.",\n "depth": 4,\n "subClassOf": "PhysicalActivityCategory"\n },\n "LeisureTimeActivity": {\n "name": "LeisureTimeActivity",\n "description": "Any physical activity engaged in for recreational purposes. Examples may include ballroom dancing, roller skating, canoeing, fishing, etc.",\n "depth": 4,\n "subClassOf": "PhysicalActivityCategory"\n },\n "OccupationalActivity": {\n "name": "OccupationalActivity",\n "description": "Any physical activity engaged in for job-related purposes. Examples may include waiting tables, maid service, carrying a mailbag, picking fruits or vegetables, construction work, etc.",\n "depth": 4,\n "subClassOf": "PhysicalActivityCategory"\n },\n "StrengthTraining": {\n "name": "StrengthTraining",\n "description": "Physical activity that is engaged in to improve muscle and bone strength...",\n "depth": 4,\n "subClassOf": "PhysicalActivityCategory"\n },\n "ProductReturnEnumeration": {\n "name": "ProductReturnEnumeration",\n "description": "ProductReturnEnumeration enumerates several kinds of product return policy...",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "ProductReturnFiniteReturnWindow": {\n "name": "ProductReturnFiniteReturnWindow",\n "description": "ProductReturnFiniteReturnWindow: there is a finite window for product returns.",\n "depth": 4,\n "subClassOf": "ProductReturnEnumeration"\n },\n "ProductReturnNotPermitted": {\n "name": "ProductReturnNotPermitted",\n "description": "ProductReturnNotPermitted: product returns are not permitted.",\n "depth": 4,\n "subClassOf": "ProductReturnEnumeration"\n },\n "ProductReturnUnlimitedWindow": {\n "name": "ProductReturnUnlimitedWindow",\n "description": "ProductReturnUnlimitedWindow: there is an unlimited window for product returns.",\n "depth": 4,\n "subClassOf": "ProductReturnEnumeration"\n },\n "ProductReturnUnspecified": {\n "name": "ProductReturnUnspecified",\n "description": "ProductReturnUnspecified: a product return policy is not specified here.",\n "depth": 4,\n "subClassOf": "ProductReturnEnumeration"\n },\n "QualitativeValue": {\n "name": "QualitativeValue",\n "description": "A predefined value for a product characteristic, e.g. the power cord plug type 'US' or the garment sizes 'S', 'M', 'L', and 'XL'.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "BedType": {\n "name": "BedType",\n "description": "A type of bed. This is used for indicating the bed or beds available in an accommodation.",\n "depth": 4,\n "subClassOf": "QualitativeValue"\n },\n "CarUsageType": {\n "name": "CarUsageType",\n "description": "A value indicating a special usage of a car, e.g. commercial rental, driving school, or as a taxi.",\n "depth": 4,\n "subClassOf": "QualitativeValue"\n },\n "DriveWheelConfigurationValue": {\n "name": "DriveWheelConfigurationValue",\n "description": "A value indicating which roadwheels will receive torque.",\n "depth": 4,\n "subClassOf": "QualitativeValue"\n },\n "SteeringPositionValue": {\n "name": "SteeringPositionValue",\n "description": "A value indicating a steering position.",\n "depth": 4,\n "subClassOf": "QualitativeValue"\n },\n "RefundTypeEnumeration": {\n "name": "RefundTypeEnumeration",\n "description": "RefundTypeEnumeration enumerates several kinds of product return refund types.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "ExchangeRefund": {\n "name": "ExchangeRefund",\n "description": "A ExchangeRefund ...",\n "depth": 4,\n "subClassOf": "RefundTypeEnumeration"\n },\n "FullRefund": {\n "name": "FullRefund",\n "description": "A FullRefund ...",\n "depth": 4,\n "subClassOf": "RefundTypeEnumeration"\n },\n "StoreCreditRefund": {\n "name": "StoreCreditRefund",\n "description": "A StoreCreditRefund ...",\n "depth": 4,\n "subClassOf": "RefundTypeEnumeration"\n },\n "ReservationStatusType": {\n "name": "ReservationStatusType",\n "description": "Enumerated status values for Reservation.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "ReservationCancelled": {\n "name": "ReservationCancelled",\n "description": "The status for a previously confirmed reservation that is now cancelled.",\n "depth": 4,\n "subClassOf": "ReservationStatusType"\n },\n "ReservationConfirmed": {\n "name": "ReservationConfirmed",\n "description": "The status of a confirmed reservation.",\n "depth": 4,\n "subClassOf": "ReservationStatusType"\n },\n "ReservationHold": {\n "name": "ReservationHold",\n "description": "The status of a reservation on hold pending an update like credit card number or flight changes.",\n "depth": 4,\n "subClassOf": "ReservationStatusType"\n },\n "ReservationPending": {\n "name": "ReservationPending",\n "description": "The status of a reservation when a request has been sent, but not confirmed.",\n "depth": 4,\n "subClassOf": "ReservationStatusType"\n },\n "RestrictedDiet": {\n "name": "RestrictedDiet",\n "description": "A diet restricted to certain foods or preparations for cultural, religious, health or lifestyle reasons.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "DiabeticDiet": {\n "name": "DiabeticDiet",\n "description": "A diet appropriate for people with diabetes.",\n "depth": 4,\n "subClassOf": "RestrictedDiet"\n },\n "GlutenFreeDiet": {\n "name": "GlutenFreeDiet",\n "description": "A diet exclusive of gluten.",\n "depth": 4,\n "subClassOf": "RestrictedDiet"\n },\n "HalalDiet": {\n "name": "HalalDiet",\n "description": "A diet conforming to Islamic dietary practices.",\n "depth": 4,\n "subClassOf": "RestrictedDiet"\n },\n "HinduDiet": {\n "name": "HinduDiet",\n "description": "A diet conforming to Hindu dietary practices, in particular, beef-free.",\n "depth": 4,\n "subClassOf": "RestrictedDiet"\n },\n "KosherDiet": {\n "name": "KosherDiet",\n "description": "A diet conforming to Jewish dietary practices.",\n "depth": 4,\n "subClassOf": "RestrictedDiet"\n },\n "LowCalorieDiet": {\n "name": "LowCalorieDiet",\n "description": "A diet focused on reduced calorie intake.",\n "depth": 4,\n "subClassOf": "RestrictedDiet"\n },\n "LowFatDiet": {\n "name": "LowFatDiet",\n "description": "A diet focused on reduced fat and cholesterol intake.",\n "depth": 4,\n "subClassOf": "RestrictedDiet"\n },\n "LowLactoseDiet": {\n "name": "LowLactoseDiet",\n "description": "A diet appropriate for people with lactose intolerance.",\n "depth": 4,\n "subClassOf": "RestrictedDiet"\n },\n "LowSaltDiet": {\n "name": "LowSaltDiet",\n "description": "A diet focused on reduced sodium intake.",\n "depth": 4,\n "subClassOf": "RestrictedDiet"\n },\n "VeganDiet": {\n "name": "VeganDiet",\n "description": "A diet exclusive of all animal products.",\n "depth": 4,\n "subClassOf": "RestrictedDiet"\n },\n "VegetarianDiet": {\n "name": "VegetarianDiet",\n "description": "A diet exclusive of animal meat.",\n "depth": 4,\n "subClassOf": "RestrictedDiet"\n },\n "ReturnFeesEnumeration": {\n "name": "ReturnFeesEnumeration",\n "description": "ReturnFeesEnumeration expresses policies for return fees.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "OriginalShippingFees": {\n "name": "OriginalShippingFees",\n "description": "OriginalShippingFees ...",\n "depth": 4,\n "subClassOf": "ReturnFeesEnumeration"\n },\n "RestockingFees": {\n "name": "RestockingFees",\n "description": "RestockingFees ...",\n "depth": 4,\n "subClassOf": "ReturnFeesEnumeration"\n },\n "ReturnShippingFees": {\n "name": "ReturnShippingFees",\n "description": "ReturnShippingFees ...",\n "depth": 4,\n "subClassOf": "ReturnFeesEnumeration"\n },\n "RsvpResponseType": {\n "name": "RsvpResponseType",\n "description": "RsvpResponseType is an enumeration type whose instances represent responding to an RSVP request.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "RsvpResponseMaybe": {\n "name": "RsvpResponseMaybe",\n "description": "The invitee may or may not attend.",\n "depth": 4,\n "subClassOf": "RsvpResponseType"\n },\n "RsvpResponseNo": {\n "name": "RsvpResponseNo",\n "description": "The invitee will not attend.",\n "depth": 4,\n "subClassOf": "RsvpResponseType"\n },\n "RsvpResponseYes": {\n "name": "RsvpResponseYes",\n "description": "The invitee will attend.",\n "depth": 4,\n "subClassOf": "RsvpResponseType"\n },\n "Specialty": {\n "name": "Specialty",\n "description": "Any branch of a field in which people typically develop specific expertise, usually after significant study, time, and effort.",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "WarrantyScope": {\n "name": "WarrantyScope",\n "description": "A range of of services that will be provided to a customer free of charge in case of a defect or malfunction of a product...",\n "depth": 3,\n "subClassOf": "Enumeration"\n },\n "FloorPlan": {\n "name": "FloorPlan",\n "description": "A FloorPlan is an explicit representation of a collection of similar accommodations, allowing the provision of common information (room counts, sizes, layout diagrams) and offers for rental or sale...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "GameServer": {\n "name": "GameServer",\n "description": "Server that provides game interaction in a multiplayer game.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "GeospatialGeometry": {\n "name": "GeospatialGeometry",\n "description": "(Eventually to be defined as) a supertype of GeoShape designed to accommodate definitions from Geo-Spatial best practices.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Grant": {\n "name": "Grant",\n "description": "A grant, typically financial or otherwise quantifiable, of resources...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "MonetaryGrant": {\n "name": "MonetaryGrant",\n "description": "A monetary grant.",\n "depth": 3,\n "subClassOf": "Grant"\n },\n "HealthInsurancePlan": {\n "name": "HealthInsurancePlan",\n "description": "A US-style health insurance plan, including PPOs, EPOs, and HMOs.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "HealthPlanCostSharingSpecification": {\n "name": "HealthPlanCostSharingSpecification",\n "description": "A description of costs to the patient under a given network or formulary.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "HealthPlanFormulary": {\n "name": "HealthPlanFormulary",\n "description": "For a given health insurance plan, the specification for costs and coverage of prescription drugs.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "HealthPlanNetwork": {\n "name": "HealthPlanNetwork",\n "description": "A US-style health insurance plan network.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Invoice": {\n "name": "Invoice",\n "description": "A statement of the money due for goods or services; a bill.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "ItemList": {\n "name": "ItemList",\n "description": "A list of items of any sort&#x2014;for example, Top 10 Movies About Weathermen, or Top 100 Party Songs...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "BreadcrumbList": {\n "name": "BreadcrumbList",\n "description": "A BreadcrumbList is an ItemList consisting of a chain of linked Web pages, typically described using at least their URL and their name, and typically ending with the current page...",\n "depth": 3,\n "subClassOf": "ItemList"\n },\n "OfferCatalog": {\n "name": "OfferCatalog",\n "description": "An OfferCatalog is an ItemList that contains related Offers and/or further OfferCatalogs that are offeredBy the same provider.",\n "depth": 3,\n "subClassOf": "ItemList"\n },\n "JobPosting": {\n "name": "JobPosting",\n "description": "A listing that describes a job opening in a certain organization.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Language": {\n "name": "Language",\n "description": "Natural languages such as Spanish, Tamil, Hindi, English, etc...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "ListItem": {\n "name": "ListItem",\n "description": "An list item, e.g. a step in a checklist or how-to description.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "HowToItem": {\n "name": "HowToItem",\n "description": "An item used as either a tool or supply when performing the instructions for how to to achieve a result.",\n "depth": 3,\n "subClassOf": "ListItem"\n },\n "HowToSupply": {\n "name": "HowToSupply",\n "description": "A supply consumed when performing the instructions for how to achieve a result.",\n "depth": 4,\n "subClassOf": "HowToItem"\n },\n "HowToTool": {\n "name": "HowToTool",\n "description": "A tool used (but not consumed) when performing instructions for how to achieve a result.",\n "depth": 4,\n "subClassOf": "HowToItem"\n },\n "MediaSubscription": {\n "name": "MediaSubscription",\n "description": "A subscription which allows a user to access media including audio, video, books, etc.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "MenuItem": {\n "name": "MenuItem",\n "description": "A food or drink item listed in a menu or menu section.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "MerchantReturnPolicy": {\n "name": "MerchantReturnPolicy",\n "description": "A MerchantReturnPolicy provides information about product return policies associated with an Organization or Product.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Observation": {\n "name": "Observation",\n "description": "Instances of the class Observation are used to specify observations about an entity (which may or may not be an instance of a StatisticalPopulation), at a particular time...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Occupation": {\n "name": "Occupation",\n "description": "A profession, may involve prolonged training and/or a formal qualification.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Offer": {\n "name": "Offer",\n "description": "An offer to transfer some rights to an item or to provide a service — for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "AggregateOffer": {\n "name": "AggregateOffer",\n "description": "When a single product is associated with multiple offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used...",\n "depth": 3,\n "subClassOf": "Offer"\n },\n "OfferForLease": {\n "name": "OfferForLease",\n "description": "An OfferForLease in Schema.org represents an Offer to lease out something, i...",\n "depth": 3,\n "subClassOf": "Offer"\n },\n "OfferForPurchase": {\n "name": "OfferForPurchase",\n "description": "An OfferForPurchase in Schema.org represents an Offer to sell something, i...",\n "depth": 3,\n "subClassOf": "Offer"\n },\n "Order": {\n "name": "Order",\n "description": "An order is a confirmation of a transaction (a receipt), which can contain multiple line items, each represented by an Offer that has been accepted by the customer.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "OrderItem": {\n "name": "OrderItem",\n "description": "An order item is a line of an order. It includes the quantity and shipping details of a bought offer.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "ParcelDelivery": {\n "name": "ParcelDelivery",\n "description": "The delivery of a parcel either via the postal service or a commercial service.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Permit": {\n "name": "Permit",\n "description": "A permit issued by an organization, e.g. a parking pass.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "GovernmentPermit": {\n "name": "GovernmentPermit",\n "description": "A permit issued by a government agency.",\n "depth": 3,\n "subClassOf": "Permit"\n },\n "ProductReturnPolicy": {\n "name": "ProductReturnPolicy",\n "description": "A ProductReturnPolicy provides information about product return policies associated with an Organization or Product.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "ProgramMembership": {\n "name": "ProgramMembership",\n "description": "Used to describe membership in a loyalty programs (e.g. \\"StarAliance\\"), traveler clubs (e...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Property": {\n "name": "Property",\n "description": "A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "PropertyValueSpecification": {\n "name": "PropertyValueSpecification",\n "description": "A Property value specification.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Quantity": {\n "name": "Quantity",\n "description": "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Distance": {\n "name": "Distance",\n "description": "Properties that take Distances as values are of the form '&lt;Number&gt; &lt;Length unit of measure&gt;'...",\n "depth": 3,\n "subClassOf": "Quantity"\n },\n "Duration": {\n "name": "Duration",\n "description": "Quantity: Duration (use ISO 8601 duration format).",\n "depth": 3,\n "subClassOf": "Quantity"\n },\n "Energy": {\n "name": "Energy",\n "description": "Properties that take Energy as values are of the form '&lt;Number&gt; &lt;Energy unit of measure&gt;'.",\n "depth": 3,\n "subClassOf": "Quantity"\n },\n "Mass": {\n "name": "Mass",\n "description": "Properties that take Mass as values are of the form '&lt;Number&gt; &lt;Mass unit of measure&gt;'...",\n "depth": 3,\n "subClassOf": "Quantity"\n },\n "Rating": {\n "name": "Rating",\n "description": "A rating is an evaluation on a numeric scale, such as 1 to 5 stars.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "AggregateRating": {\n "name": "AggregateRating",\n "description": "The average rating based on multiple ratings or reviews.",\n "depth": 3,\n "subClassOf": "Rating"\n },\n "EmployerAggregateRating": {\n "name": "EmployerAggregateRating",\n "description": "An aggregate rating of an Organization related to its role as an employer.",\n "depth": 4,\n "subClassOf": "AggregateRating"\n },\n "EndorsementRating": {\n "name": "EndorsementRating",\n "description": "An EndorsementRating is a rating that expresses some level of endorsement, for example inclusion in a \\"critic's pick\\" blog, a\\n\\"Like\\" or \\"+1\\" on a social network...",\n "depth": 3,\n "subClassOf": "Rating"\n },\n "Reservation": {\n "name": "Reservation",\n "description": "Describes a reservation for travel, dining or an event. Some reservations require tickets...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "BusReservation": {\n "name": "BusReservation",\n "description": "A reservation for bus travel. \\n\\nNote: This type is for information about actual reservations, e...",\n "depth": 3,\n "subClassOf": "Reservation"\n },\n "EventReservation": {\n "name": "EventReservation",\n "description": "A reservation for an event like a concert, sporting event, or lecture...",\n "depth": 3,\n "subClassOf": "Reservation"\n },\n "FlightReservation": {\n "name": "FlightReservation",\n "description": "A reservation for air travel.\\n\\nNote: This type is for information about actual reservations, e...",\n "depth": 3,\n "subClassOf": "Reservation"\n },\n "FoodEstablishmentReservation": {\n "name": "FoodEstablishmentReservation",\n "description": "A reservation to dine at a food-related business.\\n\\nNote: This type is for information about actual reservations, e...",\n "depth": 3,\n "subClassOf": "Reservation"\n },\n "LodgingReservation": {\n "name": "LodgingReservation",\n "description": "A reservation for lodging at a hotel, motel, inn, etc.\\n\\nNote: This type is for information about actual reservations, e...",\n "depth": 3,\n "subClassOf": "Reservation"\n },\n "RentalCarReservation": {\n "name": "RentalCarReservation",\n "description": "A reservation for a rental car.\\n\\nNote: This type is for information about actual reservations, e...",\n "depth": 3,\n "subClassOf": "Reservation"\n },\n "ReservationPackage": {\n "name": "ReservationPackage",\n "description": "A group of multiple reservations with common values for all sub-reservations.",\n "depth": 3,\n "subClassOf": "Reservation"\n },\n "TaxiReservation": {\n "name": "TaxiReservation",\n "description": "A reservation for a taxi.\\n\\nNote: This type is for information about actual reservations, e...",\n "depth": 3,\n "subClassOf": "Reservation"\n },\n "TrainReservation": {\n "name": "TrainReservation",\n "description": "A reservation for train travel.\\n\\nNote: This type is for information about actual reservations, e...",\n "depth": 3,\n "subClassOf": "Reservation"\n },\n "Role": {\n "name": "Role",\n "description": "Represents additional information about a relationship or property...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "LinkRole": {\n "name": "LinkRole",\n "description": "A Role that represents a Web link e.g. as expressed via the 'url' property...",\n "depth": 3,\n "subClassOf": "Role"\n },\n "OrganizationRole": {\n "name": "OrganizationRole",\n "description": "A subclass of Role used to describe roles within organizations.",\n "depth": 3,\n "subClassOf": "Role"\n },\n "EmployeeRole": {\n "name": "EmployeeRole",\n "description": "A subclass of OrganizationRole used to describe employee relationships.",\n "depth": 4,\n "subClassOf": "OrganizationRole"\n },\n "PerformanceRole": {\n "name": "PerformanceRole",\n "description": "A PerformanceRole is a Role that some entity places with regard to a theatrical performance, e...",\n "depth": 3,\n "subClassOf": "Role"\n },\n "Schedule": {\n "name": "Schedule",\n "description": "A schedule defines a repeating time period used to describe a regularly occurring Event...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Seat": {\n "name": "Seat",\n "description": "Used to describe a seat, such as a reserved seat in an event reservation.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Series": {\n "name": "Series",\n "description": "A Series in schema.org is a group of related items, typically but not necessarily of the same kind...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Service": {\n "name": "Service",\n "description": "A service provided by an organization, e.g. delivery service, print services, etc.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "BroadcastService": {\n "name": "BroadcastService",\n "description": "A delivery service through which content is provided via broadcast over the air or online.",\n "depth": 3,\n "subClassOf": "Service"\n },\n "RadioBroadcastService": {\n "name": "RadioBroadcastService",\n "description": "A delivery service through which radio content is provided via broadcast over the air or online.",\n "depth": 4,\n "subClassOf": "BroadcastService"\n },\n "CableOrSatelliteService": {\n "name": "CableOrSatelliteService",\n "description": "A service which provides access to media programming like TV or radio...",\n "depth": 3,\n "subClassOf": "Service"\n },\n "FinancialProduct": {\n "name": "FinancialProduct",\n "description": "A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry.",\n "depth": 3,\n "subClassOf": "Service"\n },\n "BankAccount": {\n "name": "BankAccount",\n "description": "A product or service offered by a bank whereby one may deposit, withdraw or transfer money and in some cases be paid interest.",\n "depth": 4,\n "subClassOf": "FinancialProduct"\n },\n "DepositAccount": {\n "name": "DepositAccount",\n "description": "A type of Bank Account with a main purpose of depositing funds to gain interest or other benefits.",\n "depth": 5,\n "subClassOf": "BankAccount"\n },\n "CurrencyConversionService": {\n "name": "CurrencyConversionService",\n "description": "A service to convert funds from one currency to another currency.",\n "depth": 4,\n "subClassOf": "FinancialProduct"\n },\n "InvestmentOrDeposit": {\n "name": "InvestmentOrDeposit",\n "description": "A type of financial product that typically requires the client to transfer funds to a financial service in return for potential beneficial financial return.",\n "depth": 4,\n "subClassOf": "FinancialProduct"\n },\n "BrokerageAccount": {\n "name": "BrokerageAccount",\n "description": "An account that allows an investor to deposit funds and place investment orders with a licensed broker or brokerage firm.",\n "depth": 5,\n "subClassOf": "InvestmentOrDeposit"\n },\n "InvestmentFund": {\n "name": "InvestmentFund",\n "description": "A company or fund that gathers capital from a number of investors to create a pool of money that is then re-invested into stocks, bonds and other assets.",\n "depth": 5,\n "subClassOf": "InvestmentOrDeposit"\n },\n "LoanOrCredit": {\n "name": "LoanOrCredit",\n "description": "A financial product for the loaning of an amount of money under agreed terms and charges.",\n "depth": 4,\n "subClassOf": "FinancialProduct"\n },\n "MortgageLoan": {\n "name": "MortgageLoan",\n "description": "A loan in which property or real estate is used as collateral...",\n "depth": 5,\n "subClassOf": "LoanOrCredit"\n },\n "PaymentService": {\n "name": "PaymentService",\n "description": "A Service to transfer funds from a person or organization to a beneficiary person or organization.",\n "depth": 4,\n "subClassOf": "FinancialProduct"\n },\n "FoodService": {\n "name": "FoodService",\n "description": "A food service, like breakfast, lunch, or dinner.",\n "depth": 3,\n "subClassOf": "Service"\n },\n "GovernmentService": {\n "name": "GovernmentService",\n "description": "A service provided by a government organization, e.g. food stamps, veterans benefits, etc.",\n "depth": 3,\n "subClassOf": "Service"\n },\n "Taxi": {\n "name": "Taxi",\n "description": "A taxi.",\n "depth": 3,\n "subClassOf": "Service"\n },\n "TaxiService": {\n "name": "TaxiService",\n "description": "A service for a vehicle for hire with a driver for local travel...",\n "depth": 3,\n "subClassOf": "Service"\n },\n "WebAPI": {\n "name": "WebAPI",\n "description": "An application programming interface accessible over Web/Internet technologies.",\n "depth": 3,\n "subClassOf": "Service"\n },\n "ServiceChannel": {\n "name": "ServiceChannel",\n "description": "A means for accessing a service, e.g. a government office location, web site, or phone number.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "SpeakableSpecification": {\n "name": "SpeakableSpecification",\n "description": "A SpeakableSpecification indicates (typically via xpath or cssSelector) sections of a document that are highlighted as particularly speakable...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "StatisticalPopulation": {\n "name": "StatisticalPopulation",\n "description": "A StatisticalPopulation is a set of instances of a certain given type that satisfy some set of constraints...",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "StructuredValue": {\n "name": "StructuredValue",\n "description": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "ContactPoint": {\n "name": "ContactPoint",\n "description": "A contact point&#x2014;for example, a Customer Complaints department.",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "PostalAddress": {\n "name": "PostalAddress",\n "description": "The mailing address.",\n "depth": 4,\n "subClassOf": "ContactPoint"\n },\n "DatedMoneySpecification": {\n "name": "DatedMoneySpecification",\n "description": "A DatedMoneySpecification represents monetary values with optional start and end dates...",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "EngineSpecification": {\n "name": "EngineSpecification",\n "description": "Information about the engine of the vehicle. A vehicle can have multiple engines represented by multiple engine specification entities.",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "ExchangeRateSpecification": {\n "name": "ExchangeRateSpecification",\n "description": "A structured value representing exchange rate.",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "GeoCoordinates": {\n "name": "GeoCoordinates",\n "description": "The geographic coordinates of a place or event.",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "GeoShape": {\n "name": "GeoShape",\n "description": "The geographic shape of a place. A GeoShape can be described using several properties whose values are based on latitude/longitude pairs...",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "GeoCircle": {\n "name": "GeoCircle",\n "description": "A GeoCircle is a GeoShape representing a circular geographic area...",\n "depth": 4,\n "subClassOf": "GeoShape"\n },\n "InteractionCounter": {\n "name": "InteractionCounter",\n "description": "A summary of how users have interacted with this CreativeWork...",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "MonetaryAmount": {\n "name": "MonetaryAmount",\n "description": "A monetary value or range. This type can be used to describe an amount of money such as $50 USD, or a range as in describing a bank account being suitable for a balance between £1,000 and £1,000,000 GBP, or the value of a salary, etc...",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "NutritionInformation": {\n "name": "NutritionInformation",\n "description": "Nutritional information about the recipe.",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "OpeningHoursSpecification": {\n "name": "OpeningHoursSpecification",\n "description": "A structured value providing information about the opening hours of a place or a certain service inside a place...",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "OwnershipInfo": {\n "name": "OwnershipInfo",\n "description": "A structured value providing information about when a certain organization or person owned a certain product.",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "PriceSpecification": {\n "name": "PriceSpecification",\n "description": "A structured value representing a price or price range. Typically, only the subclasses of this type are used for markup...",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "CompoundPriceSpecification": {\n "name": "CompoundPriceSpecification",\n "description": "A compound price specification is one that bundles multiple prices that all apply in combination for different dimensions of consumption...",\n "depth": 4,\n "subClassOf": "PriceSpecification"\n },\n "DeliveryChargeSpecification": {\n "name": "DeliveryChargeSpecification",\n "description": "The price for the delivery of an offer using a particular delivery method.",\n "depth": 4,\n "subClassOf": "PriceSpecification"\n },\n "PaymentChargeSpecification": {\n "name": "PaymentChargeSpecification",\n "description": "The costs of settling the payment using a particular payment method.",\n "depth": 4,\n "subClassOf": "PriceSpecification"\n },\n "UnitPriceSpecification": {\n "name": "UnitPriceSpecification",\n "description": "The price asked for a given offer by the respective organization or person.",\n "depth": 4,\n "subClassOf": "PriceSpecification"\n },\n "PropertyValue": {\n "name": "PropertyValue",\n "description": "A property-value pair, e.g. representing a feature of a product or place...",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "LocationFeatureSpecification": {\n "name": "LocationFeatureSpecification",\n "description": "Specifies a location feature by providing a structured value representing a feature of an accommodation as a property-value pair of varying degrees of formality.",\n "depth": 4,\n "subClassOf": "PropertyValue"\n },\n "QuantitativeValue": {\n "name": "QuantitativeValue",\n "description": "A point value or interval for product characteristics and other purposes.",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "QuantitativeValueDistribution": {\n "name": "QuantitativeValueDistribution",\n "description": "A statistical distribution of values.",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "MonetaryAmountDistribution": {\n "name": "MonetaryAmountDistribution",\n "description": "A statistical distribution of monetary amounts.",\n "depth": 4,\n "subClassOf": "QuantitativeValueDistribution"\n },\n "RepaymentSpecification": {\n "name": "RepaymentSpecification",\n "description": "A structured value representing repayment.",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "TypeAndQuantityNode": {\n "name": "TypeAndQuantityNode",\n "description": "A structured value indicating the quantity, unit of measurement, and business function of goods included in a bundle offer.",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "WarrantyPromise": {\n "name": "WarrantyPromise",\n "description": "A structured value representing the duration and scope of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.",\n "depth": 3,\n "subClassOf": "StructuredValue"\n },\n "Ticket": {\n "name": "Ticket",\n "description": "Used to describe a ticket to an event, a flight, a bus ride, etc.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "Trip": {\n "name": "Trip",\n "description": "A trip or journey. An itinerary of visits to one or more places.",\n "depth": 2,\n "subClassOf": "Intangible"\n },\n "BusTrip": {\n "name": "BusTrip",\n "description": "A trip on a commercial bus line.",\n "depth": 3,\n "subClassOf": "Trip"\n },\n "Flight": {\n "name": "Flight",\n "description": "An airline flight.",\n "depth": 3,\n "subClassOf": "Trip"\n },\n "TouristTrip": {\n "name": "TouristTrip",\n "description": "A tourist trip. A created itinerary of visits to one or more places of interest (TouristAttraction/TouristDestination) often linked by a similar theme, geographic area, or interest to a particular touristType...",\n "depth": 3,\n "subClassOf": "Trip"\n },\n "TrainTrip": {\n "name": "TrainTrip",\n "description": "A trip on a commercial train line.",\n "depth": 3,\n "subClassOf": "Trip"\n },\n "MedicalEntity": {\n "name": "MedicalEntity",\n "description": "The most generic type of entity related to health and the practice of medicine.",\n "depth": 1,\n "subClassOf": "Thing"\n },\n "AnatomicalStructure": {\n "name": "AnatomicalStructure",\n "description": "Any part of the human body, typically a component of an anatomical system...",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "Bone": {\n "name": "Bone",\n "description": "Rigid connective tissue that comprises up the skeletal structure of the human body.",\n "depth": 3,\n "subClassOf": "AnatomicalStructure"\n },\n "BrainStructure": {\n "name": "BrainStructure",\n "description": "Any anatomical structure which pertains to the soft nervous tissue functioning as the coordinating center of sensation and intellectual and nervous activity.",\n "depth": 3,\n "subClassOf": "AnatomicalStructure"\n },\n "Joint": {\n "name": "Joint",\n "description": "The anatomical location at which two or more bones make contact.",\n "depth": 3,\n "subClassOf": "AnatomicalStructure"\n },\n "Ligament": {\n "name": "Ligament",\n "description": "A short band of tough, flexible, fibrous connective tissue that functions to connect multiple bones, cartilages, and structurally support joints.",\n "depth": 3,\n "subClassOf": "AnatomicalStructure"\n },\n "Muscle": {\n "name": "Muscle",\n "description": "A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement.",\n "depth": 3,\n "subClassOf": "AnatomicalStructure"\n },\n "Nerve": {\n "name": "Nerve",\n "description": "A common pathway for the electrochemical nerve impulses that are transmitted along each of the axons.",\n "depth": 3,\n "subClassOf": "AnatomicalStructure"\n },\n "Vessel": {\n "name": "Vessel",\n "description": "A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body.",\n "depth": 3,\n "subClassOf": "AnatomicalStructure"\n },\n "Artery": {\n "name": "Artery",\n "description": "A type of blood vessel that specifically carries blood away from the heart.",\n "depth": 4,\n "subClassOf": "Vessel"\n },\n "LymphaticVessel": {\n "name": "LymphaticVessel",\n "description": "A type of blood vessel that specifically carries lymph fluid unidirectionally toward the heart.",\n "depth": 4,\n "subClassOf": "Vessel"\n },\n "Vein": {\n "name": "Vein",\n "description": "A type of blood vessel that specifically carries blood to the heart.",\n "depth": 4,\n "subClassOf": "Vessel"\n },\n "AnatomicalSystem": {\n "name": "AnatomicalSystem",\n "description": "An anatomical system is a group of anatomical structures that work together to perform a certain task...",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "LifestyleModification": {\n "name": "LifestyleModification",\n "description": "A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition.",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "PhysicalActivity": {\n "name": "PhysicalActivity",\n "description": "Any bodily activity that enhances or maintains physical fitness and overall health and wellness...",\n "depth": 3,\n "subClassOf": "LifestyleModification"\n },\n "MedicalCause": {\n "name": "MedicalCause",\n "description": "The causative agent(s) that are responsible for the pathophysiologic process that eventually results in a medical condition, symptom or sign...",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "MedicalCondition": {\n "name": "MedicalCondition",\n "description": "Any condition of the human body that affects the normal functioning of a person, whether physically or mentally...",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "InfectiousDisease": {\n "name": "InfectiousDisease",\n "description": "An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions...",\n "depth": 3,\n "subClassOf": "MedicalCondition"\n },\n "MedicalSignOrSymptom": {\n "name": "MedicalSignOrSymptom",\n "description": "Any feature associated or not with a medical condition. In medicine a symptom is generally subjective while a sign is objective.",\n "depth": 3,\n "subClassOf": "MedicalCondition"\n },\n "MedicalSign": {\n "name": "MedicalSign",\n "description": "Any physical manifestation of a person's medical condition discoverable by objective diagnostic tests or physical examination.",\n "depth": 4,\n "subClassOf": "MedicalSignOrSymptom"\n },\n "VitalSign": {\n "name": "VitalSign",\n "description": "Vital signs are measures of various physiological functions in order to assess the most basic body functions.",\n "depth": 5,\n "subClassOf": "MedicalSign"\n },\n "MedicalSymptom": {\n "name": "MedicalSymptom",\n "description": "Any complaint sensed and expressed by the patient (therefore defined as subjective) like stomachache, lower-back pain, or fatigue.",\n "depth": 4,\n "subClassOf": "MedicalSignOrSymptom"\n },\n "MedicalContraindication": {\n "name": "MedicalContraindication",\n "description": "A condition or factor that serves as a reason to withhold a certain medical therapy...",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "MedicalDevice": {\n "name": "MedicalDevice",\n "description": "Any object used in a medical capacity, such as to diagnose or treat a patient.",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "MedicalGuideline": {\n "name": "MedicalGuideline",\n "description": "Any recommendation made by a standard society (e.g. ACC/AHA) or consensus statement that denotes how to diagnose and treat a particular condition...",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "MedicalGuidelineContraindication": {\n "name": "MedicalGuidelineContraindication",\n "description": "A guideline contraindication that designates a process as harmful and where quality of the data supporting the contraindication is sound.",\n "depth": 3,\n "subClassOf": "MedicalGuideline"\n },\n "MedicalGuidelineRecommendation": {\n "name": "MedicalGuidelineRecommendation",\n "description": "A guideline recommendation that is regarded as efficacious and where quality of the data supporting the recommendation is sound.",\n "depth": 3,\n "subClassOf": "MedicalGuideline"\n },\n "MedicalIndication": {\n "name": "MedicalIndication",\n "description": "A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc.",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "ApprovedIndication": {\n "name": "ApprovedIndication",\n "description": "An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US.",\n "depth": 3,\n "subClassOf": "MedicalIndication"\n },\n "PreventionIndication": {\n "name": "PreventionIndication",\n "description": "An indication for preventing an underlying condition, symptom, etc.",\n "depth": 3,\n "subClassOf": "MedicalIndication"\n },\n "TreatmentIndication": {\n "name": "TreatmentIndication",\n "description": "An indication for treating an underlying condition, symptom, etc.",\n "depth": 3,\n "subClassOf": "MedicalIndication"\n },\n "MedicalIntangible": {\n "name": "MedicalIntangible",\n "description": "A utility class that serves as the umbrella for a number of 'intangible' things in the medical space.",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "DDxElement": {\n "name": "DDxElement",\n "description": "An alternative, closely-related condition typically considered later in the differential diagnosis process along with the signs that are used to distinguish it.",\n "depth": 3,\n "subClassOf": "MedicalIntangible"\n },\n "DoseSchedule": {\n "name": "DoseSchedule",\n "description": "A specific dosing schedule for a drug or supplement.",\n "depth": 3,\n "subClassOf": "MedicalIntangible"\n },\n "MaximumDoseSchedule": {\n "name": "MaximumDoseSchedule",\n "description": "The maximum dosing schedule considered safe for a drug or supplement as recommended by an authority or by the drug/supplement's manufacturer...",\n "depth": 4,\n "subClassOf": "DoseSchedule"\n },\n "RecommendedDoseSchedule": {\n "name": "RecommendedDoseSchedule",\n "description": "A recommended dosing schedule for a drug or supplement as prescribed or recommended by an authority or by the drug/supplement's manufacturer...",\n "depth": 4,\n "subClassOf": "DoseSchedule"\n },\n "ReportedDoseSchedule": {\n "name": "ReportedDoseSchedule",\n "description": "A patient-reported or observed dosing schedule for a drug or supplement.",\n "depth": 4,\n "subClassOf": "DoseSchedule"\n },\n "DrugLegalStatus": {\n "name": "DrugLegalStatus",\n "description": "The legal availability status of a medical drug.",\n "depth": 3,\n "subClassOf": "MedicalIntangible"\n },\n "DrugStrength": {\n "name": "DrugStrength",\n "description": "A specific strength in which a medical drug is available in a specific country.",\n "depth": 3,\n "subClassOf": "MedicalIntangible"\n },\n "MedicalConditionStage": {\n "name": "MedicalConditionStage",\n "description": "A stage of a medical condition, such as 'Stage IIIa'.",\n "depth": 3,\n "subClassOf": "MedicalIntangible"\n },\n "MedicalProcedure": {\n "name": "MedicalProcedure",\n "description": "A process of care used in either a diagnostic, therapeutic, preventive or palliative capacity that relies on invasive (surgical), non-invasive, or other techniques.",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "DiagnosticProcedure": {\n "name": "DiagnosticProcedure",\n "description": "A medical procedure intended primarily for diagnostic, as opposed to therapeutic, purposes.",\n "depth": 3,\n "subClassOf": "MedicalProcedure"\n },\n "PalliativeProcedure": {\n "name": "PalliativeProcedure",\n "description": "A medical procedure intended primarily for palliative purposes, aimed at relieving the symptoms of an underlying health condition.",\n "depth": 3,\n "subClassOf": "MedicalProcedure"\n },\n "SurgicalProcedure": {\n "name": "SurgicalProcedure",\n "description": "A medical procedure involving an incision with instruments; performed for diagnose, or therapeutic purposes.",\n "depth": 3,\n "subClassOf": "MedicalProcedure"\n },\n "TherapeuticProcedure": {\n "name": "TherapeuticProcedure",\n "description": "A medical procedure intended primarily for therapeutic purposes, aimed at improving a health condition.",\n "depth": 3,\n "subClassOf": "MedicalProcedure"\n },\n "MedicalTherapy": {\n "name": "MedicalTherapy",\n "description": "Any medical intervention designed to prevent, treat, and cure human diseases and medical conditions, including both curative and palliative therapies...",\n "depth": 4,\n "subClassOf": "TherapeuticProcedure"\n },\n "OccupationalTherapy": {\n "name": "OccupationalTherapy",\n "description": "A treatment of people with physical, emotional, or social problems, using purposeful activity to help them overcome or learn to deal with their problems.",\n "depth": 5,\n "subClassOf": "MedicalTherapy"\n },\n "PhysicalTherapy": {\n "name": "PhysicalTherapy",\n "description": "A process of progressive physical care and rehabilitation aimed at improving a health condition.",\n "depth": 5,\n "subClassOf": "MedicalTherapy"\n },\n "RadiationTherapy": {\n "name": "RadiationTherapy",\n "description": "A process of care using radiation aimed at improving a health condition.",\n "depth": 5,\n "subClassOf": "MedicalTherapy"\n },\n "RespiratoryTherapy": {\n "name": "RespiratoryTherapy",\n "description": "The therapy that is concerned with the maintenance or improvement of respiratory function (as in patients with pulmonary disease).",\n "depth": 5,\n "subClassOf": "MedicalTherapy"\n },\n "PsychologicalTreatment": {\n "name": "PsychologicalTreatment",\n "description": "A process of care relying upon counseling, dialogue and communication aimed at improving a mental health condition without use of drugs.",\n "depth": 4,\n "subClassOf": "TherapeuticProcedure"\n },\n "MedicalRiskEstimator": {\n "name": "MedicalRiskEstimator",\n "description": "Any rule set or interactive tool for estimating the risk of developing a complication or condition.",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "MedicalRiskCalculator": {\n "name": "MedicalRiskCalculator",\n "description": "A complex mathematical calculation requiring an online calculator, used to assess prognosis...",\n "depth": 3,\n "subClassOf": "MedicalRiskEstimator"\n },\n "MedicalRiskScore": {\n "name": "MedicalRiskScore",\n "description": "A simple system that adds up the number of risk factors to yield a score that is associated with prognosis, e...",\n "depth": 3,\n "subClassOf": "MedicalRiskEstimator"\n },\n "MedicalRiskFactor": {\n "name": "MedicalRiskFactor",\n "description": "A risk factor is anything that increases a person's likelihood of developing or contracting a disease, medical condition, or complication.",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "MedicalStudy": {\n "name": "MedicalStudy",\n "description": "A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not...",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "MedicalObservationalStudy": {\n "name": "MedicalObservationalStudy",\n "description": "An observational study is a type of medical study that attempts to infer the possible effect of a treatment through observation of a cohort of subjects over a period of time...",\n "depth": 3,\n "subClassOf": "MedicalStudy"\n },\n "MedicalTrial": {\n "name": "MedicalTrial",\n "description": "A medical trial is a type of medical study that uses scientific process used to compare the safety and efficacy of medical therapies or medical procedures...",\n "depth": 3,\n "subClassOf": "MedicalStudy"\n },\n "MedicalTest": {\n "name": "MedicalTest",\n "description": "Any medical test, typically performed for diagnostic purposes.",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "BloodTest": {\n "name": "BloodTest",\n "description": "A medical test performed on a sample of a patient's blood.",\n "depth": 3,\n "subClassOf": "MedicalTest"\n },\n "ImagingTest": {\n "name": "ImagingTest",\n "description": "Any medical imaging modality typically used for diagnostic purposes.",\n "depth": 3,\n "subClassOf": "MedicalTest"\n },\n "MedicalTestPanel": {\n "name": "MedicalTestPanel",\n "description": "Any collection of tests commonly ordered together.",\n "depth": 3,\n "subClassOf": "MedicalTest"\n },\n "PathologyTest": {\n "name": "PathologyTest",\n "description": "A medical test performed by a laboratory that typically involves examination of a tissue sample by a pathologist.",\n "depth": 3,\n "subClassOf": "MedicalTest"\n },\n "Substance": {\n "name": "Substance",\n "description": "Any matter of defined composition that has discrete existence, whose origin may be biological, mineral or chemical.",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "DietarySupplement": {\n "name": "DietarySupplement",\n "description": "A product taken by mouth that contains a dietary ingredient intended to supplement the diet...",\n "depth": 3,\n "subClassOf": "Substance"\n },\n "Drug": {\n "name": "Drug",\n "description": "A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism...",\n "depth": 3,\n "subClassOf": "Substance"\n },\n "SuperficialAnatomy": {\n "name": "SuperficialAnatomy",\n "description": "Anatomical features that can be observed by sight (without dissection), including the form and proportions of the human body as well as surface landmarks that correspond to deeper subcutaneous structures...",\n "depth": 2,\n "subClassOf": "MedicalEntity"\n },\n "Organization": {\n "name": "Organization",\n "description": "An organization such as a school, NGO, corporation, club, etc.",\n "depth": 1,\n "subClassOf": "Thing"\n },\n "Airline": {\n "name": "Airline",\n "description": "An organization that provides flights for passengers.",\n "depth": 2,\n "subClassOf": "Organization"\n },\n "Consortium": {\n "name": "Consortium",\n "description": "A Consortium is a membership Organization whose members are typically Organizations.",\n "depth": 2,\n "subClassOf": "Organization"\n },\n "Corporation": {\n "name": "Corporation",\n "description": "Organization: A business corporation.",\n "depth": 2,\n "subClassOf": "Organization"\n },\n "EducationalOrganization": {\n "name": "EducationalOrganization",\n "description": "An educational organization.",\n "depth": 2,\n "subClassOf": "Organization"\n },\n "CollegeOrUniversity": {\n "name": "CollegeOrUniversity",\n "description": "A college, university, or other third-level educational institution.",\n "depth": 3,\n "subClassOf": "EducationalOrganization"\n },\n "ElementarySchool": {\n "name": "ElementarySchool",\n "description": "An elementary school.",\n "depth": 3,\n "subClassOf": "EducationalOrganization"\n },\n "HighSchool": {\n "name": "HighSchool",\n "description": "A high school.",\n "depth": 3,\n "subClassOf": "EducationalOrganization"\n },\n "MiddleSchool": {\n "name": "MiddleSchool",\n "description": "A middle school (typically for children aged around 11-14, although this varies somewhat).",\n "depth": 3,\n "subClassOf": "EducationalOrganization"\n },\n "Preschool": {\n "name": "Preschool",\n "description": "A preschool.",\n "depth": 3,\n "subClassOf": "EducationalOrganization"\n },\n "School": {\n "name": "School",\n "description": "A school.",\n "depth": 3,\n "subClassOf": "EducationalOrganization"\n },\n "FundingScheme": {\n "name": "FundingScheme",\n "description": "A FundingScheme combines organizational, project and policy aspects of grant-based funding\\n that sets guidelines, principles and mechanisms to support other kinds of projects and activities...",\n "depth": 2,\n "subClassOf": "Organization"\n },\n "GovernmentOrganization": {\n "name": "GovernmentOrganization",\n "description": "A governmental organization or agency.",\n "depth": 2,\n "subClassOf": "Organization"\n },\n "LibrarySystem": {\n "name": "LibrarySystem",\n "description": "A LibrarySystem is a collaborative system amongst several libraries.",\n "depth": 2,\n "subClassOf": "Organization"\n },\n "LocalBusiness": {\n "name": "LocalBusiness",\n "description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.",\n "depth": 2,\n "subClassOf": "Organization"\n },\n "AnimalShelter": {\n "name": "AnimalShelter",\n "description": "Animal shelter.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "ArchiveOrganization": {\n "name": "ArchiveOrganization",\n "description": "An organization with archival holdings. An organization which keeps and preserves archival material and typically makes it accessible to the public.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "AutomotiveBusiness": {\n "name": "AutomotiveBusiness",\n "description": "Car repair, sales, or parts.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "AutoBodyShop": {\n "name": "AutoBodyShop",\n "description": "Auto body shop.",\n "depth": 4,\n "subClassOf": "AutomotiveBusiness"\n },\n "AutoDealer": {\n "name": "AutoDealer",\n "description": "An car dealership.",\n "depth": 4,\n "subClassOf": "AutomotiveBusiness"\n },\n "AutoPartsStore": {\n "name": "AutoPartsStore",\n "description": "An auto parts store.",\n "depth": 4,\n "subClassOf": "AutomotiveBusiness"\n },\n "AutoRental": {\n "name": "AutoRental",\n "description": "A car rental business.",\n "depth": 4,\n "subClassOf": "AutomotiveBusiness"\n },\n "AutoRepair": {\n "name": "AutoRepair",\n "description": "Car repair business.",\n "depth": 4,\n "subClassOf": "AutomotiveBusiness"\n },\n "AutoWash": {\n "name": "AutoWash",\n "description": "A car wash business.",\n "depth": 4,\n "subClassOf": "AutomotiveBusiness"\n },\n "GasStation": {\n "name": "GasStation",\n "description": "A gas station.",\n "depth": 4,\n "subClassOf": "AutomotiveBusiness"\n },\n "MotorcycleDealer": {\n "name": "MotorcycleDealer",\n "description": "A motorcycle dealer.",\n "depth": 4,\n "subClassOf": "AutomotiveBusiness"\n },\n "MotorcycleRepair": {\n "name": "MotorcycleRepair",\n "description": "A motorcycle repair shop.",\n "depth": 4,\n "subClassOf": "AutomotiveBusiness"\n },\n "ChildCare": {\n "name": "ChildCare",\n "description": "A Childcare center.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "Dentist": {\n "name": "Dentist",\n "description": "A dentist.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "DryCleaningOrLaundry": {\n "name": "DryCleaningOrLaundry",\n "description": "A dry-cleaning business.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "EmergencyService": {\n "name": "EmergencyService",\n "description": "An emergency service, such as a fire station or ER.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "FireStation": {\n "name": "FireStation",\n "description": "A fire station. With firemen.",\n "depth": 4,\n "subClassOf": "EmergencyService"\n },\n "Hospital": {\n "name": "Hospital",\n "description": "A hospital.",\n "depth": 4,\n "subClassOf": "EmergencyService"\n },\n "PoliceStation": {\n "name": "PoliceStation",\n "description": "A police station.",\n "depth": 4,\n "subClassOf": "EmergencyService"\n },\n "EmploymentAgency": {\n "name": "EmploymentAgency",\n "description": "An employment agency.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "EntertainmentBusiness": {\n "name": "EntertainmentBusiness",\n "description": "A business providing entertainment.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "AdultEntertainment": {\n "name": "AdultEntertainment",\n "description": "An adult entertainment establishment.",\n "depth": 4,\n "subClassOf": "EntertainmentBusiness"\n },\n "AmusementPark": {\n "name": "AmusementPark",\n "description": "An amusement park.",\n "depth": 4,\n "subClassOf": "EntertainmentBusiness"\n },\n "ArtGallery": {\n "name": "ArtGallery",\n "description": "An art gallery.",\n "depth": 4,\n "subClassOf": "EntertainmentBusiness"\n },\n "Casino": {\n "name": "Casino",\n "description": "A casino.",\n "depth": 4,\n "subClassOf": "EntertainmentBusiness"\n },\n "ComedyClub": {\n "name": "ComedyClub",\n "description": "A comedy club.",\n "depth": 4,\n "subClassOf": "EntertainmentBusiness"\n },\n "MovieTheater": {\n "name": "MovieTheater",\n "description": "A movie theater.",\n "depth": 4,\n "subClassOf": "EntertainmentBusiness"\n },\n "NightClub": {\n "name": "NightClub",\n "description": "A nightclub or discotheque.",\n "depth": 4,\n "subClassOf": "EntertainmentBusiness"\n },\n "FinancialService": {\n "name": "FinancialService",\n "description": "Financial services business.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "AccountingService": {\n "name": "AccountingService",\n "description": "Accountancy business.\\n\\nAs a LocalBusiness it can be described as a provider of one or more Service(s).",\n "depth": 4,\n "subClassOf": "FinancialService"\n },\n "AutomatedTeller": {\n "name": "AutomatedTeller",\n "description": "ATM/cash machine.",\n "depth": 4,\n "subClassOf": "FinancialService"\n },\n "BankOrCreditUnion": {\n "name": "BankOrCreditUnion",\n "description": "Bank or credit union.",\n "depth": 4,\n "subClassOf": "FinancialService"\n },\n "InsuranceAgency": {\n "name": "InsuranceAgency",\n "description": "An Insurance agency.",\n "depth": 4,\n "subClassOf": "FinancialService"\n },\n "FoodEstablishment": {\n "name": "FoodEstablishment",\n "description": "A food-related business.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "Bakery": {\n "name": "Bakery",\n "description": "A bakery.",\n "depth": 4,\n "subClassOf": "FoodEstablishment"\n },\n "BarOrPub": {\n "name": "BarOrPub",\n "description": "A bar or pub.",\n "depth": 4,\n "subClassOf": "FoodEstablishment"\n },\n "Brewery": {\n "name": "Brewery",\n "description": "Brewery.",\n "depth": 4,\n "subClassOf": "FoodEstablishment"\n },\n "CafeOrCoffeeShop": {\n "name": "CafeOrCoffeeShop",\n "description": "A cafe or coffee shop.",\n "depth": 4,\n "subClassOf": "FoodEstablishment"\n },\n "Distillery": {\n "name": "Distillery",\n "description": "A distillery.",\n "depth": 4,\n "subClassOf": "FoodEstablishment"\n },\n "FastFoodRestaurant": {\n "name": "FastFoodRestaurant",\n "description": "A fast-food restaurant.",\n "depth": 4,\n "subClassOf": "FoodEstablishment"\n },\n "IceCreamShop": {\n "name": "IceCreamShop",\n "description": "An ice cream shop.",\n "depth": 4,\n "subClassOf": "FoodEstablishment"\n },\n "Restaurant": {\n "name": "Restaurant",\n "description": "A restaurant.",\n "depth": 4,\n "subClassOf": "FoodEstablishment"\n },\n "Winery": {\n "name": "Winery",\n "description": "A winery.",\n "depth": 4,\n "subClassOf": "FoodEstablishment"\n },\n "GovernmentOffice": {\n "name": "GovernmentOffice",\n "description": "A government office&#x2014;for example, an IRS or DMV office.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "PostOffice": {\n "name": "PostOffice",\n "description": "A post office.",\n "depth": 4,\n "subClassOf": "GovernmentOffice"\n },\n "HealthAndBeautyBusiness": {\n "name": "HealthAndBeautyBusiness",\n "description": "Health and beauty.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "BeautySalon": {\n "name": "BeautySalon",\n "description": "Beauty salon.",\n "depth": 4,\n "subClassOf": "HealthAndBeautyBusiness"\n },\n "DaySpa": {\n "name": "DaySpa",\n "description": "A day spa.",\n "depth": 4,\n "subClassOf": "HealthAndBeautyBusiness"\n },\n "HairSalon": {\n "name": "HairSalon",\n "description": "A hair salon.",\n "depth": 4,\n "subClassOf": "HealthAndBeautyBusiness"\n },\n "HealthClub": {\n "name": "HealthClub",\n "description": "A health club.",\n "depth": 4,\n "subClassOf": "HealthAndBeautyBusiness"\n },\n "NailSalon": {\n "name": "NailSalon",\n "description": "A nail salon.",\n "depth": 4,\n "subClassOf": "HealthAndBeautyBusiness"\n },\n "TattooParlor": {\n "name": "TattooParlor",\n "description": "A tattoo parlor.",\n "depth": 4,\n "subClassOf": "HealthAndBeautyBusiness"\n },\n "HomeAndConstructionBusiness": {\n "name": "HomeAndConstructionBusiness",\n "description": "A construction business.\\n\\nA HomeAndConstructionBusiness is a LocalBusiness that provides services around homes and buildings...",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "Electrician": {\n "name": "Electrician",\n "description": "An electrician.",\n "depth": 4,\n "subClassOf": "HomeAndConstructionBusiness"\n },\n "GeneralContractor": {\n "name": "GeneralContractor",\n "description": "A general contractor.",\n "depth": 4,\n "subClassOf": "HomeAndConstructionBusiness"\n },\n "HVACBusiness": {\n "name": "HVACBusiness",\n "description": "A business that provide Heating, Ventilation and Air Conditioning services.",\n "depth": 4,\n "subClassOf": "HomeAndConstructionBusiness"\n },\n "HousePainter": {\n "name": "HousePainter",\n "description": "A house painting service.",\n "depth": 4,\n "subClassOf": "HomeAndConstructionBusiness"\n },\n "Locksmith": {\n "name": "Locksmith",\n "description": "A locksmith.",\n "depth": 4,\n "subClassOf": "HomeAndConstructionBusiness"\n },\n "MovingCompany": {\n "name": "MovingCompany",\n "description": "A moving company.",\n "depth": 4,\n "subClassOf": "HomeAndConstructionBusiness"\n },\n "Plumber": {\n "name": "Plumber",\n "description": "A plumbing service.",\n "depth": 4,\n "subClassOf": "HomeAndConstructionBusiness"\n },\n "RoofingContractor": {\n "name": "RoofingContractor",\n "description": "A roofing contractor.",\n "depth": 4,\n "subClassOf": "HomeAndConstructionBusiness"\n },\n "InternetCafe": {\n "name": "InternetCafe",\n "description": "An internet cafe.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "LegalService": {\n "name": "LegalService",\n "description": "A LegalService is a business that provides legally-oriented services, advice and representation, e...",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "Attorney": {\n "name": "Attorney",\n "description": "Professional service: Attorney. \\n\\nThis type is deprecated - LegalService is more inclusive and less ambiguous.",\n "depth": 4,\n "subClassOf": "LegalService"\n },\n "Notary": {\n "name": "Notary",\n "description": "A notary.",\n "depth": 4,\n "subClassOf": "LegalService"\n },\n "Library": {\n "name": "Library",\n "description": "A library.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "LodgingBusiness": {\n "name": "LodgingBusiness",\n "description": "A lodging business, such as a motel, hotel, or inn.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "BedAndBreakfast": {\n "name": "BedAndBreakfast",\n "description": "Bed and breakfast.\\n\\nSee also the dedicated document on the use of schema...",\n "depth": 4,\n "subClassOf": "LodgingBusiness"\n },\n "Campground": {\n "name": "Campground",\n "description": "A camping site, campsite, or Campground is a place used for overnight stay in the outdoors, typically containing individual CampingPitch locations...",\n "depth": 4,\n "subClassOf": "LodgingBusiness"\n },\n "Hostel": {\n "name": "Hostel",\n "description": "A hostel - cheap accommodation, often in shared dormitories.\\n\\nSee also the dedicated document on the use of schema...",\n "depth": 4,\n "subClassOf": "LodgingBusiness"\n },\n "Hotel": {\n "name": "Hotel",\n "description": "A hotel is an establishment that provides lodging paid on a short-term basis (Source: Wikipedia, the free encyclopedia, see http://en...",\n "depth": 4,\n "subClassOf": "LodgingBusiness"\n },\n "Motel": {\n "name": "Motel",\n "description": "A motel.\\n\\nSee also the dedicated document on the use of schema...",\n "depth": 4,\n "subClassOf": "LodgingBusiness"\n },\n "Resort": {\n "name": "Resort",\n "description": "A resort is a place used for relaxation or recreation, attracting visitors for holidays or vacations...",\n "depth": 4,\n "subClassOf": "LodgingBusiness"\n },\n "MedicalBusiness": {\n "name": "MedicalBusiness",\n "description": "A particular physical or virtual business of an organization for medical purposes...",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "CommunityHealth": {\n "name": "CommunityHealth",\n "description": "A field of public health focusing on improving health characteristics of a defined population in relation with their geographical or environment areas",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Dermatology": {\n "name": "Dermatology",\n "description": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of skin.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "DietNutrition": {\n "name": "DietNutrition",\n "description": "Dietetic and nutrition as a medical speciality.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Emergency": {\n "name": "Emergency",\n "description": "A specific branch of medical science that deals with the evaluation and initial treatment of medical conditions caused by trauma or sudden illness.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Geriatric": {\n "name": "Geriatric",\n "description": "A specific branch of medical science that is concerned with the diagnosis and treatment of diseases, debilities and provision of care to the aged.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Gynecologic": {\n "name": "Gynecologic",\n "description": "A specific branch of medical science that pertains to the health care of women, particularly in the diagnosis and treatment of disorders affecting the female reproductive system.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "MedicalClinic": {\n "name": "MedicalClinic",\n "description": "A facility, often associated with a hospital or medical school, that is devoted to the specific diagnosis and/or healthcare...",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Midwifery": {\n "name": "Midwifery",\n "description": "A nurse-like health profession that deals with pregnancy, childbirth, and the postpartum period (including care of the newborn), besides sexual and reproductive health of women throughout their lives.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Nursing": {\n "name": "Nursing",\n "description": "A health profession of a person formally educated and trained in the care of the sick or infirm person.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Obstetric": {\n "name": "Obstetric",\n "description": "A specific branch of medical science that specializes in the care of women during the prenatal and postnatal care and with the delivery of the child.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Oncologic": {\n "name": "Oncologic",\n "description": "A specific branch of medical science that deals with benign and malignant tumors, including the study of their development, diagnosis, treatment and prevention.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Optician": {\n "name": "Optician",\n "description": "A store that sells reading glasses and similar devices for improving vision.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Optometric": {\n "name": "Optometric",\n "description": "The science or practice of testing visual acuity and prescribing corrective lenses.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Otolaryngologic": {\n "name": "Otolaryngologic",\n "description": "A specific branch of medical science that is concerned with the ear, nose and throat and their respective disease states.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Pediatric": {\n "name": "Pediatric",\n "description": "A specific branch of medical science that specializes in the care of infants, children and adolescents.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Pharmacy": {\n "name": "Pharmacy",\n "description": "A pharmacy or drugstore.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Physician": {\n "name": "Physician",\n "description": "A doctor's office.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Physiotherapy": {\n "name": "Physiotherapy",\n "description": "The practice of treatment of disease, injury, or deformity by physical methods such as massage, heat treatment, and exercise rather than by drugs or surgery.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "PlasticSurgery": {\n "name": "PlasticSurgery",\n "description": "A specific branch of medical science that pertains to therapeutic or cosmetic repair or re-formation of missing, injured or malformed tissues or body parts by manual and instrumental means.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Podiatric": {\n "name": "Podiatric",\n "description": "Podiatry is the care of the human foot, especially the diagnosis and treatment of foot disorders.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "PrimaryCare": {\n "name": "PrimaryCare",\n "description": "The medical care by a physician, or other health-care professional, who is the patient's first contact with the health-care system and who may recommend a specialist if necessary.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "Psychiatric": {\n "name": "Psychiatric",\n "description": "A specific branch of medical science that is concerned with the study, treatment, and prevention of mental illness, using both medical and psychological therapies.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "PublicHealth": {\n "name": "PublicHealth",\n "description": "Branch of medicine that pertains to the health services to improve and protect community health, especially epidemiology, sanitation, immunization, and preventive medicine.",\n "depth": 4,\n "subClassOf": "MedicalBusiness"\n },\n "ProfessionalService": {\n "name": "ProfessionalService",\n "description": "Original definition: \\"provider of professional services.\\"\\n\\nThe general ProfessionalService type for local businesses was deprecated due to confusion with Service...",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "RadioStation": {\n "name": "RadioStation",\n "description": "A radio station.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "RealEstateAgent": {\n "name": "RealEstateAgent",\n "description": "A real-estate agent.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "RecyclingCenter": {\n "name": "RecyclingCenter",\n "description": "A recycling center.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "SelfStorage": {\n "name": "SelfStorage",\n "description": "A self-storage facility.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "ShoppingCenter": {\n "name": "ShoppingCenter",\n "description": "A shopping center or mall.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "SportsActivityLocation": {\n "name": "SportsActivityLocation",\n "description": "A sports location, such as a playing field.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "BowlingAlley": {\n "name": "BowlingAlley",\n "description": "A bowling alley.",\n "depth": 4,\n "subClassOf": "SportsActivityLocation"\n },\n "ExerciseGym": {\n "name": "ExerciseGym",\n "description": "A gym.",\n "depth": 4,\n "subClassOf": "SportsActivityLocation"\n },\n "GolfCourse": {\n "name": "GolfCourse",\n "description": "A golf course.",\n "depth": 4,\n "subClassOf": "SportsActivityLocation"\n },\n "PublicSwimmingPool": {\n "name": "PublicSwimmingPool",\n "description": "A public swimming pool.",\n "depth": 4,\n "subClassOf": "SportsActivityLocation"\n },\n "SkiResort": {\n "name": "SkiResort",\n "description": "A ski resort.",\n "depth": 4,\n "subClassOf": "SportsActivityLocation"\n },\n "SportsClub": {\n "name": "SportsClub",\n "description": "A sports club.",\n "depth": 4,\n "subClassOf": "SportsActivityLocation"\n },\n "StadiumOrArena": {\n "name": "StadiumOrArena",\n "description": "A stadium.",\n "depth": 4,\n "subClassOf": "SportsActivityLocation"\n },\n "TennisComplex": {\n "name": "TennisComplex",\n "description": "A tennis complex.",\n "depth": 4,\n "subClassOf": "SportsActivityLocation"\n },\n "Store": {\n "name": "Store",\n "description": "A retail good store.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "BikeStore": {\n "name": "BikeStore",\n "description": "A bike store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "BookStore": {\n "name": "BookStore",\n "description": "A bookstore.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "ClothingStore": {\n "name": "ClothingStore",\n "description": "A clothing store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "ComputerStore": {\n "name": "ComputerStore",\n "description": "A computer store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "ConvenienceStore": {\n "name": "ConvenienceStore",\n "description": "A convenience store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "DepartmentStore": {\n "name": "DepartmentStore",\n "description": "A department store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "ElectronicsStore": {\n "name": "ElectronicsStore",\n "description": "An electronics store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "Florist": {\n "name": "Florist",\n "description": "A florist.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "FurnitureStore": {\n "name": "FurnitureStore",\n "description": "A furniture store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "GardenStore": {\n "name": "GardenStore",\n "description": "A garden store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "GroceryStore": {\n "name": "GroceryStore",\n "description": "A grocery store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "HardwareStore": {\n "name": "HardwareStore",\n "description": "A hardware store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "HobbyShop": {\n "name": "HobbyShop",\n "description": "A store that sells materials useful or necessary for various hobbies.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "HomeGoodsStore": {\n "name": "HomeGoodsStore",\n "description": "A home goods store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "JewelryStore": {\n "name": "JewelryStore",\n "description": "A jewelry store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "LiquorStore": {\n "name": "LiquorStore",\n "description": "A shop that sells alcoholic drinks such as wine, beer, whisky and other spirits.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "MensClothingStore": {\n "name": "MensClothingStore",\n "description": "A men's clothing store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "MobilePhoneStore": {\n "name": "MobilePhoneStore",\n "description": "A store that sells mobile phones and related accessories.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "MovieRentalStore": {\n "name": "MovieRentalStore",\n "description": "A movie rental store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "MusicStore": {\n "name": "MusicStore",\n "description": "A music store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "OfficeEquipmentStore": {\n "name": "OfficeEquipmentStore",\n "description": "An office equipment store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "OutletStore": {\n "name": "OutletStore",\n "description": "An outlet store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "PawnShop": {\n "name": "PawnShop",\n "description": "A shop that will buy, or lend money against the security of, personal possessions.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "PetStore": {\n "name": "PetStore",\n "description": "A pet store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "ShoeStore": {\n "name": "ShoeStore",\n "description": "A shoe store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "SportingGoodsStore": {\n "name": "SportingGoodsStore",\n "description": "A sporting goods store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "TireShop": {\n "name": "TireShop",\n "description": "A tire shop.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "ToyStore": {\n "name": "ToyStore",\n "description": "A toy store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "WholesaleStore": {\n "name": "WholesaleStore",\n "description": "A wholesale store.",\n "depth": 4,\n "subClassOf": "Store"\n },\n "TelevisionStation": {\n "name": "TelevisionStation",\n "description": "A television station.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "TouristInformationCenter": {\n "name": "TouristInformationCenter",\n "description": "A tourist information center.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "TravelAgency": {\n "name": "TravelAgency",\n "description": "A travel agency.",\n "depth": 3,\n "subClassOf": "LocalBusiness"\n },\n "MedicalOrganization": {\n "name": "MedicalOrganization",\n "description": "A medical organization (physical or not), such as hospital, institution or clinic.",\n "depth": 2,\n "subClassOf": "Organization"\n },\n "DiagnosticLab": {\n "name": "DiagnosticLab",\n "description": "A medical laboratory that offers on-site or off-site diagnostic services.",\n "depth": 3,\n "subClassOf": "MedicalOrganization"\n },\n "VeterinaryCare": {\n "name": "VeterinaryCare",\n "description": "A vet's office.",\n "depth": 3,\n "subClassOf": "MedicalOrganization"\n },\n "NGO": {\n "name": "NGO",\n "description": "Organization: Non-governmental Organization.",\n "depth": 2,\n "subClassOf": "Organization"\n },\n "NewsMediaOrganization": {\n "name": "NewsMediaOrganization",\n "description": "A News/Media organization such as a newspaper or TV station.",\n "depth": 2,\n "subClassOf": "Organization"\n },\n "PerformingGroup": {\n "name": "PerformingGroup",\n "description": "A performance group, such as a band, an orchestra, or a circus.",\n "depth": 2,\n "subClassOf": "Organization"\n },\n "DanceGroup": {\n "name": "DanceGroup",\n "description": "A dance group&#x2014;for example, the Alvin Ailey Dance Theater or Riverdance.",\n "depth": 3,\n "subClassOf": "PerformingGroup"\n },\n "MusicGroup": {\n "name": "MusicGroup",\n "description": "A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.",\n "depth": 3,\n "subClassOf": "PerformingGroup"\n },\n "TheaterGroup": {\n "name": "TheaterGroup",\n "description": "A theater group or company, for example, the Royal Shakespeare Company or Druid Theatre.",\n "depth": 3,\n "subClassOf": "PerformingGroup"\n },\n "Project": {\n "name": "Project",\n "description": "An enterprise (potentially individual but typically collaborative), planned to achieve a particular aim...",\n "depth": 2,\n "subClassOf": "Organization"\n },\n "FundingAgency": {\n "name": "FundingAgency",\n "description": "A FundingAgency is an organization that implements one or more FundingSchemes and manages\\n the granting process (via Grants, typically MonetaryGrants)...",\n "depth": 3,\n "subClassOf": "Project"\n },\n "ResearchProject": {\n "name": "ResearchProject",\n "description": "A Research project.",\n "depth": 3,\n "subClassOf": "Project"\n },\n "SportsOrganization": {\n "name": "SportsOrganization",\n "description": "Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations.",\n "depth": 2,\n "subClassOf": "Organization"\n },\n "SportsTeam": {\n "name": "SportsTeam",\n "description": "Organization: Sports team.",\n "depth": 3,\n "subClassOf": "SportsOrganization"\n },\n "WorkersUnion": {\n "name": "WorkersUnion",\n "description": "A Workers Union (also known as a Labor Union, Labour Union, or Trade Union) is an organization that promotes the interests of its worker members by collectively bargaining with management, organizing, and political lobbying.",\n "depth": 2,\n "subClassOf": "Organization"\n },\n "Person": {\n "name": "Person",\n "description": "A person (alive, dead, undead, or fictional).",\n "depth": 1,\n "subClassOf": "Thing"\n },\n "Place": {\n "name": "Place",\n "description": "Entities that have a somewhat fixed, physical extension.",\n "depth": 1,\n "subClassOf": "Thing"\n },\n "Accommodation": {\n "name": "Accommodation",\n "description": "An accommodation is a place that can accommodate human beings, e...",\n "depth": 2,\n "subClassOf": "Place"\n },\n "Apartment": {\n "name": "Apartment",\n "description": "An apartment (in American English) or flat (in British English) is a self-contained housing unit (a type of residential real estate) that occupies only part of a building (Source: Wikipedia, the free encyclopedia, see http://en...",\n "depth": 3,\n "subClassOf": "Accommodation"\n },\n "CampingPitch": {\n "name": "CampingPitch",\n "description": "A CampingPitch is an individual place for overnight stay in the outdoors, typically being part of a larger camping site, or Campground...",\n "depth": 3,\n "subClassOf": "Accommodation"\n },\n "House": {\n "name": "House",\n "description": "A house is a building or structure that has the ability to be occupied for habitation by humans or other creatures (Source: Wikipedia, the free encyclopedia, see http://en...",\n "depth": 3,\n "subClassOf": "Accommodation"\n },\n "SingleFamilyResidence": {\n "name": "SingleFamilyResidence",\n "description": "Residence type: Single-family home.",\n "depth": 4,\n "subClassOf": "House"\n },\n "Room": {\n "name": "Room",\n "description": "A room is a distinguishable space within a structure, usually separated from other spaces by interior walls...",\n "depth": 3,\n "subClassOf": "Accommodation"\n },\n "HotelRoom": {\n "name": "HotelRoom",\n "description": "A hotel room is a single room in a hotel.\\n\\nSee also the dedicated document on the use of schema...",\n "depth": 4,\n "subClassOf": "Room"\n },\n "MeetingRoom": {\n "name": "MeetingRoom",\n "description": "A meeting room, conference room, or conference hall is a room provided for singular events such as business conferences and meetings (Source: Wikipedia, the free encyclopedia, see http://en...",\n "depth": 4,\n "subClassOf": "Room"\n },\n "Suite": {\n "name": "Suite",\n "description": "A suite in a hotel or other public accommodation, denotes a class of luxury accommodations, the key feature of which is multiple rooms (Source: Wikipedia, the free encyclopedia, see http://en...",\n "depth": 3,\n "subClassOf": "Accommodation"\n },\n "AdministrativeArea": {\n "name": "AdministrativeArea",\n "description": "A geographical region, typically under the jurisdiction of a particular government.",\n "depth": 2,\n "subClassOf": "Place"\n },\n "City": {\n "name": "City",\n "description": "A city or town.",\n "depth": 3,\n "subClassOf": "AdministrativeArea"\n },\n "Country": {\n "name": "Country",\n "description": "A country.",\n "depth": 3,\n "subClassOf": "AdministrativeArea"\n },\n "State": {\n "name": "State",\n "description": "A state or province of a country.",\n "depth": 3,\n "subClassOf": "AdministrativeArea"\n },\n "CivicStructure": {\n "name": "CivicStructure",\n "description": "A public structure, such as a town hall or concert hall.",\n "depth": 2,\n "subClassOf": "Place"\n },\n "Airport": {\n "name": "Airport",\n "description": "An airport.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "Aquarium": {\n "name": "Aquarium",\n "description": "Aquarium.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "Beach": {\n "name": "Beach",\n "description": "Beach.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "Bridge": {\n "name": "Bridge",\n "description": "A bridge.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "BusStation": {\n "name": "BusStation",\n "description": "A bus station.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "BusStop": {\n "name": "BusStop",\n "description": "A bus stop.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "Cemetery": {\n "name": "Cemetery",\n "description": "A graveyard.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "Crematorium": {\n "name": "Crematorium",\n "description": "A crematorium.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "EventVenue": {\n "name": "EventVenue",\n "description": "An event venue.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "GovernmentBuilding": {\n "name": "GovernmentBuilding",\n "description": "A government building.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "CityHall": {\n "name": "CityHall",\n "description": "A city hall.",\n "depth": 4,\n "subClassOf": "GovernmentBuilding"\n },\n "Courthouse": {\n "name": "Courthouse",\n "description": "A courthouse.",\n "depth": 4,\n "subClassOf": "GovernmentBuilding"\n },\n "DefenceEstablishment": {\n "name": "DefenceEstablishment",\n "description": "A defence establishment, such as an army or navy base.",\n "depth": 4,\n "subClassOf": "GovernmentBuilding"\n },\n "Embassy": {\n "name": "Embassy",\n "description": "An embassy.",\n "depth": 4,\n "subClassOf": "GovernmentBuilding"\n },\n "LegislativeBuilding": {\n "name": "LegislativeBuilding",\n "description": "A legislative building&#x2014;for example, the state capitol.",\n "depth": 4,\n "subClassOf": "GovernmentBuilding"\n },\n "Museum": {\n "name": "Museum",\n "description": "A museum.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "MusicVenue": {\n "name": "MusicVenue",\n "description": "A music venue.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "Park": {\n "name": "Park",\n "description": "A park.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "ParkingFacility": {\n "name": "ParkingFacility",\n "description": "A parking lot or other parking facility.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "PerformingArtsTheater": {\n "name": "PerformingArtsTheater",\n "description": "A theater or other performing art center.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "PlaceOfWorship": {\n "name": "PlaceOfWorship",\n "description": "Place of worship, such as a church, synagogue, or mosque.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "BuddhistTemple": {\n "name": "BuddhistTemple",\n "description": "A Buddhist temple.",\n "depth": 4,\n "subClassOf": "PlaceOfWorship"\n },\n "Church": {\n "name": "Church",\n "description": "A church.",\n "depth": 4,\n "subClassOf": "PlaceOfWorship"\n },\n "CatholicChurch": {\n "name": "CatholicChurch",\n "description": "A Catholic church.",\n "depth": 5,\n "subClassOf": "Church"\n },\n "HinduTemple": {\n "name": "HinduTemple",\n "description": "A Hindu temple.",\n "depth": 4,\n "subClassOf": "PlaceOfWorship"\n },\n "Mosque": {\n "name": "Mosque",\n "description": "A mosque.",\n "depth": 4,\n "subClassOf": "PlaceOfWorship"\n },\n "Synagogue": {\n "name": "Synagogue",\n "description": "A synagogue.",\n "depth": 4,\n "subClassOf": "PlaceOfWorship"\n },\n "Playground": {\n "name": "Playground",\n "description": "A playground.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "PublicToilet": {\n "name": "PublicToilet",\n "description": "A public toilet is a room or small building containing one or more toilets (and possibly also urinals) which is available for use by the general public, or by customers or employees of certain businesses.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "RVPark": {\n "name": "RVPark",\n "description": "A place offering space for \\"Recreational Vehicles\\", Caravans, mobile homes and the like.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "SubwayStation": {\n "name": "SubwayStation",\n "description": "A subway station.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "TaxiStand": {\n "name": "TaxiStand",\n "description": "A taxi stand.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "TrainStation": {\n "name": "TrainStation",\n "description": "A train station.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "Zoo": {\n "name": "Zoo",\n "description": "A zoo.",\n "depth": 3,\n "subClassOf": "CivicStructure"\n },\n "Landform": {\n "name": "Landform",\n "description": "A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins.",\n "depth": 2,\n "subClassOf": "Place"\n },\n "BodyOfWater": {\n "name": "BodyOfWater",\n "description": "A body of water, such as a sea, ocean, or lake.",\n "depth": 3,\n "subClassOf": "Landform"\n },\n "Canal": {\n "name": "Canal",\n "description": "A canal, like the Panama Canal.",\n "depth": 4,\n "subClassOf": "BodyOfWater"\n },\n "LakeBodyOfWater": {\n "name": "LakeBodyOfWater",\n "description": "A lake (for example, Lake Pontrachain).",\n "depth": 4,\n "subClassOf": "BodyOfWater"\n },\n "OceanBodyOfWater": {\n "name": "OceanBodyOfWater",\n "description": "An ocean (for example, the Pacific).",\n "depth": 4,\n "subClassOf": "BodyOfWater"\n },\n "Pond": {\n "name": "Pond",\n "description": "A pond.",\n "depth": 4,\n "subClassOf": "BodyOfWater"\n },\n "Reservoir": {\n "name": "Reservoir",\n "description": "A reservoir of water, typically an artificially created lake, like the Lake Kariba reservoir.",\n "depth": 4,\n "subClassOf": "BodyOfWater"\n },\n "RiverBodyOfWater": {\n "name": "RiverBodyOfWater",\n "description": "A river (for example, the broad majestic Shannon).",\n "depth": 4,\n "subClassOf": "BodyOfWater"\n },\n "SeaBodyOfWater": {\n "name": "SeaBodyOfWater",\n "description": "A sea (for example, the Caspian sea).",\n "depth": 4,\n "subClassOf": "BodyOfWater"\n },\n "Waterfall": {\n "name": "Waterfall",\n "description": "A waterfall, like Niagara.",\n "depth": 4,\n "subClassOf": "BodyOfWater"\n },\n "Continent": {\n "name": "Continent",\n "description": "One of the continents (for example, Europe or Africa).",\n "depth": 3,\n "subClassOf": "Landform"\n },\n "Mountain": {\n "name": "Mountain",\n "description": "A mountain, like Mount Whitney or Mount Everest.",\n "depth": 3,\n "subClassOf": "Landform"\n },\n "Volcano": {\n "name": "Volcano",\n "description": "A volcano, like Fuji san.",\n "depth": 3,\n "subClassOf": "Landform"\n },\n "LandmarksOrHistoricalBuildings": {\n "name": "LandmarksOrHistoricalBuildings",\n "description": "An historical landmark or building.",\n "depth": 2,\n "subClassOf": "Place"\n },\n "Residence": {\n "name": "Residence",\n "description": "The place where a person lives.",\n "depth": 2,\n "subClassOf": "Place"\n },\n "ApartmentComplex": {\n "name": "ApartmentComplex",\n "description": "Residence type: Apartment complex.",\n "depth": 3,\n "subClassOf": "Residence"\n },\n "GatedResidenceCommunity": {\n "name": "GatedResidenceCommunity",\n "description": "Residence type: Gated community.",\n "depth": 3,\n "subClassOf": "Residence"\n },\n "TouristAttraction": {\n "name": "TouristAttraction",\n "description": "A tourist attraction. In principle any Thing can be a TouristAttraction, from a Mountain and LandmarksOrHistoricalBuildings to a LocalBusiness...",\n "depth": 2,\n "subClassOf": "Place"\n },\n "TouristDestination": {\n "name": "TouristDestination",\n "description": "A tourist destination. In principle any Place can be a TouristDestination from a City, Region or Country to an AmusementPark or Hotel...",\n "depth": 2,\n "subClassOf": "Place"\n },\n "Product": {\n "name": "Product",\n "description": "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online.",\n "depth": 1,\n "subClassOf": "Thing"\n },\n "IndividualProduct": {\n "name": "IndividualProduct",\n "description": "A single, identifiable product instance (e.g. a laptop with a particular serial number).",\n "depth": 2,\n "subClassOf": "Product"\n },\n "ProductModel": {\n "name": "ProductModel",\n "description": "A datasheet or vendor specification of a product (in the sense of a prototypical description).",\n "depth": 2,\n "subClassOf": "Product"\n },\n "SomeProducts": {\n "name": "SomeProducts",\n "description": "A placeholder for multiple similar products of the same kind.",\n "depth": 2,\n "subClassOf": "Product"\n },\n "Vehicle": {\n "name": "Vehicle",\n "description": "A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space.",\n "depth": 2,\n "subClassOf": "Product"\n },\n "BusOrCoach": {\n "name": "BusOrCoach",\n "description": "A bus (also omnibus or autobus) is a road vehicle designed to carry passengers...",\n "depth": 3,\n "subClassOf": "Vehicle"\n },\n "Car": {\n "name": "Car",\n "description": "A car is a wheeled, self-powered motor vehicle used for transportation.",\n "depth": 3,\n "subClassOf": "Vehicle"\n },\n "Motorcycle": {\n "name": "Motorcycle",\n "description": "A motorcycle or motorbike is a single-track, two-wheeled motor vehicle.",\n "depth": 3,\n "subClassOf": "Vehicle"\n },\n "MotorizedBicycle": {\n "name": "MotorizedBicycle",\n "description": "A motorized bicycle is a bicycle with an attached motor used to power the vehicle, or to assist with pedaling.",\n "depth": 3,\n "subClassOf": "Vehicle"\n },\n "StupidType": {\n "name": "StupidType",\n "description": "A StupidType for testing.",\n "depth": 1,\n "subClassOf": "Thing"\n },\n "DataType": {\n "name": "DataType",\n "description": "The basic data types such as Integers, Strings, etc.",\n "depth": 0\n },\n "Boolean": {\n "name": "Boolean",\n "description": "Boolean: True or False.",\n "depth": 1,\n "subClassOf": "DataType"\n },\n "Date": {\n "name": "Date",\n "description": "A date value in ISO 8601 date format.",\n "depth": 1,\n "subClassOf": "DataType"\n },\n "DateTime": {\n "name": "DateTime",\n "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm] (see Chapter 5.4 of ISO 8601).",\n "depth": 1,\n "subClassOf": "DataType"\n },\n "Number": {\n "name": "Number",\n "description": "Data type: Number. Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols. Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",\n "depth": 1,\n "subClassOf": "DataType"\n },\n "Text": {\n "name": "Text",\n "description": "Data type: Text.",\n "depth": 1,\n "subClassOf": "DataType"\n },\n "Time": {\n "name": "Time",\n "description": "A point in time recurring on multiple days in the form \\"hh:mm:ss[Z|(+|-)hh:mm]\\".",\n "depth": 1,\n "subClassOf": "DataType"\n }\n }\n`; // Load at runtime so is queried once and cached in memory const schemas = JSON.parse(text) async function getSchema(schemaName) { return schemas.hasOwnProperty(schemaName) ? await _getSchemaWithProperties(schemaName) : Promise.resolve(null) } async function _getSchemaWithProperties(schemaName) { return new Promise(async resolve => { let schemaProperties = [ {"id":"http://schema.org/about","label":"about","comment":"The subject matter of the content.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/mainEntity","domainIncludes":"http://schema.org/CommunicateAction, http://schema.org/CreativeWork, http://schema.org/Event","rangeIncludes":"http://schema.org/Thing","inverseOf":"http://schema.org/subjectOf","supersedes":"","supersededBy":""}, {"id":"http://schema.org/acceptedAnswer","label":"acceptedAnswer","comment":"The answer(s) that has been accepted as best, typically on a Question/Answer site. Sites vary in their selection mechanisms, e.g. drawing on community opinion and/or the view of the Question author.","subPropertyOf":"http://schema.org/suggestedAnswer","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Question","rangeIncludes":"http://schema.org/Answer, http://schema.org/ItemList","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/acceptedOffer","label":"acceptedOffer","comment":"The offer(s) -- e.g., product, quantity and price combinations -- included in the order.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Order","rangeIncludes":"http://schema.org/Offer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/acceptedPaymentMethod","label":"acceptedPaymentMethod","comment":"The payment method(s) accepted by seller for this offer.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer","rangeIncludes":"http://schema.org/LoanOrCredit, http://schema.org/PaymentMethod","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/acceptsReservations","label":"acceptsReservations","comment":"Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the strings <code>Yes</code> or <code>No</code>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/FoodEstablishment","rangeIncludes":"http://schema.org/Boolean, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/accessCode","label":"accessCode","comment":"Password, PIN, or access code needed for delivery (e.g. from a locker).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/DeliveryEvent","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/accessMode","label":"accessMode","comment":"The human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Expected values include: auditory, tactile, textual, visual, colorDependent, chartOnVisual, chemOnVisual, diagramOnVisual, mathOnVisual, musicOnVisual, textOnVisual.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/accessModeSufficient","label":"accessModeSufficient","comment":"A list of single or combined accessModes that are sufficient to understand all the intellectual content of a resource. Expected values include: auditory, tactile, textual, visual.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/ItemList","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/accessibilityAPI","label":"accessibilityAPI","comment":"Indicates that the resource is compatible with the referenced accessibility API (<a href=\"http://www.w3.org/wiki/WebSchemas/Accessibility\">WebSchemas wiki lists possible values</a>).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/accessibilityControl","label":"accessibilityControl","comment":"Identifies input methods that are sufficient to fully control the described resource (<a href=\"http://www.w3.org/wiki/WebSchemas/Accessibility\">WebSchemas wiki lists possible values</a>).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/accessibilityFeature","label":"accessibilityFeature","comment":"Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility (<a href=\"http://www.w3.org/wiki/WebSchemas/Accessibility\">WebSchemas wiki lists possible values</a>).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/accessibilityHazard","label":"accessibilityHazard","comment":"A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3 (<a href=\"http://www.w3.org/wiki/WebSchemas/Accessibility\">WebSchemas wiki lists possible values</a>).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/accessibilitySummary","label":"accessibilitySummary","comment":"A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as \"short descriptions are present but long descriptions will be needed for non-visual users\" or \"short descriptions are present and no long descriptions are needed.\"","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/accountId","label":"accountId","comment":"The identifier for the account the payment will be applied to.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Invoice","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/accountablePerson","label":"accountablePerson","comment":"Specifies the Person that is legally accountable for the CreativeWork.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/acquiredFrom","label":"acquiredFrom","comment":"The organization or person from which the product was acquired.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/OwnershipInfo","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/actionAccessibilityRequirement","label":"actionAccessibilityRequirement","comment":"A set of requirements that a must be fulfilled in order to perform an Action. If more than one value is specied, fulfilling one set of requirements will allow the Action to be performed.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ConsumeAction","rangeIncludes":"http://schema.org/ActionAccessSpecification","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/actionApplication","label":"actionApplication","comment":"An application that can complete the request.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EntryPoint","rangeIncludes":"http://schema.org/SoftwareApplication","inverseOf":"","supersedes":"http://schema.org/application","supersededBy":""}, {"id":"http://schema.org/actionOption","label":"actionOption","comment":"A sub property of object. The options subject to this action.","subPropertyOf":"http://schema.org/object","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ChooseAction","rangeIncludes":"http://schema.org/Text, http://schema.org/Thing","inverseOf":"","supersedes":"http://schema.org/option","supersededBy":""}, {"id":"http://schema.org/actionPlatform","label":"actionPlatform","comment":"The high level platform(s) where the Action can be performed for the given URL. To specify a specific application or operating system instance, use actionApplication.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EntryPoint","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/actionStatus","label":"actionStatus","comment":"Indicates the current disposition of the Action.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Action","rangeIncludes":"http://schema.org/ActionStatusType","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/actor","label":"actor","comment":"An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Clip, http://schema.org/CreativeWorkSeason, http://schema.org/Episode, http://schema.org/Event, http://schema.org/Movie, http://schema.org/MovieSeries, http://schema.org/RadioSeries, http://schema.org/TVSeries, http://schema.org/VideoGame, http://schema.org/VideoGameSeries, http://schema.org/VideoObject","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"http://schema.org/actors","supersededBy":""}, {"id":"http://schema.org/actors","label":"actors","comment":"An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Clip, http://schema.org/Episode, http://schema.org/Movie, http://schema.org/MovieSeries, http://schema.org/RadioSeries, http://schema.org/TVSeries, http://schema.org/VideoGame, http://schema.org/VideoGameSeries, http://schema.org/VideoObject","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/actor"}, {"id":"http://schema.org/addOn","label":"addOn","comment":"An additional offer that can only be obtained in combination with the first base offer (e.g. supplements and extensions that are available for a surcharge).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Offer","rangeIncludes":"http://schema.org/Offer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/additionalName","label":"additionalName","comment":"An additional name for a Person, can be used for a middle name.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/additionalNumberOfGuests","label":"additionalNumberOfGuests","comment":"If responding yes, the number of guests who will attend in addition to the invitee.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RsvpAction","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/additionalProperty","label":"additionalProperty","comment":"A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.<br/><br/><br/><br/>Note: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Place, http://schema.org/Product, http://schema.org/QualitativeValue, http://schema.org/QuantitativeValue","rangeIncludes":"http://schema.org/PropertyValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/additionalType","label":"additionalType","comment":"An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Thing","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/address","label":"address","comment":"Physical address of the item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeoCoordinates, http://schema.org/GeoShape, http://schema.org/Organization, http://schema.org/Person, http://schema.org/Place","rangeIncludes":"http://schema.org/PostalAddress, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/addressCountry","label":"addressCountry","comment":"The country. For example, USA. You can also provide the two-letter <a href=\"http://en.wikipedia.org/wiki/ISO_3166-1\">ISO 3166-1 alpha-2 country code</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeoCoordinates, http://schema.org/GeoShape, http://schema.org/PostalAddress","rangeIncludes":"http://schema.org/Country, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/addressLocality","label":"addressLocality","comment":"The locality in which the street address is, and which is in the region. For example, Mountain View.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PostalAddress","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/addressRegion","label":"addressRegion","comment":"The region in which the locality is, and which is in the country. For example, California or another appropriate first-level <a href=\"https://en.wikipedia.org/wiki/List_of_administrative_divisions_by_country\">Administrative division</a>","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PostalAddress","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/advanceBookingRequirement","label":"advanceBookingRequirement","comment":"The amount of time that is required between accepting the offer and the actual usage of the resource or service.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/affiliation","label":"affiliation","comment":"An organization that this person is affiliated with. For example, a school/university, a club, or a team.","subPropertyOf":"http://schema.org/memberOf","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/afterMedia","label":"afterMedia","comment":"A media object representing the circumstances after performing this direction.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HowToDirection","rangeIncludes":"http://schema.org/MediaObject, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/agent","label":"agent","comment":"The direct performer or driver of the action (animate or inanimate). e.g. <em>John</em> wrote a book.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Action","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/aggregateRating","label":"aggregateRating","comment":"The overall rating, based on a collection of reviews or ratings, of the item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Brand, http://schema.org/CreativeWork, http://schema.org/Event, http://schema.org/Offer, http://schema.org/Organization, http://schema.org/Place, http://schema.org/Product, http://schema.org/Service","rangeIncludes":"http://schema.org/AggregateRating","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/aircraft","label":"aircraft","comment":"The kind of aircraft (e.g., \"Boeing 747\").","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Flight","rangeIncludes":"http://schema.org/Text, http://schema.org/Vehicle","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/album","label":"album","comment":"A music album.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicGroup","rangeIncludes":"http://schema.org/MusicAlbum","inverseOf":"","supersedes":"http://schema.org/albums","supersededBy":""}, {"id":"http://schema.org/albumProductionType","label":"albumProductionType","comment":"Classification of the album by it's type of content: soundtrack, live album, studio album, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicAlbum","rangeIncludes":"http://schema.org/MusicAlbumProductionType","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/albumRelease","label":"albumRelease","comment":"A release of this album.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicAlbum","rangeIncludes":"http://schema.org/MusicRelease","inverseOf":"http://schema.org/releaseOf","supersedes":"","supersededBy":""}, {"id":"http://schema.org/albumReleaseType","label":"albumReleaseType","comment":"The kind of release which this album is: single, EP or album.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicAlbum","rangeIncludes":"http://schema.org/MusicAlbumReleaseType","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/albums","label":"albums","comment":"A collection of music albums.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicGroup","rangeIncludes":"http://schema.org/MusicAlbum","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/album"}, {"id":"http://schema.org/alignmentType","label":"alignmentType","comment":"A category of alignment between the learning resource and the framework node. Recommended values include: 'assesses', 'teaches', 'requires', 'textComplexity', 'readingLevel', 'educationalSubject', and 'educationalLevel'.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/AlignmentObject","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/alternateName","label":"alternateName","comment":"An alias for the item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Thing","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/alternativeHeadline","label":"alternativeHeadline","comment":"A secondary title of the CreativeWork.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/alumni","label":"alumni","comment":"Alumni of an organization.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOrganization, http://schema.org/Organization","rangeIncludes":"http://schema.org/Person","inverseOf":"http://schema.org/alumniOf","supersedes":"","supersededBy":""}, {"id":"http://schema.org/alumniOf","label":"alumniOf","comment":"An organization that the person is an alumni of.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/EducationalOrganization, http://schema.org/Organization","inverseOf":"http://schema.org/alumni","supersedes":"","supersededBy":""}, {"id":"http://schema.org/amenityFeature","label":"amenityFeature","comment":"An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Accommodation, http://schema.org/LodgingBusiness, http://schema.org/Place","rangeIncludes":"http://schema.org/LocationFeatureSpecification","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/amount","label":"amount","comment":"The amount of money.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/DatedMoneySpecification, http://schema.org/InvestmentOrDeposit, http://schema.org/LoanOrCredit, http://schema.org/MonetaryGrant, http://schema.org/MoneyTransfer","rangeIncludes":"http://schema.org/MonetaryAmount, http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/amountOfThisGood","label":"amountOfThisGood","comment":"The quantity of the goods included in the offer.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/TypeAndQuantityNode","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/annualPercentageRate","label":"annualPercentageRate","comment":"The annual rate that is charged for borrowing (or made by investing), expressed as a single percentage number that represents the actual yearly cost of funds over the term of a loan. This includes any fees or additional costs associated with the transaction.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/FinancialProduct","rangeIncludes":"http://schema.org/Number, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/answerCount","label":"answerCount","comment":"The number of answers this question has received.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Question","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/application","label":"application","comment":"An application that can complete the request.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EntryPoint","rangeIncludes":"http://schema.org/SoftwareApplication","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/actionApplication"}, {"id":"http://schema.org/applicationCategory","label":"applicationCategory","comment":"Type of software application, e.g. 'Game, Multimedia'.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/applicationSubCategory","label":"applicationSubCategory","comment":"Subcategory of the application, e.g. 'Arcade Game'.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/applicationSuite","label":"applicationSuite","comment":"The name of the application suite to which the application belongs (e.g. Excel belongs to Office).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/appliesToDeliveryMethod","label":"appliesToDeliveryMethod","comment":"The delivery method(s) to which the delivery charge or payment charge specification applies.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/DeliveryChargeSpecification, http://schema.org/PaymentChargeSpecification","rangeIncludes":"http://schema.org/DeliveryMethod","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/appliesToPaymentMethod","label":"appliesToPaymentMethod","comment":"The payment method(s) to which the payment charge specification applies.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PaymentChargeSpecification","rangeIncludes":"http://schema.org/PaymentMethod","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/area","label":"area","comment":"The area within which users can expect to reach the broadcast service.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastService","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/serviceArea"}, {"id":"http://schema.org/areaServed","label":"areaServed","comment":"The geographic area where a service or offered item is provided.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/availableAtOrFrom, http://schema.org/eligibleRegion","domainIncludes":"http://schema.org/ContactPoint, http://schema.org/DeliveryChargeSpecification, http://schema.org/Demand, http://schema.org/Offer, http://schema.org/Organization, http://schema.org/Service","rangeIncludes":"http://schema.org/AdministrativeArea, http://schema.org/GeoShape, http://schema.org/Place, http://schema.org/Text","inverseOf":"","supersedes":"http://schema.org/serviceArea","supersededBy":""}, {"id":"http://schema.org/arrivalAirport","label":"arrivalAirport","comment":"The airport where the flight terminates.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Flight","rangeIncludes":"http://schema.org/Airport","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/arrivalBusStop","label":"arrivalBusStop","comment":"The stop or station from which the bus arrives.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BusTrip","rangeIncludes":"http://schema.org/BusStation, http://schema.org/BusStop","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/arrivalGate","label":"arrivalGate","comment":"Identifier of the flight's arrival gate.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Flight","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/arrivalPlatform","label":"arrivalPlatform","comment":"The platform where the train arrives.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/TrainTrip","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/arrivalStation","label":"arrivalStation","comment":"The station where the train trip ends.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/TrainTrip","rangeIncludes":"http://schema.org/TrainStation","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/arrivalTerminal","label":"arrivalTerminal","comment":"Identifier of the flight's arrival terminal.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Flight","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/arrivalTime","label":"arrivalTime","comment":"The expected arrival time.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Trip","rangeIncludes":"http://schema.org/DateTime, http://schema.org/Time","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/artEdition","label":"artEdition","comment":"The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example \"20\").","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/VisualArtwork","rangeIncludes":"http://schema.org/Integer, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/artMedium","label":"artMedium","comment":"The material used. (e.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.)","subPropertyOf":"http://schema.org/material","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/VisualArtwork","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/artform","label":"artform","comment":"e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/VisualArtwork","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/articleBody","label":"articleBody","comment":"The actual body of the article.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Article","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/articleSection","label":"articleSection","comment":"Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Article","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/artworkSurface","label":"artworkSurface","comment":"The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/VisualArtwork","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"http://schema.org/surface","supersededBy":""}, {"id":"http://schema.org/assembly","label":"assembly","comment":"Library file name e.g., mscorlib.dll, system.web.dll.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/APIReference","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/executableLibraryName"}, {"id":"http://schema.org/assemblyVersion","label":"assemblyVersion","comment":"Associated product/technology version. e.g., .NET Framework 4.5.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/APIReference","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/associatedArticle","label":"associatedArticle","comment":"A NewsArticle associated with the Media Object.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MediaObject","rangeIncludes":"http://schema.org/NewsArticle","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/associatedMedia","label":"associatedMedia","comment":"A media object that encodes this CreativeWork. This property is a synonym for encoding.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/MediaObject","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/athlete","label":"athlete","comment":"A person that acts as performing member of a sports team; a player as opposed to a coach.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SportsTeam","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/attendee","label":"attendee","comment":"A person or organization attending the event.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"http://schema.org/attendees","supersededBy":""}, {"id":"http://schema.org/attendees","label":"attendees","comment":"A person attending the event.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/attendee"}, {"id":"http://schema.org/audience","label":"audience","comment":"An intended audience, i.e. a group for whom something was created.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/Event, http://schema.org/LodgingBusiness, http://schema.org/PlayAction, http://schema.org/Product, http://schema.org/Service","rangeIncludes":"http://schema.org/Audience","inverseOf":"","supersedes":"http://schema.org/serviceAudience","supersededBy":""}, {"id":"http://schema.org/audienceType","label":"audienceType","comment":"The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Audience","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/audio","label":"audio","comment":"An embedded audio object.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/AudioObject, http://schema.org/Clip, http://schema.org/MusicRecording","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/authenticator","label":"authenticator","comment":"The Organization responsible for authenticating the user's subscription. For example, many media apps require a cable/satellite provider to authenticate your subscription before playing media.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MediaSubscription","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/author","label":"author","comment":"The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/Rating","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/availability","label":"availability","comment":"The availability of this item&#x2014;for example In stock, Out of stock, Pre-order, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer","rangeIncludes":"http://schema.org/ItemAvailability","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/availabilityEnds","label":"availabilityEnds","comment":"The end of the availability of the product or service included in the offer.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ActionAccessSpecification, http://schema.org/Demand, http://schema.org/Offer","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime, http://schema.org/Time","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/availabilityStarts","label":"availabilityStarts","comment":"The beginning of the availability of the product or service included in the offer.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ActionAccessSpecification, http://schema.org/Demand, http://schema.org/Offer","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime, http://schema.org/Time","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/availableAtOrFrom","label":"availableAtOrFrom","comment":"The place(s) from which the offer can be obtained (e.g. store locations).","subPropertyOf":"http://schema.org/areaServed","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/availableChannel","label":"availableChannel","comment":"A means of accessing the service (e.g. a phone bank, a web site, a location, etc.).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Service","rangeIncludes":"http://schema.org/ServiceChannel","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/availableDeliveryMethod","label":"availableDeliveryMethod","comment":"The delivery method(s) available for this offer.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer","rangeIncludes":"http://schema.org/DeliveryMethod","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/availableFrom","label":"availableFrom","comment":"When the item is available for pickup from the store, locker, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/DeliveryEvent","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/availableLanguage","label":"availableLanguage","comment":"A language someone may use with or at the item, service or place. Please use one of the language codes from the <a href=\"http://tools.ietf.org/html/bcp47\">IETF BCP 47 standard</a>. See also <a class=\"localLink\" href=\"http://schema.org/inLanguage\">inLanguage</a>","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ContactPoint, http://schema.org/LodgingBusiness, http://schema.org/ServiceChannel, http://schema.org/TouristAttraction","rangeIncludes":"http://schema.org/Language, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/availableOnDevice","label":"availableOnDevice","comment":"Device required to run the application. Used in cases where a specific make/model is required to run the application.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"http://schema.org/device","supersededBy":""}, {"id":"http://schema.org/availableThrough","label":"availableThrough","comment":"After this date, the item will no longer be available for pickup.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/DeliveryEvent","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/award","label":"award","comment":"An award won by or for this item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/Organization, http://schema.org/Person, http://schema.org/Product, http://schema.org/Service","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"http://schema.org/awards","supersededBy":""}, {"id":"http://schema.org/awards","label":"awards","comment":"Awards won by or for this item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/Organization, http://schema.org/Person, http://schema.org/Product","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/award"}, {"id":"http://schema.org/awayTeam","label":"awayTeam","comment":"The away team in a sports event.","subPropertyOf":"http://schema.org/competitor","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SportsEvent","rangeIncludes":"http://schema.org/Person, http://schema.org/SportsTeam","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/baseSalary","label":"baseSalary","comment":"The base salary of the job or of an employee in an EmployeeRole.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EmployeeRole, http://schema.org/JobPosting","rangeIncludes":"http://schema.org/MonetaryAmount, http://schema.org/Number, http://schema.org/PriceSpecification","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/bccRecipient","label":"bccRecipient","comment":"A sub property of recipient. The recipient blind copied on a message.","subPropertyOf":"http://schema.org/recipient","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Message","rangeIncludes":"http://schema.org/ContactPoint, http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/bed","label":"bed","comment":"The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text. If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HotelRoom, http://schema.org/Suite","rangeIncludes":"http://schema.org/BedDetails, http://schema.org/BedType, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/beforeMedia","label":"beforeMedia","comment":"A media object representing the circumstances before performing this direction.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HowToDirection","rangeIncludes":"http://schema.org/MediaObject, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/benefits","label":"benefits","comment":"Description of benefits associated with the job.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/jobBenefits"}, {"id":"http://schema.org/bestRating","label":"bestRating","comment":"The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Rating","rangeIncludes":"http://schema.org/Number, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/billingAddress","label":"billingAddress","comment":"The billing address for the order.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Order","rangeIncludes":"http://schema.org/PostalAddress","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/billingIncrement","label":"billingIncrement","comment":"This property specifies the minimal quantity and rounding increment that will be the basis for the billing. The unit of measurement is specified by the unitCode property.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/UnitPriceSpecification","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/billingPeriod","label":"billingPeriod","comment":"The time interval used to compute the invoice.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Invoice","rangeIncludes":"http://schema.org/Duration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/birthDate","label":"birthDate","comment":"Date of birth.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/birthPlace","label":"birthPlace","comment":"The place where the person was born.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/bitrate","label":"bitrate","comment":"The bitrate of the media object.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MediaObject","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/blogPost","label":"blogPost","comment":"A posting that is part of this blog.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Blog","rangeIncludes":"http://schema.org/BlogPosting","inverseOf":"","supersedes":"http://schema.org/blogPosts","supersededBy":""}, {"id":"http://schema.org/blogPosts","label":"blogPosts","comment":"The postings that are part of this blog.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Blog","rangeIncludes":"http://schema.org/BlogPosting","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/blogPost"}, {"id":"http://schema.org/boardingGroup","label":"boardingGroup","comment":"The airline-specific indicator of boarding order / preference.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/FlightReservation","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/boardingPolicy","label":"boardingPolicy","comment":"The type of boarding policy used by the airline (e.g. zone-based or group-based).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Airline, http://schema.org/Flight","rangeIncludes":"http://schema.org/BoardingPolicyType","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/bookEdition","label":"bookEdition","comment":"The edition of the book.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Book","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/bookFormat","label":"bookFormat","comment":"The format of the book.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Book","rangeIncludes":"http://schema.org/BookFormatType","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/bookingAgent","label":"bookingAgent","comment":"'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Reservation","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/broker"}, {"id":"http://schema.org/bookingTime","label":"bookingTime","comment":"The date and time the reservation was booked.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Reservation","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/borrower","label":"borrower","comment":"A sub property of participant. The person that borrows the object being lent.","subPropertyOf":"http://schema.org/participant","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LendAction","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/box","label":"box","comment":"A box is the area enclosed by the rectangle formed by two points. The first point is the lower corner, the second point is the upper corner. A box is expressed as two points separated by a space character.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeoShape","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/branchCode","label":"branchCode","comment":"A short textual code (also called \"store code\") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.<br/><br/><br/><br/>For example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code \"3047\" is a branchCode for a particular branch.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Place","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/branchOf","label":"branchOf","comment":"The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical)<a class=\"localLink\" href=\"http://schema.org/branch\">branch</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LocalBusiness","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/parentOrganization"}, {"id":"http://schema.org/brand","label":"brand","comment":"The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Person, http://schema.org/Product, http://schema.org/Service","rangeIncludes":"http://schema.org/Brand, http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/breadcrumb","label":"breadcrumb","comment":"A set of links that can help a user understand and navigate a website hierarchy.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/WebPage","rangeIncludes":"http://schema.org/BreadcrumbList, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/broadcastAffiliateOf","label":"broadcastAffiliateOf","comment":"The media network(s) whose content is broadcast on this station.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastService","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/broadcastChannelId","label":"broadcastChannelId","comment":"The unique address by which the BroadcastService can be identified in a provider lineup. In US, this is typically a number.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastChannel","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/broadcastDisplayName","label":"broadcastDisplayName","comment":"The name displayed in the channel guide. For many US affiliates, it is the network name.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastService","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/broadcastFrequency","label":"broadcastFrequency","comment":"The frequency used for over-the-air broadcasts. Numeric values or simple ranges e.g. 87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels, e.g. \"87 FM\".","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastChannel, http://schema.org/BroadcastService","rangeIncludes":"http://schema.org/BroadcastFrequencySpecification, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/broadcastFrequencyValue","label":"broadcastFrequencyValue","comment":"The frequency in MHz for a particular broadcast.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastFrequencySpecification","rangeIncludes":"http://schema.org/Number, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/broadcastOfEvent","label":"broadcastOfEvent","comment":"The event being broadcast such as a sporting event or awards ceremony.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastEvent","rangeIncludes":"http://schema.org/Event","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/broadcastServiceTier","label":"broadcastServiceTier","comment":"The type of service required to have access to the channel (e.g. Standard or Premium).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastChannel","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/broadcastTimezone","label":"broadcastTimezone","comment":"The timezone in <a href=\"http://en.wikipedia.org/wiki/ISO_8601\">ISO 8601 format</a> for which the service bases its broadcasts","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastService","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/broadcaster","label":"broadcaster","comment":"The organization owning or operating the broadcast service.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastService","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/broker","label":"broker","comment":"An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Invoice, http://schema.org/Order, http://schema.org/Reservation, http://schema.org/Service","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"http://schema.org/bookingAgent","supersededBy":""}, {"id":"http://schema.org/browserRequirements","label":"browserRequirements","comment":"Specifies browser requirements in human-readable text. For example, 'requires HTML5 support'.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/WebApplication","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/busName","label":"busName","comment":"The name of the bus (e.g. Bolt Express).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BusTrip","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/busNumber","label":"busNumber","comment":"The unique identifier for the bus.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BusTrip","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/businessFunction","label":"businessFunction","comment":"The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer, http://schema.org/TypeAndQuantityNode","rangeIncludes":"http://schema.org/BusinessFunction","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/buyer","label":"buyer","comment":"A sub property of participant. The participant/person/organization that bought the object.","subPropertyOf":"http://schema.org/participant","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SellAction","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/byArtist","label":"byArtist","comment":"The artist that performed this album or recording.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicAlbum, http://schema.org/MusicRecording","rangeIncludes":"http://schema.org/MusicGroup, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/calories","label":"calories","comment":"The number of calories.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NutritionInformation","rangeIncludes":"http://schema.org/Energy","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/candidate","label":"candidate","comment":"A sub property of object. The candidate subject of this action.","subPropertyOf":"http://schema.org/object","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/VoteAction","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/caption","label":"caption","comment":"The caption for this object. For downloadable machine formats (closed caption, subtitles etc.) use MediaObject and indicate the <a class=\"localLink\" href=\"http://schema.org/encodingFormat\">encodingFormat</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/AudioObject, http://schema.org/ImageObject, http://schema.org/VideoObject","rangeIncludes":"http://schema.org/MediaObject, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/carbohydrateContent","label":"carbohydrateContent","comment":"The number of grams of carbohydrates.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NutritionInformation","rangeIncludes":"http://schema.org/Mass","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/cargoVolume","label":"cargoVolume","comment":"The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.<br/><br/><br/><br/>Typical unit code(s): LTR for liters, FTQ for cubic foot/feet<br/><br/><br/><br/>Note: You can use <a class=\"localLink\" href=\"http://schema.org/minValue\">minValue</a> and <a class=\"localLink\" href=\"http://schema.org/maxValue\">maxValue</a> to indicate ranges.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/carrier","label":"carrier","comment":"'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Flight, http://schema.org/ParcelDelivery","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/provider"}, {"id":"http://schema.org/carrierRequirements","label":"carrierRequirements","comment":"Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MobileApplication","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/catalog","label":"catalog","comment":"A data catalog which contains this dataset.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Dataset","rangeIncludes":"http://schema.org/DataCatalog","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/includedInDataCatalog"}, {"id":"http://schema.org/catalogNumber","label":"catalogNumber","comment":"The catalog number for the release.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicRelease","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/category","label":"category","comment":"A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ActionAccessSpecification, http://schema.org/Invoice, http://schema.org/Offer, http://schema.org/PhysicalActivity, http://schema.org/Product, http://schema.org/Recommendation, http://schema.org/Service","rangeIncludes":"http://schema.org/PhysicalActivityCategory, http://schema.org/Text, http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/ccRecipient","label":"ccRecipient","comment":"A sub property of recipient. The recipient copied on a message.","subPropertyOf":"http://schema.org/recipient","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Message","rangeIncludes":"http://schema.org/ContactPoint, http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/character","label":"character","comment":"Fictional person connected with a creative work.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/characterAttribute","label":"characterAttribute","comment":"A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Game, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/characterName","label":"characterName","comment":"The name of a character played in some acting or performing role, i.e. in a PerformanceRole.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PerformanceRole","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/cheatCode","label":"cheatCode","comment":"Cheat codes to the game.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/VideoGame, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/CreativeWork","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/checkinTime","label":"checkinTime","comment":"The earliest someone may check into a lodging establishment.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LodgingBusiness, http://schema.org/LodgingReservation","rangeIncludes":"http://schema.org/DateTime, http://schema.org/Time","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/checkoutTime","label":"checkoutTime","comment":"The latest someone may check out of a lodging establishment.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LodgingBusiness, http://schema.org/LodgingReservation","rangeIncludes":"http://schema.org/DateTime, http://schema.org/Time","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/childMaxAge","label":"childMaxAge","comment":"Maximal age of the child.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ParentAudience","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/childMinAge","label":"childMinAge","comment":"Minimal age of the child.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ParentAudience","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/children","label":"children","comment":"A child of the person.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/cholesterolContent","label":"cholesterolContent","comment":"The number of milligrams of cholesterol.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NutritionInformation","rangeIncludes":"http://schema.org/Mass","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/circle","label":"circle","comment":"A circle is the circular region of a specified radius centered at a specified latitude and longitude. A circle is expressed as a pair followed by a radius in meters.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeoShape","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/citation","label":"citation","comment":"A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/claimReviewed","label":"claimReviewed","comment":"A short summary of the specific claims reviewed in a ClaimReview.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ClaimReview","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/clipNumber","label":"clipNumber","comment":"Position of the clip within an ordered group of clips.","subPropertyOf":"http://schema.org/position","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Clip","rangeIncludes":"http://schema.org/Integer, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/closes","label":"closes","comment":"The closing hour of the place or service on the given day(s) of the week.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/OpeningHoursSpecification","rangeIncludes":"http://schema.org/Time","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/coach","label":"coach","comment":"A person that acts in a coaching role for a sports team.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SportsTeam","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/codeRepository","label":"codeRepository","comment":"Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareSourceCode","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/codeSampleType","label":"codeSampleType","comment":"What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareSourceCode","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"http://schema.org/sampleType","supersededBy":""}, {"id":"http://schema.org/colleague","label":"colleague","comment":"A colleague of the person.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Person, http://schema.org/URL","inverseOf":"","supersedes":"http://schema.org/colleagues","supersededBy":""}, {"id":"http://schema.org/colleagues","label":"colleagues","comment":"A colleague of the person.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/colleague"}, {"id":"http://schema.org/collection","label":"collection","comment":"A sub property of object. The collection target of the action.","subPropertyOf":"http://schema.org/object","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/UpdateAction","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/targetCollection"}, {"id":"http://schema.org/color","label":"color","comment":"The color of the product.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Product","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/comment","label":"comment","comment":"Comments, typically from users.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/RsvpAction","rangeIncludes":"http://schema.org/Comment","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/commentCount","label":"commentCount","comment":"The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/commentText","label":"commentText","comment":"The text of the UserComment.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/UserComments","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/commentTime","label":"commentTime","comment":"The time at which the UserComment was made.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/UserComments","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/competitor","label":"competitor","comment":"A competitor in a sports event.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/awayTeam, http://schema.org/homeTeam","domainIncludes":"http://schema.org/SportsEvent","rangeIncludes":"http://schema.org/Person, http://schema.org/SportsTeam","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/composer","label":"composer","comment":"The person or organization who wrote a composition, or who is the composer of a work performed at some event.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event, http://schema.org/MusicComposition","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/confirmationNumber","label":"confirmationNumber","comment":"A number that confirms the given order or payment has been received.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Invoice, http://schema.org/Order","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/contactOption","label":"contactOption","comment":"An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ContactPoint","rangeIncludes":"http://schema.org/ContactPointOption","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/contactPoint","label":"contactPoint","comment":"A contact point for a person or organization.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthInsurancePlan, http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/ContactPoint","inverseOf":"","supersedes":"http://schema.org/contactPoints","supersededBy":""}, {"id":"http://schema.org/contactPoints","label":"contactPoints","comment":"A contact point for a person or organization.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/ContactPoint","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/contactPoint"}, {"id":"http://schema.org/contactType","label":"contactType","comment":"A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ContactPoint","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/containedIn","label":"containedIn","comment":"The basic containment relation between a place and one that contains it.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Place","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/containedInPlace"}, {"id":"http://schema.org/containedInPlace","label":"containedInPlace","comment":"The basic containment relation between a place and one that contains it.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Place","rangeIncludes":"http://schema.org/Place","inverseOf":"http://schema.org/containsPlace","supersedes":"http://schema.org/containedIn","supersededBy":""}, {"id":"http://schema.org/containsPlace","label":"containsPlace","comment":"The basic containment relation between a place and another that it contains.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Place","rangeIncludes":"http://schema.org/Place","inverseOf":"http://schema.org/containedInPlace","supersedes":"","supersededBy":""}, {"id":"http://schema.org/containsSeason","label":"containsSeason","comment":"A season that is part of the media series.","subPropertyOf":"http://schema.org/hasPart","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RadioSeries, http://schema.org/TVSeries, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/CreativeWorkSeason","inverseOf":"","supersedes":"http://schema.org/season","supersededBy":""}, {"id":"http://schema.org/contentLocation","label":"contentLocation","comment":"The location depicted or described in the content. For example, the location in a photograph or painting.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/spatialCoverage","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/contentRating","label":"contentRating","comment":"Official rating of a piece of content&#x2014;for example,'MPAA PG-13'.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Rating, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/contentSize","label":"contentSize","comment":"File size in (mega/kilo) bytes.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MediaObject","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/contentType","label":"contentType","comment":"The supported content type(s) for an EntryPoint response.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EntryPoint","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/contentUrl","label":"contentUrl","comment":"Actual bytes of the media object, for example the image file or video file.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MediaObject","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/contributor","label":"contributor","comment":"A secondary contributor to the CreativeWork or Event.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/Event","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/cookTime","label":"cookTime","comment":"The time it takes to actually cook the dish, in <a href=\"http://en.wikipedia.org/wiki/ISO_8601\">ISO 8601 duration format</a>.","subPropertyOf":"http://schema.org/performTime","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Recipe","rangeIncludes":"http://schema.org/Duration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/cookingMethod","label":"cookingMethod","comment":"The method of cooking, such as Frying, Steaming, ...","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Recipe","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/copyrightHolder","label":"copyrightHolder","comment":"The party holding the legal copyright to the CreativeWork.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/copyrightYear","label":"copyrightYear","comment":"The year during which the claimed copyright for the CreativeWork was first asserted.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/countriesNotSupported","label":"countriesNotSupported","comment":"Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/countriesSupported","label":"countriesSupported","comment":"Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/countryOfOrigin","label":"countryOfOrigin","comment":"The country of the principal offices of the production company or individual responsible for the movie or program.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Movie, http://schema.org/TVEpisode, http://schema.org/TVSeason, http://schema.org/TVSeries","rangeIncludes":"http://schema.org/Country","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/course","label":"course","comment":"A sub property of location. The course where this action was taken.","subPropertyOf":"http://schema.org/location","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ExerciseAction","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/exerciseCourse"}, {"id":"http://schema.org/courseCode","label":"courseCode","comment":"The identifier for the <a class=\"localLink\" href=\"http://schema.org/Course\">Course</a> used by the course <a class=\"localLink\" href=\"http://schema.org/provider\">provider</a> (e.g. CS101 or 6.001).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Course","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/courseMode","label":"courseMode","comment":"The medium or means of delivery of the course instance or the mode of study, either as a text label (e.g. \"online\", \"onsite\" or \"blended\"; \"synchronous\" or \"asynchronous\"; \"full-time\" or \"part-time\") or as a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous ).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CourseInstance","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/coursePrerequisites","label":"coursePrerequisites","comment":"Requirements for taking the Course. May be completion of another <a class=\"localLink\" href=\"http://schema.org/Course\">Course</a> or a textual description like \"permission of instructor\". Requirements may be a pre-requisite competency, referenced using <a class=\"localLink\" href=\"http://schema.org/AlignmentObject\">AlignmentObject</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Course","rangeIncludes":"http://schema.org/AlignmentObject, http://schema.org/Course, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/coverageEndTime","label":"coverageEndTime","comment":"The time when the live blog will stop covering the Event. Note that coverage may continue after the Event concludes.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LiveBlogPosting","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/coverageStartTime","label":"coverageStartTime","comment":"The time when the live blog will begin covering the Event. Note that coverage may begin before the Event's start time. The LiveBlogPosting may also be created before coverage begins.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LiveBlogPosting","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/creator","label":"creator","comment":"The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/UserComments","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/creditedTo","label":"creditedTo","comment":"The group the release is credited to if different than the byArtist. For example, Red and Blue is credited to \"Stefani Germanotta Band\", but by Lady Gaga.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicRelease","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/cssSelector","label":"cssSelector","comment":"A CSS selector, e.g. of a <a class=\"localLink\" href=\"http://schema.org/SpeakableSpecification\">SpeakableSpecification</a> or <a class=\"localLink\" href=\"http://schema.org/WebPageElement\">WebPageElement</a>. In the latter case, multiple matches within a page can constitute a single conceptual \"Web page element\".","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SpeakableSpecification, http://schema.org/WebPageElement","rangeIncludes":"http://schema.org/CssSelectorType","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/currenciesAccepted","label":"currenciesAccepted","comment":"The currency accepted.<br/><br/><br/><br/>Use standard formats: <a href=\"http://en.wikipedia.org/wiki/ISO_4217\">ISO 4217 currency format</a> e.g. \"USD\"; <a href=\"https://en.wikipedia.org/wiki/List_of_cryptocurrencies\">Ticker symbol</a> for cryptocurrencies e.g. \"BTC\"; well known names for <a href=\"https://en.wikipedia.org/wiki/Local_exchange_trading_system\">Local Exchange Tradings Systems</a> (LETS) and other currency types e.g. \"Ithaca HOUR\".","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LocalBusiness","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/currency","label":"currency","comment":"The currency in which the monetary amount is expressed.<br/><br/><br/><br/>Use standard formats: <a href=\"http://en.wikipedia.org/wiki/ISO_4217\">ISO 4217 currency format</a> e.g. \"USD\"; <a href=\"https://en.wikipedia.org/wiki/List_of_cryptocurrencies\">Ticker symbol</a> for cryptocurrencies e.g. \"BTC\"; well known names for <a href=\"https://en.wikipedia.org/wiki/Local_exchange_trading_system\">Local Exchange Tradings Systems</a> (LETS) and other currency types e.g. \"Ithaca HOUR\".","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/DatedMoneySpecification, http://schema.org/ExchangeRateSpecification, http://schema.org/LoanOrCredit, http://schema.org/MonetaryAmount, http://schema.org/MonetaryAmountDistribution","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/customer","label":"customer","comment":"Party placing the order or paying the invoice.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Invoice, http://schema.org/Order","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/dataFeedElement","label":"dataFeedElement","comment":"An item within in a data feed. Data feeds may have many elements.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/DataFeed","rangeIncludes":"http://schema.org/DataFeedItem, http://schema.org/Text, http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/dataset","label":"dataset","comment":"A dataset contained in this catalog.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/DataCatalog","rangeIncludes":"http://schema.org/Dataset","inverseOf":"http://schema.org/includedInDataCatalog","supersedes":"","supersededBy":""}, {"id":"http://schema.org/datasetTimeInterval","label":"datasetTimeInterval","comment":"The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 (in ISO 8601 time interval format).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Dataset","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/temporalCoverage"}, {"id":"http://schema.org/dateCreated","label":"dateCreated","comment":"The date on which the CreativeWork was created or the item was added to a DataFeed.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/DataFeedItem","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/dateDeleted","label":"dateDeleted","comment":"The datetime the item was removed from the DataFeed.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/DataFeedItem","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/dateIssued","label":"dateIssued","comment":"The date the ticket was issued.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Ticket","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/dateModified","label":"dateModified","comment":"The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/DataFeedItem","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/datePosted","label":"datePosted","comment":"Publication date of an online listing.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting, http://schema.org/RealEstateListing","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/datePublished","label":"datePublished","comment":"Date of first broadcast/publication.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/dateRead","label":"dateRead","comment":"The date/time at which the message has been read by the recipient if a single recipient exists.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Message","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/dateReceived","label":"dateReceived","comment":"The date/time the message was received if a single recipient exists.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Message","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/dateSent","label":"dateSent","comment":"The date/time at which the message was sent.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Message","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/dateVehicleFirstRegistered","label":"dateVehicleFirstRegistered","comment":"The date of the first registration of the vehicle with the respective public authorities.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/dateline","label":"dateline","comment":"A <a href=\"https://en.wikipedia.org/wiki/Dateline\">dateline</a> is a brief piece of text included in news articles that describes where and when the story was written or filed though the date is often omitted. Sometimes only a placename is provided.<br/><br/><br/><br/>Structured representations of dateline-related information can also be expressed more explicitly using <a class=\"localLink\" href=\"http://schema.org/locationCreated\">locationCreated</a> (which represents where a work was created e.g. where a news report was written). For location depicted or described in the content, use <a class=\"localLink\" href=\"http://schema.org/contentLocation\">contentLocation</a>.<br/><br/><br/><br/>Dateline summaries are oriented more towards human readers than towards automated processing, and can vary substantially. Some examples: \"BEIRUT, Lebanon, June 2.\", \"Paris, France\", \"December 19, 2017 11:43AM Reporting from Washington\", \"Beijing/Moscow\", \"QUEZON CITY, Philippines\".","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NewsArticle","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/dayOfWeek","label":"dayOfWeek","comment":"The day of the week for which these opening hours are valid.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalProgram, http://schema.org/OpeningHoursSpecification","rangeIncludes":"http://schema.org/DayOfWeek","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/deathDate","label":"deathDate","comment":"Date of death.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/deathPlace","label":"deathPlace","comment":"The place where the person died.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/defaultValue","label":"defaultValue","comment":"The default value of the input. For properties that expect a literal, the default is a literal value, for properties that expect an object, it's an ID reference to one of the current values.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PropertyValueSpecification","rangeIncludes":"http://schema.org/Text, http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/deliveryAddress","label":"deliveryAddress","comment":"Destination address.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ParcelDelivery","rangeIncludes":"http://schema.org/PostalAddress","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/deliveryLeadTime","label":"deliveryLeadTime","comment":"The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/deliveryMethod","label":"deliveryMethod","comment":"A sub property of instrument. The method of delivery.","subPropertyOf":"http://schema.org/instrument","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/OrderAction, http://schema.org/ReceiveAction, http://schema.org/SendAction, http://schema.org/TrackAction","rangeIncludes":"http://schema.org/DeliveryMethod","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/deliveryStatus","label":"deliveryStatus","comment":"New entry added as the package passes through each leg of its journey (from shipment to final delivery).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ParcelDelivery","rangeIncludes":"http://schema.org/DeliveryEvent","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/department","label":"department","comment":"A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/departureAirport","label":"departureAirport","comment":"The airport where the flight originates.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Flight","rangeIncludes":"http://schema.org/Airport","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/departureBusStop","label":"departureBusStop","comment":"The stop or station from which the bus departs.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BusTrip","rangeIncludes":"http://schema.org/BusStation, http://schema.org/BusStop","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/departureGate","label":"departureGate","comment":"Identifier of the flight's departure gate.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Flight","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/departurePlatform","label":"departurePlatform","comment":"The platform from which the train departs.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/TrainTrip","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/departureStation","label":"departureStation","comment":"The station from which the train departs.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/TrainTrip","rangeIncludes":"http://schema.org/TrainStation","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/departureTerminal","label":"departureTerminal","comment":"Identifier of the flight's departure terminal.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Flight","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/departureTime","label":"departureTime","comment":"The expected departure time.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Trip","rangeIncludes":"http://schema.org/DateTime, http://schema.org/Time","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/dependencies","label":"dependencies","comment":"Prerequisites needed to fulfill steps in article.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/TechArticle","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/depth","label":"depth","comment":"The depth of the item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Product, http://schema.org/VisualArtwork","rangeIncludes":"http://schema.org/Distance, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/description","label":"description","comment":"A description of the item.","subPropertyOf":"","equivalentProperty":"http://purl.org/dc/terms/description","subproperties":"http://schema.org/disambiguatingDescription","domainIncludes":"http://schema.org/Thing","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/device","label":"device","comment":"Device required to run the application. Used in cases where a specific make/model is required to run the application.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/availableOnDevice"}, {"id":"http://schema.org/director","label":"director","comment":"A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Clip, http://schema.org/CreativeWorkSeason, http://schema.org/Episode, http://schema.org/Event, http://schema.org/Movie, http://schema.org/MovieSeries, http://schema.org/RadioSeries, http://schema.org/TVSeries, http://schema.org/VideoGame, http://schema.org/VideoGameSeries, http://schema.org/VideoObject","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"http://schema.org/directors","supersededBy":""}, {"id":"http://schema.org/directors","label":"directors","comment":"A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Clip, http://schema.org/Episode, http://schema.org/Movie, http://schema.org/MovieSeries, http://schema.org/RadioSeries, http://schema.org/TVSeries, http://schema.org/VideoGame, http://schema.org/VideoGameSeries, http://schema.org/VideoObject","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/director"}, {"id":"http://schema.org/disambiguatingDescription","label":"disambiguatingDescription","comment":"A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.","subPropertyOf":"http://schema.org/description","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Thing","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/discount","label":"discount","comment":"Any discount applied (to an Order).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Order","rangeIncludes":"http://schema.org/Number, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/discountCode","label":"discountCode","comment":"Code used to redeem a discount.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Order","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/discountCurrency","label":"discountCurrency","comment":"The currency of the discount.<br/><br/><br/><br/>Use standard formats: <a href=\"http://en.wikipedia.org/wiki/ISO_4217\">ISO 4217 currency format</a> e.g. \"USD\"; <a href=\"https://en.wikipedia.org/wiki/List_of_cryptocurrencies\">Ticker symbol</a> for cryptocurrencies e.g. \"BTC\"; well known names for <a href=\"https://en.wikipedia.org/wiki/Local_exchange_trading_system\">Local Exchange Tradings Systems</a> (LETS) and other currency types e.g. \"Ithaca HOUR\".","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Order","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/discusses","label":"discusses","comment":"Specifies the CreativeWork associated with the UserComment.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/UserComments","rangeIncludes":"http://schema.org/CreativeWork","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/discussionUrl","label":"discussionUrl","comment":"A link to the page containing the comments of the CreativeWork.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/dissolutionDate","label":"dissolutionDate","comment":"The date that this organization was dissolved.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/distance","label":"distance","comment":"The distance travelled, e.g. exercising or travelling.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ExerciseAction, http://schema.org/TravelAction","rangeIncludes":"http://schema.org/Distance","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/distribution","label":"distribution","comment":"A downloadable form of this dataset, at a specific location, in a specific format.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Dataset","rangeIncludes":"http://schema.org/DataDownload","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/doorTime","label":"doorTime","comment":"The time admission will commence.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event","rangeIncludes":"http://schema.org/DateTime, http://schema.org/Time","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/downloadUrl","label":"downloadUrl","comment":"If the file can be downloaded, URL to download the binary.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/downvoteCount","label":"downvoteCount","comment":"The number of downvotes this question, answer or comment has received from the community.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Comment, http://schema.org/Question","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/driveWheelConfiguration","label":"driveWheelConfiguration","comment":"The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/DriveWheelConfigurationValue, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/dropoffLocation","label":"dropoffLocation","comment":"Where a rental car can be dropped off.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RentalCarReservation","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/dropoffTime","label":"dropoffTime","comment":"When a rental car can be dropped off.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RentalCarReservation","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/duns","label":"duns","comment":"The Dun &amp; Bradstreet DUNS number for identifying an organization or business person.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/duration","label":"duration","comment":"The duration of the item (movie, audio recording, event, etc.) in <a href=\"http://en.wikipedia.org/wiki/ISO_8601\">ISO 8601 date format</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/loanTerm","domainIncludes":"http://schema.org/Audiobook, http://schema.org/Event, http://schema.org/MediaObject, http://schema.org/Movie, http://schema.org/MusicRecording, http://schema.org/MusicRelease, http://schema.org/QuantitativeValueDistribution, http://schema.org/Schedule","rangeIncludes":"http://schema.org/Duration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/durationOfWarranty","label":"durationOfWarranty","comment":"The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/WarrantyPromise","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/duringMedia","label":"duringMedia","comment":"A media object representing the circumstances while performing this direction.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HowToDirection","rangeIncludes":"http://schema.org/MediaObject, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/editor","label":"editor","comment":"Specifies the Person who edited the CreativeWork.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/educationalAlignment","label":"educationalAlignment","comment":"An alignment to an established educational framework.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/AlignmentObject","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/educationalCredentialAwarded","label":"educationalCredentialAwarded","comment":"A description of the qualification, award, certificate, diploma or other educational credential awarded as a consequence of successful completion of this course or program.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Course, http://schema.org/EducationalOccupationalProgram","rangeIncludes":"http://schema.org/EducationalOccupationalCredential, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/educationalFramework","label":"educationalFramework","comment":"The framework to which the resource being described is aligned.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/AlignmentObject","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/educationalRole","label":"educationalRole","comment":"An educationalRole of an EducationalAudience.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalAudience","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/educationalUse","label":"educationalUse","comment":"The purpose of a work in the context of education; for example, 'assignment', 'group work'.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/elevation","label":"elevation","comment":"The elevation of a location (<a href=\"https://en.wikipedia.org/wiki/World_Geodetic_System\">WGS 84</a>). Values may be of the form 'NUMBER UNIT<em>OF</em>MEASUREMENT' (e.g., '1,000 m', '3,200 ft') while numbers alone should be assumed to be a value in meters.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeoCoordinates, http://schema.org/GeoShape","rangeIncludes":"http://schema.org/Number, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/eligibleCustomerType","label":"eligibleCustomerType","comment":"The type(s) of customers for which the given offer is valid.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer","rangeIncludes":"http://schema.org/BusinessEntityType","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/eligibleDuration","label":"eligibleDuration","comment":"The duration for which the given offer is valid.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/eligibleQuantity","label":"eligibleQuantity","comment":"The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer, http://schema.org/PriceSpecification","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/eligibleRegion","label":"eligibleRegion","comment":"The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.<br/><br/><br/><br/>See also <a class=\"localLink\" href=\"http://schema.org/ineligibleRegion\">ineligibleRegion</a>.","subPropertyOf":"http://schema.org/areaServed","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ActionAccessSpecification, http://schema.org/DeliveryChargeSpecification, http://schema.org/Demand, http://schema.org/Offer","rangeIncludes":"http://schema.org/GeoShape, http://schema.org/Place, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/eligibleTransactionVolume","label":"eligibleTransactionVolume","comment":"The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer, http://schema.org/PriceSpecification","rangeIncludes":"http://schema.org/PriceSpecification","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/email","label":"email","comment":"Email address.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ContactPoint, http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/embedUrl","label":"embedUrl","comment":"A URL pointing to a player for a specific video. In general, this is the information in the <code>src</code> element of an <code>embed</code> tag and should not be the same as the content of the <code>loc</code> tag.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MediaObject","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/employee","label":"employee","comment":"Someone working for this organization.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"http://schema.org/employees","supersededBy":""}, {"id":"http://schema.org/employees","label":"employees","comment":"People working for this organization.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/employee"}, {"id":"http://schema.org/employmentType","label":"employmentType","comment":"Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/encodesCreativeWork","label":"encodesCreativeWork","comment":"The CreativeWork encoded by this media object.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MediaObject","rangeIncludes":"http://schema.org/CreativeWork","inverseOf":"http://schema.org/encoding","supersedes":"","supersededBy":""}, {"id":"http://schema.org/encoding","label":"encoding","comment":"A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/MediaObject","inverseOf":"http://schema.org/encodesCreativeWork","supersedes":"http://schema.org/encodings","supersededBy":""}, {"id":"http://schema.org/encodingFormat","label":"encodingFormat","comment":"Media type typically expressed using a MIME format (see <a href=\"http://www.iana.org/assignments/media-types/media-types.xhtml\">IANA site</a> and <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types\">MDN reference</a>) e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.).<br/><br/><br/><br/>In cases where a <a class=\"localLink\" href=\"http://schema.org/CreativeWork\">CreativeWork</a> has several media type representations, <a class=\"localLink\" href=\"http://schema.org/encoding\">encoding</a> can be used to indicate each <a class=\"localLink\" href=\"http://schema.org/MediaObject\">MediaObject</a> alongside particular <a class=\"localLink\" href=\"http://schema.org/encodingFormat\">encodingFormat</a> information.<br/><br/><br/><br/>Unregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/MediaObject","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"http://schema.org/fileFormat","supersededBy":""}, {"id":"http://schema.org/encodingType","label":"encodingType","comment":"The supported encoding type(s) for an EntryPoint request.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EntryPoint","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/encodings","label":"encodings","comment":"A media object that encodes this CreativeWork.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/MediaObject","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/encoding"}, {"id":"http://schema.org/endDate","label":"endDate","comment":"The end date and time of the item (in <a href=\"http://en.wikipedia.org/wiki/ISO_8601\">ISO 8601 date format</a>).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWorkSeason, http://schema.org/CreativeWorkSeries, http://schema.org/DatedMoneySpecification, http://schema.org/EducationalOccupationalProgram, http://schema.org/Event, http://schema.org/Role","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/endTime","label":"endTime","comment":"The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to <em>December</em>. For media, including audio and video, it's the time offset of the end of a clip within a larger file.<br/><br/><br/><br/>Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Action, http://schema.org/FoodEstablishmentReservation, http://schema.org/MediaObject","rangeIncludes":"http://schema.org/DateTime, http://schema.org/Time","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/endorsee","label":"endorsee","comment":"A sub property of participant. The person/organization being supported.","subPropertyOf":"http://schema.org/participant","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EndorseAction","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/entertainmentBusiness","label":"entertainmentBusiness","comment":"A sub property of location. The entertainment business where the action occurred.","subPropertyOf":"http://schema.org/location","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PerformAction","rangeIncludes":"http://schema.org/EntertainmentBusiness","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/episode","label":"episode","comment":"An episode of a tv, radio or game media within a series or season.","subPropertyOf":"http://schema.org/hasPart","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWorkSeason, http://schema.org/RadioSeries, http://schema.org/TVSeries, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/Episode","inverseOf":"","supersedes":"http://schema.org/episodes","supersededBy":""}, {"id":"http://schema.org/episodeNumber","label":"episodeNumber","comment":"Position of the episode within an ordered group of episodes.","subPropertyOf":"http://schema.org/position","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Episode","rangeIncludes":"http://schema.org/Integer, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/episodes","label":"episodes","comment":"An episode of a TV/radio series or season.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWorkSeason, http://schema.org/RadioSeries, http://schema.org/TVSeries, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/Episode","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/episode"}, {"id":"http://schema.org/equal","label":"equal","comment":"This ordering relation for qualitative values indicates that the subject is equal to the object.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/QualitativeValue","rangeIncludes":"http://schema.org/QualitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/error","label":"error","comment":"For failed actions, more information on the cause of the failure.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Action","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/estimatedCost","label":"estimatedCost","comment":"The estimated cost of the supply or supplies consumed when performing instructions.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HowTo, http://schema.org/HowToSupply","rangeIncludes":"http://schema.org/MonetaryAmount, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/estimatedFlightDuration","label":"estimatedFlightDuration","comment":"The estimated time the flight will take.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Flight","rangeIncludes":"http://schema.org/Duration, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/estimatedSalary","label":"estimatedSalary","comment":"An estimated salary for a job posting or occupation, based on a variety of variables including, but not limited to industry, job title, and location. Estimated salaries are often computed by outside organizations rather than the hiring organization, who may not have committed to the estimated value.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting, http://schema.org/Occupation","rangeIncludes":"http://schema.org/MonetaryAmount, http://schema.org/MonetaryAmountDistribution, http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/event","label":"event","comment":"Upcoming or past event associated with this place, organization, or action.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/InformAction, http://schema.org/InviteAction, http://schema.org/JoinAction, http://schema.org/LeaveAction, http://schema.org/Organization, http://schema.org/Place, http://schema.org/PlayAction","rangeIncludes":"http://schema.org/Event","inverseOf":"","supersedes":"http://schema.org/events","supersededBy":""}, {"id":"http://schema.org/eventStatus","label":"eventStatus","comment":"An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event","rangeIncludes":"http://schema.org/EventStatusType","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/events","label":"events","comment":"Upcoming or past events associated with this place or organization.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Place","rangeIncludes":"http://schema.org/Event","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/event"}, {"id":"http://schema.org/exampleOfWork","label":"exampleOfWork","comment":"A creative work that this work is an example/instance/realization/derivation of.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/CreativeWork","inverseOf":"http://schema.org/workExample","supersedes":"","supersededBy":""}, {"id":"http://schema.org/executableLibraryName","label":"executableLibraryName","comment":"Library file name e.g., mscorlib.dll, system.web.dll.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/APIReference","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"http://schema.org/assembly","supersededBy":""}, {"id":"http://schema.org/exerciseCourse","label":"exerciseCourse","comment":"A sub property of location. The course where this action was taken.","subPropertyOf":"http://schema.org/location","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ExerciseAction","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"http://schema.org/course","supersededBy":""}, {"id":"http://schema.org/exifData","label":"exifData","comment":"exif data for this object.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ImageObject","rangeIncludes":"http://schema.org/PropertyValue, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/expectedArrivalFrom","label":"expectedArrivalFrom","comment":"The earliest date the package may arrive.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ParcelDelivery","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/expectedArrivalUntil","label":"expectedArrivalUntil","comment":"The latest date the package may arrive.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ParcelDelivery","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/expectsAcceptanceOf","label":"expectsAcceptanceOf","comment":"An Offer which must be accepted before the user can perform the Action. For example, the user may need to buy a movie before being able to watch it.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ActionAccessSpecification, http://schema.org/ConsumeAction, http://schema.org/MediaSubscription","rangeIncludes":"http://schema.org/Offer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/experienceRequirements","label":"experienceRequirements","comment":"Description of skills and experience needed for the position or Occupation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting, http://schema.org/Occupation","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/expires","label":"expires","comment":"Date the content expires and is no longer useful or available. For example a <a class=\"localLink\" href=\"http://schema.org/VideoObject\">VideoObject</a> or <a class=\"localLink\" href=\"http://schema.org/NewsArticle\">NewsArticle</a> whose availability or relevance is time-limited, or a <a class=\"localLink\" href=\"http://schema.org/ClaimReview\">ClaimReview</a> fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/familyName","label":"familyName","comment":"Family name. In the U.S., the last name of an Person. This can be used along with givenName instead of the name property.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/fatContent","label":"fatContent","comment":"The number of grams of fat.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NutritionInformation","rangeIncludes":"http://schema.org/Mass","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/faxNumber","label":"faxNumber","comment":"The fax number.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ContactPoint, http://schema.org/Organization, http://schema.org/Person, http://schema.org/Place","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/featureList","label":"featureList","comment":"Features or modules provided by this application (and possibly required by other applications).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/feesAndCommissionsSpecification","label":"feesAndCommissionsSpecification","comment":"Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/FinancialProduct, http://schema.org/FinancialService","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/fiberContent","label":"fiberContent","comment":"The number of grams of fiber.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NutritionInformation","rangeIncludes":"http://schema.org/Mass","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/fileFormat","label":"fileFormat","comment":"Media type, typically MIME format (see <a href=\"http://www.iana.org/assignments/media-types/media-types.xhtml\">IANA site</a>) of the content e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/encodingFormat"}, {"id":"http://schema.org/fileSize","label":"fileSize","comment":"Size of the application / package (e.g. 18MB). In the absence of a unit (MB, KB etc.), KB will be assumed.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/firstPerformance","label":"firstPerformance","comment":"The date and place the work was first performed.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicComposition","rangeIncludes":"http://schema.org/Event","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/flightDistance","label":"flightDistance","comment":"The distance of the flight.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Flight","rangeIncludes":"http://schema.org/Distance, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/flightNumber","label":"flightNumber","comment":"The unique identifier for a flight including the airline IATA code. For example, if describing United flight 110, where the IATA code for United is 'UA', the flightNumber is 'UA110'.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Flight","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/floorSize","label":"floorSize","comment":"The size of the accommodation, e.g. in square meter or squarefoot.Typical unit code(s): MTK for square meter, FTK for square foot, or YDK for square yard","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Accommodation","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/followee","label":"followee","comment":"A sub property of object. The person or organization being followed.","subPropertyOf":"http://schema.org/object","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/FollowAction","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/follows","label":"follows","comment":"The most generic uni-directional social relation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/foodEstablishment","label":"foodEstablishment","comment":"A sub property of location. The specific food establishment where the action occurred.","subPropertyOf":"http://schema.org/location","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CookAction","rangeIncludes":"http://schema.org/FoodEstablishment, http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/foodEvent","label":"foodEvent","comment":"A sub property of location. The specific food event where the action occurred.","subPropertyOf":"http://schema.org/location","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CookAction","rangeIncludes":"http://schema.org/FoodEvent","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/founder","label":"founder","comment":"A person who founded this organization.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"http://schema.org/founders","supersededBy":""}, {"id":"http://schema.org/founders","label":"founders","comment":"A person who founded this organization.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/founder"}, {"id":"http://schema.org/foundingDate","label":"foundingDate","comment":"The date that this organization was founded.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/foundingLocation","label":"foundingLocation","comment":"The place where the Organization was founded.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/free","label":"free","comment":"A flag to signal that the item, event, or place is accessible for free.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PublicationEvent","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/isAccessibleForFree"}, {"id":"http://schema.org/fromLocation","label":"fromLocation","comment":"A sub property of location. The original location of the object or the agent before the action.","subPropertyOf":"http://schema.org/location","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ExerciseAction, http://schema.org/MoveAction, http://schema.org/TransferAction","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/fuelConsumption","label":"fuelConsumption","comment":"The amount of fuel consumed for traveling a particular distance or temporal duration with the given vehicle (e.g. liters per 100 km).<br/><br/><br/><br/><ul><li>Note 1: There are unfortunately no standard unit codes for liters per 100 km. Use <a class=\"localLink\" href=\"http://schema.org/unitText\">unitText</a> to indicate the unit of measurement, e.g. L/100 km.</li><li>Note 2: There are two ways of indicating the fuel consumption, <a class=\"localLink\" href=\"http://schema.org/fuelConsumption\">fuelConsumption</a> (e.g. 8 liters per 100 km) and <a class=\"localLink\" href=\"http://schema.org/fuelEfficiency\">fuelEfficiency</a> (e.g. 30 miles per gallon). They are reciprocal.</li><li>Note 3: Often, the absolute value is useful only when related to driving speed (\"at 80 km/h\") or usage pattern (\"city traffic\"). You can use <a class=\"localLink\" href=\"http://schema.org/valueReference\">valueReference</a> to link the value for the fuel consumption to another value.</li></ul>","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/fuelEfficiency","label":"fuelEfficiency","comment":"The distance traveled per unit of fuel used; most commonly miles per gallon (mpg) or kilometers per liter (km/L).<br/><br/><br/><br/><ul><li>Note 1: There are unfortunately no standard unit codes for miles per gallon or kilometers per liter. Use <a class=\"localLink\" href=\"http://schema.org/unitText\">unitText</a> to indicate the unit of measurement, e.g. mpg or km/L.</li><li>Note 2: There are two ways of indicating the fuel consumption, <a class=\"localLink\" href=\"http://schema.org/fuelConsumption\">fuelConsumption</a> (e.g. 8 liters per 100 km) and <a class=\"localLink\" href=\"http://schema.org/fuelEfficiency\">fuelEfficiency</a> (e.g. 30 miles per gallon). They are reciprocal.</li><li>Note 3: Often, the absolute value is useful only when related to driving speed (\"at 80 km/h\") or usage pattern (\"city traffic\"). You can use <a class=\"localLink\" href=\"http://schema.org/valueReference\">valueReference</a> to link the value for the fuel economy to another value.</li></ul>","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/fuelType","label":"fuelType","comment":"The type of fuel suitable for the engine or engines of the vehicle. If the vehicle has only one engine, this property can be attached directly to the vehicle.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EngineSpecification, http://schema.org/Vehicle","rangeIncludes":"http://schema.org/QualitativeValue, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/funder","label":"funder","comment":"A person or organization that supports (sponsors) something through some kind of financial contribution.","subPropertyOf":"http://schema.org/sponsor","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/Event, http://schema.org/MonetaryGrant, http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/game","label":"game","comment":"Video game which is played on this server.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GameServer","rangeIncludes":"http://schema.org/VideoGame","inverseOf":"http://schema.org/gameServer","supersedes":"","supersededBy":""}, {"id":"http://schema.org/gameItem","label":"gameItem","comment":"An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Game, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/gameLocation","label":"gameLocation","comment":"Real or fictional location of the game (or part of game).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Game, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/Place, http://schema.org/PostalAddress, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/gamePlatform","label":"gamePlatform","comment":"The electronic systems used to play <a href=\"http://en.wikipedia.org/wiki/Category:Video_game_platforms\">video games</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/VideoGame, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/Text, http://schema.org/Thing, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/gameServer","label":"gameServer","comment":"The server on which it is possible to play the game.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/VideoGame","rangeIncludes":"http://schema.org/GameServer","inverseOf":"http://schema.org/game","supersedes":"","supersededBy":""}, {"id":"http://schema.org/gameTip","label":"gameTip","comment":"Links to tips, tactics, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/VideoGame","rangeIncludes":"http://schema.org/CreativeWork","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/genre","label":"genre","comment":"Genre of the creative work, broadcast channel or group.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastChannel, http://schema.org/CreativeWork, http://schema.org/MusicGroup","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/geo","label":"geo","comment":"The geo coordinates of the place.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Place","rangeIncludes":"http://schema.org/GeoCoordinates, http://schema.org/GeoShape","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/geoContains","label":"geoContains","comment":"Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. \"a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a\". As defined in <a href=\"https://en.wikipedia.org/wiki/DE-9IM\">DE-9IM</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","rangeIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/geoCoveredBy","label":"geoCoveredBy","comment":"Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in <a href=\"https://en.wikipedia.org/wiki/DE-9IM\">DE-9IM</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","rangeIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/geoCovers","label":"geoCovers","comment":"Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. \"Every point of b is a point of (the interior or boundary of) a\". As defined in <a href=\"https://en.wikipedia.org/wiki/DE-9IM\">DE-9IM</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","rangeIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/geoCrosses","label":"geoCrosses","comment":"Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: \"a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them\". As defined in <a href=\"https://en.wikipedia.org/wiki/DE-9IM\">DE-9IM</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","rangeIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/geoDisjoint","label":"geoDisjoint","comment":"Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: they have no point in common. They form a set of disconnected geometries.\" (a symmetric relationship, as defined in <a href=\"https://en.wikipedia.org/wiki/DE-9IM\">DE-9IM</a>)","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","rangeIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/geoEquals","label":"geoEquals","comment":"Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in <a href=\"https://en.wikipedia.org/wiki/DE-9IM\">DE-9IM</a>. \"Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other\" (a symmetric relationship)","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","rangeIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/geoIntersects","label":"geoIntersects","comment":"Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in <a href=\"https://en.wikipedia.org/wiki/DE-9IM\">DE-9IM</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","rangeIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/geoMidpoint","label":"geoMidpoint","comment":"Indicates the GeoCoordinates at the centre of a GeoShape e.g. GeoCircle.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeoCircle","rangeIncludes":"http://schema.org/GeoCoordinates","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/geoOverlaps","label":"geoOverlaps","comment":"Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in <a href=\"https://en.wikipedia.org/wiki/DE-9IM\">DE-9IM</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","rangeIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/geoRadius","label":"geoRadius","comment":"Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeoCircle","rangeIncludes":"http://schema.org/Distance, http://schema.org/Number, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/geoTouches","label":"geoTouches","comment":"Represents spatial relations in which two geometries (or the places they represent) touch: they have at least one boundary point in common, but no interior points.\" (a symmetric relationship, as defined in <a href=\"https://en.wikipedia.org/wiki/DE-9IM\">DE-9IM</a> )","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","rangeIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/geoWithin","label":"geoWithin","comment":"Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in <a href=\"https://en.wikipedia.org/wiki/DE-9IM\">DE-9IM</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","rangeIncludes":"http://schema.org/GeospatialGeometry, http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/geographicArea","label":"geographicArea","comment":"The geographic area associated with the audience.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Audience","rangeIncludes":"http://schema.org/AdministrativeArea","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/givenName","label":"givenName","comment":"Given name. In the U.S., the first name of a Person. This can be used along with familyName instead of the name property.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/globalLocationNumber","label":"globalLocationNumber","comment":"The <a href=\"http://www.gs1.org/gln\">Global Location Number</a> (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Person, http://schema.org/Place","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/grantee","label":"grantee","comment":"The person, organization, contact point, or audience that has been granted this permission.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/DigitalDocumentPermission","rangeIncludes":"http://schema.org/Audience, http://schema.org/ContactPoint, http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/greater","label":"greater","comment":"This ordering relation for qualitative values indicates that the subject is greater than the object.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/QualitativeValue","rangeIncludes":"http://schema.org/QualitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/greaterOrEqual","label":"greaterOrEqual","comment":"This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/QualitativeValue","rangeIncludes":"http://schema.org/QualitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/gtin12","label":"gtin12","comment":"The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See <a href=\"http://www.gs1.org/barcodes/technical/idkeys/gtin\">GS1 GTIN Summary</a> for more details.","subPropertyOf":"http://schema.org/gtin, http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer, http://schema.org/Product","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/gtin13","label":"gtin13","comment":"The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero. See <a href=\"http://www.gs1.org/barcodes/technical/idkeys/gtin\">GS1 GTIN Summary</a> for more details.","subPropertyOf":"http://schema.org/gtin, http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer, http://schema.org/Product","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/gtin14","label":"gtin14","comment":"The GTIN-14 code of the product, or the product to which the offer refers. See <a href=\"http://www.gs1.org/barcodes/technical/idkeys/gtin\">GS1 GTIN Summary</a> for more details.","subPropertyOf":"http://schema.org/gtin, http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer, http://schema.org/Product","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/gtin8","label":"gtin8","comment":"The <a href=\"http://apps.gs1.org/GDD/glossary/Pages/GTIN-8.aspx\">GTIN-8</a> code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See <a href=\"http://www.gs1.org/barcodes/technical/idkeys/gtin\">GS1 GTIN Summary</a> for more details.","subPropertyOf":"http://schema.org/gtin, http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer, http://schema.org/Product","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hasBroadcastChannel","label":"hasBroadcastChannel","comment":"A broadcast channel of a broadcast service.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastService","rangeIncludes":"http://schema.org/BroadcastChannel","inverseOf":"http://schema.org/providesBroadcastService","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hasCourseInstance","label":"hasCourseInstance","comment":"An offering of the course at a specific time and place or through specific media or mode of study or to a specific section of students.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Course","rangeIncludes":"http://schema.org/CourseInstance","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hasDeliveryMethod","label":"hasDeliveryMethod","comment":"Method used for delivery or shipping.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/DeliveryEvent, http://schema.org/ParcelDelivery","rangeIncludes":"http://schema.org/DeliveryMethod","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hasDigitalDocumentPermission","label":"hasDigitalDocumentPermission","comment":"A permission related to the access to this document (e.g. permission to read or write an electronic document). For a public document, specify a grantee with an Audience with audienceType equal to \"public\".","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/DigitalDocument","rangeIncludes":"http://schema.org/DigitalDocumentPermission","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hasMap","label":"hasMap","comment":"A URL to a map of the place.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Place","rangeIncludes":"http://schema.org/Map, http://schema.org/URL","inverseOf":"","supersedes":"http://schema.org/map, http://schema.org/maps","supersededBy":""}, {"id":"http://schema.org/hasMenu","label":"hasMenu","comment":"Either the actual menu as a structured representation, as text, or a URL of the menu.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/FoodEstablishment","rangeIncludes":"http://schema.org/Menu, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"http://schema.org/menu","supersededBy":""}, {"id":"http://schema.org/hasMenuItem","label":"hasMenuItem","comment":"A food or drink item contained in a menu or menu section.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Menu, http://schema.org/MenuSection","rangeIncludes":"http://schema.org/MenuItem","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hasMenuSection","label":"hasMenuSection","comment":"A subgrouping of the menu (by dishes, course, serving time period, etc.).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Menu, http://schema.org/MenuSection","rangeIncludes":"http://schema.org/MenuSection","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hasOccupation","label":"hasOccupation","comment":"The Person's occupation. For past professions, use Role for expressing dates.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Occupation","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hasOfferCatalog","label":"hasOfferCatalog","comment":"Indicates an OfferCatalog listing for this Organization, Person, or Service.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Person, http://schema.org/Service","rangeIncludes":"http://schema.org/OfferCatalog","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hasPOS","label":"hasPOS","comment":"Points-of-Sales operated by the organization or person.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hasPart","label":"hasPart","comment":"Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/containsSeason, http://schema.org/episode, http://schema.org/season","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/CreativeWork","inverseOf":"http://schema.org/isPartOf","supersedes":"","supersededBy":""}, {"id":"http://schema.org/headline","label":"headline","comment":"Headline of the article.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/height","label":"height","comment":"The height of the item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MediaObject, http://schema.org/Person, http://schema.org/Product, http://schema.org/VisualArtwork","rangeIncludes":"http://schema.org/Distance, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/highPrice","label":"highPrice","comment":"The highest price of all offers available.<br/><br/><br/><br/>Usage guidelines:<br/><br/><br/><br/><ul><li>Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.</li><li>Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.</li></ul>","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/AggregateOffer","rangeIncludes":"http://schema.org/Number, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hiringOrganization","label":"hiringOrganization","comment":"Organization offering the job position.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/homeLocation","label":"homeLocation","comment":"A contact location for a person's residence.","subPropertyOf":"http://schema.org/location","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/ContactPoint, http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/homeTeam","label":"homeTeam","comment":"The home team in a sports event.","subPropertyOf":"http://schema.org/competitor","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SportsEvent","rangeIncludes":"http://schema.org/Person, http://schema.org/SportsTeam","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/honorificPrefix","label":"honorificPrefix","comment":"An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/honorificSuffix","label":"honorificSuffix","comment":"An honorific suffix preceding a Person's name such as M.D. /PhD/MSCSW.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hostingOrganization","label":"hostingOrganization","comment":"The organization (airline, travelers' club, etc.) the membership is made with.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ProgramMembership","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hoursAvailable","label":"hoursAvailable","comment":"The hours during which this service or contact is available.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ContactPoint, http://schema.org/LocationFeatureSpecification, http://schema.org/Service","rangeIncludes":"http://schema.org/OpeningHoursSpecification","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/httpMethod","label":"httpMethod","comment":"An HTTP method that specifies the appropriate HTTP method for a request to an HTTP EntryPoint. Values are capitalized strings as used in HTTP.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EntryPoint","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/iataCode","label":"iataCode","comment":"IATA identifier for an airline or airport.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Airline, http://schema.org/Airport","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/icaoCode","label":"icaoCode","comment":"ICAO identifier for an airport.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Airport","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/identifier","label":"identifier","comment":"The identifier property represents any kind of identifier for any kind of <a class=\"localLink\" href=\"http://schema.org/Thing\">Thing</a>, such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See <a href=\"/docs/datamodel.html#identifierBg\">background notes</a> for more details.","subPropertyOf":"","equivalentProperty":"http://purl.org/dc/terms/identifier","subproperties":"http://schema.org/accountId, http://schema.org/confirmationNumber, http://schema.org/duns, http://schema.org/flightNumber, http://schema.org/globalLocationNumber, http://schema.org/gtin12, http://schema.org/gtin13, http://schema.org/gtin14, http://schema.org/gtin8, http://schema.org/isbn, http://schema.org/issn, http://schema.org/leiCode, http://schema.org/orderNumber, http://schema.org/productID, http://schema.org/serialNumber, http://schema.org/sku, http://schema.org/taxID","domainIncludes":"http://schema.org/Thing","rangeIncludes":"http://schema.org/PropertyValue, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/illustrator","label":"illustrator","comment":"The illustrator of the book.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Book","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/image","label":"image","comment":"An image of the item. This can be a <a class=\"localLink\" href=\"http://schema.org/URL\">URL</a> or a fully described <a class=\"localLink\" href=\"http://schema.org/ImageObject\">ImageObject</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/logo, http://schema.org/photo","domainIncludes":"http://schema.org/Thing","rangeIncludes":"http://schema.org/ImageObject, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/inAlbum","label":"inAlbum","comment":"The album to which this recording belongs.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicRecording","rangeIncludes":"http://schema.org/MusicAlbum","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/inBroadcastLineup","label":"inBroadcastLineup","comment":"The CableOrSatelliteService offering the channel.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastChannel","rangeIncludes":"http://schema.org/CableOrSatelliteService","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/inLanguage","label":"inLanguage","comment":"The language of the content or performance or used in an action. Please use one of the language codes from the <a href=\"http://tools.ietf.org/html/bcp47\">IETF BCP 47 standard</a>. See also <a class=\"localLink\" href=\"http://schema.org/availableLanguage\">availableLanguage</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastService, http://schema.org/CommunicateAction, http://schema.org/CreativeWork, http://schema.org/Event, http://schema.org/LinkRole, http://schema.org/PronounceableText, http://schema.org/WriteAction","rangeIncludes":"http://schema.org/Language, http://schema.org/Text","inverseOf":"","supersedes":"http://schema.org/language","supersededBy":""}, {"id":"http://schema.org/inPlaylist","label":"inPlaylist","comment":"The playlist to which this recording belongs.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicRecording","rangeIncludes":"http://schema.org/MusicPlaylist","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/incentiveCompensation","label":"incentiveCompensation","comment":"Description of bonus and commission compensation aspects of the job.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"http://schema.org/incentives","supersededBy":""}, {"id":"http://schema.org/incentives","label":"incentives","comment":"Description of bonus and commission compensation aspects of the job.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/incentiveCompensation"}, {"id":"http://schema.org/includedComposition","label":"includedComposition","comment":"Smaller compositions included in this work (e.g. a movement in a symphony).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicComposition","rangeIncludes":"http://schema.org/MusicComposition","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/includedDataCatalog","label":"includedDataCatalog","comment":"A data catalog which contains this dataset (this property was previously 'catalog', preferred name is now 'includedInDataCatalog').","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Dataset","rangeIncludes":"http://schema.org/DataCatalog","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/includedInDataCatalog"}, {"id":"http://schema.org/includedInDataCatalog","label":"includedInDataCatalog","comment":"A data catalog which contains this dataset.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Dataset","rangeIncludes":"http://schema.org/DataCatalog","inverseOf":"http://schema.org/dataset","supersedes":"http://schema.org/catalog, http://schema.org/includedDataCatalog","supersededBy":""}, {"id":"http://schema.org/includesObject","label":"includesObject","comment":"This links to a node or nodes indicating the exact quantity of the products included in the offer.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer","rangeIncludes":"http://schema.org/TypeAndQuantityNode","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/industry","label":"industry","comment":"The industry associated with the job position.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/DefinedTerm, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/ingredients","label":"ingredients","comment":"A single ingredient used in the recipe, e.g. sugar, flour or garlic.","subPropertyOf":"http://schema.org/supply","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Recipe","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/recipeIngredient"}, {"id":"http://schema.org/installUrl","label":"installUrl","comment":"URL at which the app may be installed, if different from the URL of the item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/instructor","label":"instructor","comment":"A person assigned to instruct or provide instructional assistance for the <a class=\"localLink\" href=\"http://schema.org/CourseInstance\">CourseInstance</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CourseInstance","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/instrument","label":"instrument","comment":"The object that helped the agent perform the action. e.g. John wrote a book with <em>a pen</em>.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/deliveryMethod, http://schema.org/language, http://schema.org/query, http://schema.org/recipe, http://schema.org/supply, http://schema.org/tool","domainIncludes":"http://schema.org/Action","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/interactionCount","label":"interactionCount","comment":"This property is deprecated, alongside the UserInteraction types on which it depended.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"","rangeIncludes":"","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/interactionStatistic"}, {"id":"http://schema.org/interactionService","label":"interactionService","comment":"The WebSite or SoftwareApplication where the interactions took place.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/InteractionCounter","rangeIncludes":"http://schema.org/SoftwareApplication, http://schema.org/WebSite","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/interactionStatistic","label":"interactionStatistic","comment":"The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/InteractionCounter","inverseOf":"","supersedes":"http://schema.org/interactionCount","supersededBy":""}, {"id":"http://schema.org/interactionType","label":"interactionType","comment":"The Action representing the type of interaction. For up votes, +1s, etc. use <a class=\"localLink\" href=\"http://schema.org/LikeAction\">LikeAction</a>. For down votes use <a class=\"localLink\" href=\"http://schema.org/DislikeAction\">DislikeAction</a>. Otherwise, use the most specific Action.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/InteractionCounter","rangeIncludes":"http://schema.org/Action","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/interactivityType","label":"interactivityType","comment":"The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/interestRate","label":"interestRate","comment":"The interest rate, charged or paid, applicable to the financial product. Note: This is different from the calculated annualPercentageRate.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/FinancialProduct","rangeIncludes":"http://schema.org/Number, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/inventoryLevel","label":"inventoryLevel","comment":"The current approximate inventory level for the item or items.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer, http://schema.org/SomeProducts","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/isAccessibleForFree","label":"isAccessibleForFree","comment":"A flag to signal that the item, event, or place is accessible for free.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/Event, http://schema.org/Place, http://schema.org/PublicationEvent","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"http://schema.org/free","supersededBy":""}, {"id":"http://schema.org/isAccessoryOrSparePartFor","label":"isAccessoryOrSparePartFor","comment":"A pointer to another product (or multiple products) for which this product is an accessory or spare part.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Product","rangeIncludes":"http://schema.org/Product","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/isBasedOn","label":"isBasedOn","comment":"A resource from which this work is derived or from which it is a modification or adaption.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/Product, http://schema.org/URL","inverseOf":"","supersedes":"http://schema.org/isBasedOnUrl","supersededBy":""}, {"id":"http://schema.org/isBasedOnUrl","label":"isBasedOnUrl","comment":"A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/Product, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/isBasedOn"}, {"id":"http://schema.org/isConsumableFor","label":"isConsumableFor","comment":"A pointer to another product (or multiple products) for which this product is a consumable.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Product","rangeIncludes":"http://schema.org/Product","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/isFamilyFriendly","label":"isFamilyFriendly","comment":"Indicates whether this content is family friendly.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/isGift","label":"isGift","comment":"Was the offer accepted as a gift for someone other than the buyer.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Order","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/isLiveBroadcast","label":"isLiveBroadcast","comment":"True is the broadcast is of a live event.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastEvent","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/isPartOf","label":"isPartOf","comment":"Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/partOfEpisode, http://schema.org/partOfSeason, http://schema.org/partOfSeries, http://schema.org/partOfTVSeries","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"http://schema.org/hasPart","supersedes":"","supersededBy":""}, {"id":"http://schema.org/isRelatedTo","label":"isRelatedTo","comment":"A pointer to another, somehow related product (or multiple products).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Product, http://schema.org/Service","rangeIncludes":"http://schema.org/Product, http://schema.org/Service","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/isSimilarTo","label":"isSimilarTo","comment":"A pointer to another, functionally similar product (or multiple products).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Product, http://schema.org/Service","rangeIncludes":"http://schema.org/Product, http://schema.org/Service","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/isVariantOf","label":"isVariantOf","comment":"A pointer to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ProductModel","rangeIncludes":"http://schema.org/ProductModel","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/isbn","label":"isbn","comment":"The ISBN of the book.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"http://purl.org/ontology/bibo/isbn","subproperties":"","domainIncludes":"http://schema.org/Book","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/isicV4","label":"isicV4","comment":"The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Person, http://schema.org/Place","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/isrcCode","label":"isrcCode","comment":"The International Standard Recording Code for the recording.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicRecording","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/issn","label":"issn","comment":"The International Standard Serial Number (ISSN) that identifies this serial publication. You can repeat this property to identify different formats of, or the linking ISSN (ISSN-L) for, this serial publication.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"http://purl.org/ontology/bibo/issn","subproperties":"","domainIncludes":"http://schema.org/Blog, http://schema.org/CreativeWorkSeries, http://schema.org/Dataset, http://schema.org/WebSite","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/issueNumber","label":"issueNumber","comment":"Identifies the issue of publication; for example, \"iii\" or \"2\".","subPropertyOf":"http://schema.org/position","equivalentProperty":"http://purl.org/ontology/bibo/issue","subproperties":"","domainIncludes":"http://schema.org/PublicationIssue","rangeIncludes":"http://schema.org/Integer, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/issuedBy","label":"issuedBy","comment":"The organization issuing the ticket or permit.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Permit, http://schema.org/Ticket","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/issuedThrough","label":"issuedThrough","comment":"The service through with the permit was granted.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Permit","rangeIncludes":"http://schema.org/Service","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/iswcCode","label":"iswcCode","comment":"The International Standard Musical Work Code for the composition.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicComposition","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/item","label":"item","comment":"An entity represented by an entry in a list or data feed (e.g. an 'artist' in a list of 'artists')’.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/DataFeedItem, http://schema.org/ListItem","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""} , {"id":"http://schema.org/itemCondition","label":"itemCondition","comment":"A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer, http://schema.org/Product","rangeIncludes":"http://schema.org/OfferItemCondition","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/itemListElement","label":"itemListElement","comment":"For itemListElement values, you can use simple strings (e.g. \"Peter\", \"Paul\", \"Mary\"), existing entities, or use ListItem.<br/><br/><br/><br/>Text values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.<br/><br/><br/><br/>Note: The order of elements in your mark-up is not sufficient for indicating the order or elements. Use ListItem with a 'position' property in such cases.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ItemList","rangeIncludes":"http://schema.org/ListItem, http://schema.org/Text, http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/itemListOrder","label":"itemListOrder","comment":"Type of ordering (e.g. Ascending, Descending, Unordered).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ItemList","rangeIncludes":"http://schema.org/ItemListOrderType, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/itemOffered","label":"itemOffered","comment":"An item being offered (or demanded). The transactional nature of the offer or demand is documented using <a class=\"localLink\" href=\"http://schema.org/businessFunction\">businessFunction</a>, e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer","rangeIncludes":"http://schema.org/AggregateOffer, http://schema.org/CreativeWork, http://schema.org/Event, http://schema.org/MenuItem, http://schema.org/Product, http://schema.org/Service, http://schema.org/Trip","inverseOf":"http://schema.org/offers","supersedes":"","supersededBy":""}, {"id":"http://schema.org/itemReviewed","label":"itemReviewed","comment":"The item that is being reviewed/rated.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/AggregateRating, http://schema.org/Review","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/itemShipped","label":"itemShipped","comment":"Item(s) being shipped.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ParcelDelivery","rangeIncludes":"http://schema.org/Product","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/jobBenefits","label":"jobBenefits","comment":"Description of benefits associated with the job.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"http://schema.org/benefits","supersededBy":""}, {"id":"http://schema.org/jobLocation","label":"jobLocation","comment":"A (typically single) geographic location associated with the job position.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/keywords","label":"keywords","comment":"Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/knownVehicleDamages","label":"knownVehicleDamages","comment":"A textual description of known damages, both repaired and unrepaired.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/knows","label":"knows","comment":"The most generic bi-directional social/work relation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/landlord","label":"landlord","comment":"A sub property of participant. The owner of the real estate property.","subPropertyOf":"http://schema.org/participant","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RentAction","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/language","label":"language","comment":"A sub property of instrument. The language used on this action.","subPropertyOf":"http://schema.org/instrument","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CommunicateAction, http://schema.org/WriteAction","rangeIncludes":"http://schema.org/Language","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/inLanguage"}, {"id":"http://schema.org/lastReviewed","label":"lastReviewed","comment":"Date on which the content on this web page was last reviewed for accuracy and/or completeness.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/WebPage","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/latitude","label":"latitude","comment":"The latitude of a location. For example <code>37.42242</code> (<a href=\"https://en.wikipedia.org/wiki/World_Geodetic_System\">WGS 84</a>).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeoCoordinates, http://schema.org/Place","rangeIncludes":"http://schema.org/Number, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/learningResourceType","label":"learningResourceType","comment":"The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/legalName","label":"legalName","comment":"The official name of the organization, e.g. the registered company name.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/leiCode","label":"leiCode","comment":"An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/lender","label":"lender","comment":"A sub property of participant. The person that lends the object being borrowed.","subPropertyOf":"http://schema.org/participant","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BorrowAction","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/lesser","label":"lesser","comment":"This ordering relation for qualitative values indicates that the subject is lesser than the object.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/QualitativeValue","rangeIncludes":"http://schema.org/QualitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/lesserOrEqual","label":"lesserOrEqual","comment":"This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/QualitativeValue","rangeIncludes":"http://schema.org/QualitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/license","label":"license","comment":"A license document that applies to this content, typically indicated by URL.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/line","label":"line","comment":"A line is a point-to-point path consisting of two or more points. A line is expressed as a series of two or more point objects separated by space.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeoShape","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/liveBlogUpdate","label":"liveBlogUpdate","comment":"An update to the LiveBlog.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LiveBlogPosting","rangeIncludes":"http://schema.org/BlogPosting","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/loanTerm","label":"loanTerm","comment":"The duration of the loan or credit agreement.","subPropertyOf":"http://schema.org/duration","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LoanOrCredit","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/location","label":"location","comment":"The location of for example where the event is happening, an organization is located, or where an action takes place.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/course, http://schema.org/entertainmentBusiness, http://schema.org/exerciseCourse, http://schema.org/foodEstablishment, http://schema.org/foodEvent, http://schema.org/fromLocation, http://schema.org/homeLocation, http://schema.org/sportsActivityLocation, http://schema.org/sportsEvent, http://schema.org/toLocation, http://schema.org/workLocation","domainIncludes":"http://schema.org/Action, http://schema.org/Event, http://schema.org/Organization","rangeIncludes":"http://schema.org/Place, http://schema.org/PostalAddress, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/locationCreated","label":"locationCreated","comment":"The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/lodgingUnitDescription","label":"lodgingUnitDescription","comment":"A full description of the lodging unit.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LodgingReservation","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/lodgingUnitType","label":"lodgingUnitType","comment":"Textual description of the unit type (including suite vs. room, size of bed, etc.).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LodgingReservation","rangeIncludes":"http://schema.org/QualitativeValue, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/logo","label":"logo","comment":"An associated logo.","subPropertyOf":"http://schema.org/image","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Brand, http://schema.org/Organization, http://schema.org/Place, http://schema.org/Product, http://schema.org/Service","rangeIncludes":"http://schema.org/ImageObject, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/longitude","label":"longitude","comment":"The longitude of a location. For example <code>-122.08585</code> (<a href=\"https://en.wikipedia.org/wiki/World_Geodetic_System\">WGS 84</a>).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeoCoordinates, http://schema.org/Place","rangeIncludes":"http://schema.org/Number, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/loser","label":"loser","comment":"A sub property of participant. The loser of the action.","subPropertyOf":"http://schema.org/participant","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/WinAction","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/lowPrice","label":"lowPrice","comment":"The lowest price of all offers available.<br/><br/><br/><br/>Usage guidelines:<br/><br/><br/><br/><ul><li>Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.</li><li>Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.</li></ul>","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/AggregateOffer","rangeIncludes":"http://schema.org/Number, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/lyricist","label":"lyricist","comment":"The person who wrote the words.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicComposition","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/lyrics","label":"lyrics","comment":"The words in the song.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicComposition","rangeIncludes":"http://schema.org/CreativeWork","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/mainContentOfPage","label":"mainContentOfPage","comment":"Indicates if this web page element is the main subject of the page.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/WebPage","rangeIncludes":"http://schema.org/WebPageElement","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/mainEntity","label":"mainEntity","comment":"Indicates the primary entity described in some page or other CreativeWork.","subPropertyOf":"http://schema.org/about","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Thing","inverseOf":"http://schema.org/mainEntityOfPage","supersedes":"","supersededBy":""}, {"id":"http://schema.org/mainEntityOfPage","label":"mainEntityOfPage","comment":"Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See <a href=\"/docs/datamodel.html#mainEntityBackground\">background notes</a> for details.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Thing","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"http://schema.org/mainEntity","supersedes":"","supersededBy":""}, {"id":"http://schema.org/makesOffer","label":"makesOffer","comment":"A pointer to products or services offered by the organization or person.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/Offer","inverseOf":"http://schema.org/offeredBy","supersedes":"","supersededBy":""}, {"id":"http://schema.org/manufacturer","label":"manufacturer","comment":"The manufacturer of the product.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/DietarySupplement, http://schema.org/Drug, http://schema.org/Product","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/map","label":"map","comment":"A URL to a map of the place.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Place","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/hasMap"}, {"id":"http://schema.org/mapType","label":"mapType","comment":"Indicates the kind of Map, from the MapCategoryType Enumeration.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Map","rangeIncludes":"http://schema.org/MapCategoryType","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/maps","label":"maps","comment":"A URL to a map of the place.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Place","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/hasMap"}, {"id":"http://schema.org/material","label":"material","comment":"A material that something is made from, e.g. leather, wool, cotton, paper.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/artMedium, http://schema.org/surface","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/Product","rangeIncludes":"http://schema.org/Product, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/maxPrice","label":"maxPrice","comment":"The highest price if the price is a range.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PriceSpecification","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/maxValue","label":"maxValue","comment":"The upper value of some characteristic or property.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MonetaryAmount, http://schema.org/PropertyValue, http://schema.org/PropertyValueSpecification, http://schema.org/QuantitativeValue","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/maximumAttendeeCapacity","label":"maximumAttendeeCapacity","comment":"The total number of individuals that may attend an event or venue.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event, http://schema.org/Place","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/mealService","label":"mealService","comment":"Description of the meals that will be provided or available for purchase.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Flight","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/median","label":"median","comment":"The median value.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/QuantitativeValueDistribution","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/member","label":"member","comment":"A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/ProgramMembership","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"http://schema.org/memberOf","supersedes":"http://schema.org/members, http://schema.org/musicGroupMember","supersededBy":""}, {"id":"http://schema.org/memberOf","label":"memberOf","comment":"An Organization (or ProgramMembership) to which this Person or Organization belongs.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/affiliation","domainIncludes":"http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/Organization, http://schema.org/ProgramMembership","inverseOf":"http://schema.org/member","supersedes":"","supersededBy":""}, {"id":"http://schema.org/members","label":"members","comment":"A member of this organization.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/ProgramMembership","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/member"}, {"id":"http://schema.org/membershipNumber","label":"membershipNumber","comment":"A unique identifier for the membership.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ProgramMembership","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/memoryRequirements","label":"memoryRequirements","comment":"Minimum memory requirements.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/mentions","label":"mentions","comment":"Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/menu","label":"menu","comment":"Either the actual menu as a structured representation, as text, or a URL of the menu.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/FoodEstablishment","rangeIncludes":"http://schema.org/Menu, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/hasMenu"}, {"id":"http://schema.org/menuAddOn","label":"menuAddOn","comment":"Additional menu item(s) such as a side dish of salad or side order of fries that can be added to this menu item. Additionally it can be a menu section containing allowed add-on menu items for this menu item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MenuItem","rangeIncludes":"http://schema.org/MenuItem, http://schema.org/MenuSection","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/merchant","label":"merchant","comment":"'merchant' is an out-dated term for 'seller'.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Order","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/seller"}, {"id":"http://schema.org/messageAttachment","label":"messageAttachment","comment":"A CreativeWork attached to the message.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Message","rangeIncludes":"http://schema.org/CreativeWork","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/mileageFromOdometer","label":"mileageFromOdometer","comment":"The total distance travelled by the particular vehicle since its initial production, as read from its odometer.<br/><br/><br/><br/>Typical unit code(s): KMT for kilometers, SMI for statute miles","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/minPrice","label":"minPrice","comment":"The lowest price if the price is a range.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PriceSpecification","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/minValue","label":"minValue","comment":"The lower value of some characteristic or property.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MonetaryAmount, http://schema.org/PropertyValue, http://schema.org/PropertyValueSpecification, http://schema.org/QuantitativeValue","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/minimumPaymentDue","label":"minimumPaymentDue","comment":"The minimum payment required at this time.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Invoice","rangeIncludes":"http://schema.org/MonetaryAmount, http://schema.org/PriceSpecification","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/model","label":"model","comment":"The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Product","rangeIncludes":"http://schema.org/ProductModel, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/modifiedTime","label":"modifiedTime","comment":"The date and time the reservation was modified.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Reservation","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/mpn","label":"mpn","comment":"The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer, http://schema.org/Product","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/multipleValues","label":"multipleValues","comment":"Whether multiple values are allowed for the property. Default is false.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PropertyValueSpecification","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/musicArrangement","label":"musicArrangement","comment":"An arrangement derived from the composition.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicComposition","rangeIncludes":"http://schema.org/MusicComposition","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/musicBy","label":"musicBy","comment":"The composer of the soundtrack.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Clip, http://schema.org/Episode, http://schema.org/Movie, http://schema.org/MovieSeries, http://schema.org/RadioSeries, http://schema.org/TVSeries, http://schema.org/VideoGame, http://schema.org/VideoGameSeries, http://schema.org/VideoObject","rangeIncludes":"http://schema.org/MusicGroup, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/musicCompositionForm","label":"musicCompositionForm","comment":"The type of composition (e.g. overture, sonata, symphony, etc.).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicComposition","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/musicGroupMember","label":"musicGroupMember","comment":"A member of a music group&#x2014;for example, John, Paul, George, or Ringo.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicGroup","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/member"}, {"id":"http://schema.org/musicReleaseFormat","label":"musicReleaseFormat","comment":"Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicRelease","rangeIncludes":"http://schema.org/MusicReleaseFormatType","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/musicalKey","label":"musicalKey","comment":"The key, mode, or scale this composition uses.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicComposition","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/naics","label":"naics","comment":"The North American Industry Classification System (NAICS) code for a particular organization or business person.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/name","label":"name","comment":"The name of the item.","subPropertyOf":"","equivalentProperty":"http://purl.org/dc/terms/title","subproperties":"","domainIncludes":"http://schema.org/Thing","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/namedPosition","label":"namedPosition","comment":"A position played, performed or filled by a person or organization, as part of an organization. For example, an athlete in a SportsTeam might play in the position named 'Quarterback'.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Role","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/roleName"}, {"id":"http://schema.org/nationality","label":"nationality","comment":"Nationality of the person.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Country","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/netWorth","label":"netWorth","comment":"The total financial value of the person as calculated by subtracting assets from liabilities.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/MonetaryAmount, http://schema.org/PriceSpecification","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/nextItem","label":"nextItem","comment":"A link to the ListItem that follows the current one.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ListItem","rangeIncludes":"http://schema.org/ListItem","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/nonEqual","label":"nonEqual","comment":"This ordering relation for qualitative values indicates that the subject is not equal to the object.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/QualitativeValue","rangeIncludes":"http://schema.org/QualitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numAdults","label":"numAdults","comment":"The number of adults staying in the unit.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LodgingReservation","rangeIncludes":"http://schema.org/Integer, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numChildren","label":"numChildren","comment":"The number of children staying in the unit.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LodgingReservation","rangeIncludes":"http://schema.org/Integer, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numTracks","label":"numTracks","comment":"The number of tracks in this album or playlist.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicPlaylist","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfAirbags","label":"numberOfAirbags","comment":"The number or type of airbags in the vehicle.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/Number, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfAxles","label":"numberOfAxles","comment":"The number of axles.<br/><br/><br/><br/>Typical unit code(s): C62","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/Number, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfBeds","label":"numberOfBeds","comment":"The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BedDetails","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfDoors","label":"numberOfDoors","comment":"The number of doors.<br/><br/><br/><br/>Typical unit code(s): C62","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/Number, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfEmployees","label":"numberOfEmployees","comment":"The number of employees in an organization e.g. business.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BusinessAudience, http://schema.org/Organization","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfEpisodes","label":"numberOfEpisodes","comment":"The number of episodes in this season or series.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWorkSeason, http://schema.org/RadioSeries, http://schema.org/TVSeries, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfForwardGears","label":"numberOfForwardGears","comment":"The total number of forward gears available for the transmission system of the vehicle.<br/><br/><br/><br/>Typical unit code(s): C62","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/Number, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfItems","label":"numberOfItems","comment":"The number of items in an ItemList. Note that some descriptions might not fully describe all items in a list (e.g., multi-page pagination); in such cases, the numberOfItems would be for the entire list.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ItemList","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfPages","label":"numberOfPages","comment":"The number of pages in the book.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Book","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfPlayers","label":"numberOfPlayers","comment":"Indicate how many people can play this game (minimum, maximum, or range).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Game, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfPreviousOwners","label":"numberOfPreviousOwners","comment":"The number of owners of the vehicle, including the current one.<br/><br/><br/><br/>Typical unit code(s): C62","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/Number, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfRooms","label":"numberOfRooms","comment":"The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.Typical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Accommodation, http://schema.org/Apartment, http://schema.org/FloorPlan, http://schema.org/House, http://schema.org/LodgingBusiness, http://schema.org/SingleFamilyResidence, http://schema.org/Suite","rangeIncludes":"http://schema.org/Number, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfSeasons","label":"numberOfSeasons","comment":"The number of seasons in this series.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RadioSeries, http://schema.org/TVSeries, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberedPosition","label":"numberedPosition","comment":"A number associated with a role in an organization, for example, the number on an athlete's jersey.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/OrganizationRole","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/nutrition","label":"nutrition","comment":"Nutrition information about the recipe or menu item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MenuItem, http://schema.org/Recipe","rangeIncludes":"http://schema.org/NutritionInformation","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/object","label":"object","comment":"The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). e.g. John read <em>a book</em>.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/actionOption, http://schema.org/candidate, http://schema.org/collection, http://schema.org/followee, http://schema.org/option, http://schema.org/question, http://schema.org/replacee, http://schema.org/replacer, http://schema.org/targetCollection","domainIncludes":"http://schema.org/Action","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/occupancy","label":"occupancy","comment":"The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).Typical unit code(s): C62 for person","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Apartment, http://schema.org/HotelRoom, http://schema.org/SingleFamilyResidence, http://schema.org/Suite","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/occupationLocation","label":"occupationLocation","comment":"The region/country for which this occupational description is appropriate. Note that educational requirements and qualifications can vary between jurisdictions.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Occupation","rangeIncludes":"http://schema.org/AdministrativeArea","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/offerCount","label":"offerCount","comment":"The number of offers for the product.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/AggregateOffer","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/offeredBy","label":"offeredBy","comment":"A pointer to the organization or person making the offer.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Offer","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"http://schema.org/makesOffer","supersedes":"","supersededBy":""}, {"id":"http://schema.org/offers","label":"offers","comment":"An offer to provide this item&#x2014;for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use <a class=\"localLink\" href=\"http://schema.org/businessFunction\">businessFunction</a> to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a <a class=\"localLink\" href=\"http://schema.org/Demand\">Demand</a>. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/AggregateOffer, http://schema.org/CreativeWork, http://schema.org/EducationalOccupationalProgram, http://schema.org/Event, http://schema.org/MenuItem, http://schema.org/Product, http://schema.org/Service, http://schema.org/Trip","rangeIncludes":"http://schema.org/Demand, http://schema.org/Offer","inverseOf":"http://schema.org/itemOffered","supersedes":"","supersededBy":""}, {"id":"http://schema.org/openingHours","label":"openingHours","comment":"The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'.<br/><br/><br/><br/><ul><li>Days are specified using the following two-letter combinations: <code>Mo</code>, <code>Tu</code>, <code>We</code>, <code>Th</code>, <code>Fr</code>, <code>Sa</code>, <code>Su</code>.</li><li>Times are specified using 24:00 time. For example, 3pm is specified as <code>15:00</code>. </li><li>Here is an example: <code>&lt;time itemprop=\"openingHours\" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.</li><li>If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>.</li></ul>","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CivicStructure, http://schema.org/LocalBusiness","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/openingHoursSpecification","label":"openingHoursSpecification","comment":"The opening hours of a certain place.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Place","rangeIncludes":"http://schema.org/OpeningHoursSpecification","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/opens","label":"opens","comment":"The opening hour of the place or service on the given day(s) of the week.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/OpeningHoursSpecification","rangeIncludes":"http://schema.org/Time","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/operatingSystem","label":"operatingSystem","comment":"Operating systems supported (Windows 7, OSX 10.6, Android 1.6).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/opponent","label":"opponent","comment":"A sub property of participant. The opponent on this action.","subPropertyOf":"http://schema.org/participant","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ExerciseAction","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/option","label":"option","comment":"A sub property of object. The options subject to this action.","subPropertyOf":"http://schema.org/object","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ChooseAction","rangeIncludes":"http://schema.org/Text, http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/actionOption"}, {"id":"http://schema.org/orderDate","label":"orderDate","comment":"Date order was placed.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Order","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/orderDelivery","label":"orderDelivery","comment":"The delivery of the parcel related to this order or order item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Order, http://schema.org/OrderItem","rangeIncludes":"http://schema.org/ParcelDelivery","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/orderItemNumber","label":"orderItemNumber","comment":"The identifier of the order item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/OrderItem","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/orderItemStatus","label":"orderItemStatus","comment":"The current status of the order item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/OrderItem","rangeIncludes":"http://schema.org/OrderStatus","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/orderNumber","label":"orderNumber","comment":"The identifier of the transaction.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Order","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/orderQuantity","label":"orderQuantity","comment":"The number of the item ordered. If the property is not set, assume the quantity is one.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/OrderItem","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/orderStatus","label":"orderStatus","comment":"The current status of the order.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Order","rangeIncludes":"http://schema.org/OrderStatus","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/orderedItem","label":"orderedItem","comment":"The item ordered.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Order, http://schema.org/OrderItem","rangeIncludes":"http://schema.org/OrderItem, http://schema.org/Product, http://schema.org/Service","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/organizer","label":"organizer","comment":"An organizer of an Event.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/originAddress","label":"originAddress","comment":"Shipper's address.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ParcelDelivery","rangeIncludes":"http://schema.org/PostalAddress","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/ownedFrom","label":"ownedFrom","comment":"The date and time of obtaining the product.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/OwnershipInfo","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/ownedThrough","label":"ownedThrough","comment":"The date and time of giving up ownership on the product.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/OwnershipInfo","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/owns","label":"owns","comment":"Products owned by the organization or person.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/OwnershipInfo, http://schema.org/Product","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/pageEnd","label":"pageEnd","comment":"The page on which the work ends; for example \"138\" or \"xvi\".","subPropertyOf":"","equivalentProperty":"http://purl.org/ontology/bibo/pageEnd","subproperties":"","domainIncludes":"http://schema.org/Article, http://schema.org/Chapter, http://schema.org/PublicationIssue, http://schema.org/PublicationVolume","rangeIncludes":"http://schema.org/Integer, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/pageStart","label":"pageStart","comment":"The page on which the work starts; for example \"135\" or \"xiii\".","subPropertyOf":"","equivalentProperty":"http://purl.org/ontology/bibo/pageStart","subproperties":"","domainIncludes":"http://schema.org/Article, http://schema.org/Chapter, http://schema.org/PublicationIssue, http://schema.org/PublicationVolume","rangeIncludes":"http://schema.org/Integer, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/pagination","label":"pagination","comment":"Any description of pages that is not separated into pageStart and pageEnd; for example, \"1-6, 9, 55\" or \"10-12, 46-49\".","subPropertyOf":"","equivalentProperty":"http://purl.org/ontology/bibo/pages","subproperties":"","domainIncludes":"http://schema.org/Article, http://schema.org/Chapter, http://schema.org/PublicationIssue, http://schema.org/PublicationVolume","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/parent","label":"parent","comment":"A parent of this person.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"http://schema.org/parents","supersededBy":""}, {"id":"http://schema.org/parentItem","label":"parentItem","comment":"The parent of a question, answer or item in general.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Comment","rangeIncludes":"http://schema.org/Question","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/parentOrganization","label":"parentOrganization","comment":"The larger organization that this organization is a <a class=\"localLink\" href=\"http://schema.org/subOrganization\">subOrganization</a> of, if any.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization","rangeIncludes":"http://schema.org/Organization","inverseOf":"http://schema.org/subOrganization","supersedes":"http://schema.org/branchOf","supersededBy":""}, {"id":"http://schema.org/parentService","label":"parentService","comment":"A broadcast service to which the broadcast service may belong to such as regional variations of a national channel.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastService","rangeIncludes":"http://schema.org/BroadcastService","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/parents","label":"parents","comment":"A parents of the person.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/parent"}, {"id":"http://schema.org/partOfEpisode","label":"partOfEpisode","comment":"The episode to which this clip belongs.","subPropertyOf":"http://schema.org/isPartOf","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Clip","rangeIncludes":"http://schema.org/Episode","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/partOfInvoice","label":"partOfInvoice","comment":"The order is being paid as part of the referenced Invoice.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Order","rangeIncludes":"http://schema.org/Invoice","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/partOfOrder","label":"partOfOrder","comment":"The overall order the items in this delivery were included in.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ParcelDelivery","rangeIncludes":"http://schema.org/Order","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/partOfSeason","label":"partOfSeason","comment":"The season to which this episode belongs.","subPropertyOf":"http://schema.org/isPartOf","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Clip, http://schema.org/Episode","rangeIncludes":"http://schema.org/CreativeWorkSeason","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/partOfSeries","label":"partOfSeries","comment":"The series to which this episode or season belongs.","subPropertyOf":"http://schema.org/isPartOf","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Clip, http://schema.org/CreativeWorkSeason, http://schema.org/Episode","rangeIncludes":"http://schema.org/CreativeWorkSeries","inverseOf":"","supersedes":"http://schema.org/partOfTVSeries","supersededBy":""}, {"id":"http://schema.org/partOfTVSeries","label":"partOfTVSeries","comment":"The TV series to which this episode or season belongs.","subPropertyOf":"http://schema.org/isPartOf","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/TVClip, http://schema.org/TVEpisode, http://schema.org/TVSeason","rangeIncludes":"http://schema.org/TVSeries","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/partOfSeries"}, {"id":"http://schema.org/participant","label":"participant","comment":"Other co-agents that participated in the action indirectly. e.g. John wrote a book with <em>Steve</em>.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/borrower, http://schema.org/buyer, http://schema.org/endorsee, http://schema.org/landlord, http://schema.org/lender, http://schema.org/loser, http://schema.org/opponent, http://schema.org/realEstateAgent, http://schema.org/recipient, http://schema.org/seller, http://schema.org/sender, http://schema.org/sportsTeam, http://schema.org/vendor, http://schema.org/winner","domainIncludes":"http://schema.org/Action","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/partySize","label":"partySize","comment":"Number of people the reservation should accommodate.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/FoodEstablishmentReservation, http://schema.org/TaxiReservation","rangeIncludes":"http://schema.org/Integer, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/passengerPriorityStatus","label":"passengerPriorityStatus","comment":"The priority status assigned to a passenger for security or boarding (e.g. FastTrack or Priority).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/FlightReservation","rangeIncludes":"http://schema.org/QualitativeValue, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/passengerSequenceNumber","label":"passengerSequenceNumber","comment":"The passenger's sequence number as assigned by the airline.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/FlightReservation","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/paymentAccepted","label":"paymentAccepted","comment":"Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LocalBusiness","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/paymentDue","label":"paymentDue","comment":"The date that payment is due.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Invoice, http://schema.org/Order","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/paymentDueDate"}, {"id":"http://schema.org/paymentDueDate","label":"paymentDueDate","comment":"The date that payment is due.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Invoice, http://schema.org/Order","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime","inverseOf":"","supersedes":"http://schema.org/paymentDue","supersededBy":""}, {"id":"http://schema.org/paymentMethod","label":"paymentMethod","comment":"The name of the credit card or other method of payment for the order.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Invoice, http://schema.org/Order","rangeIncludes":"http://schema.org/PaymentMethod","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/paymentMethodId","label":"paymentMethodId","comment":"An identifier for the method of payment used (e.g. the last 4 digits of the credit card).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Invoice, http://schema.org/Order","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/paymentStatus","label":"paymentStatus","comment":"The status of payment; whether the invoice has been paid or not.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Invoice","rangeIncludes":"http://schema.org/PaymentStatusType, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/paymentUrl","label":"paymentUrl","comment":"The URL for sending a payment.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Order","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/percentile10","label":"percentile10","comment":"The 10th percentile value.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/QuantitativeValueDistribution","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/percentile25","label":"percentile25","comment":"The 25th percentile value.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/QuantitativeValueDistribution","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/percentile75","label":"percentile75","comment":"The 75th percentile value.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/QuantitativeValueDistribution","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/percentile90","label":"percentile90","comment":"The 90th percentile value.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/QuantitativeValueDistribution","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/performTime","label":"performTime","comment":"The length of time it takes to perform instructions or a direction (not including time to prepare the supplies), in <a href=\"http://en.wikipedia.org/wiki/ISO_8601\">ISO 8601 duration format</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/cookTime","domainIncludes":"http://schema.org/HowTo, http://schema.org/HowToDirection","rangeIncludes":"http://schema.org/Duration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/performer","label":"performer","comment":"A performer at the event&#x2014;for example, a presenter, musician, musical group or actor.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"http://schema.org/performers","supersededBy":""}, {"id":"http://schema.org/performerIn","label":"performerIn","comment":"Event that this person is a performer or participant in.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Event","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/performers","label":"performers","comment":"The main performer or performers of the event&#x2014;for example, a presenter, musician, or actor.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/performer"}, {"id":"http://schema.org/permissionType","label":"permissionType","comment":"The type of permission granted the person, organization, or audience.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/DigitalDocumentPermission","rangeIncludes":"http://schema.org/DigitalDocumentPermissionType","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/permissions","label":"permissions","comment":"Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/permitAudience","label":"permitAudience","comment":"The target audience for this permit.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Permit","rangeIncludes":"http://schema.org/Audience","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/permittedUsage","label":"permittedUsage","comment":"Indications regarding the permitted usage of the accommodation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Accommodation","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/petsAllowed","label":"petsAllowed","comment":"Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Accommodation, http://schema.org/LodgingBusiness","rangeIncludes":"http://schema.org/Boolean, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/photo","label":"photo","comment":"A photograph of this place.","subPropertyOf":"http://schema.org/image","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Place","rangeIncludes":"http://schema.org/ImageObject, http://schema.org/Photograph","inverseOf":"","supersedes":"http://schema.org/photos","supersededBy":""}, {"id":"http://schema.org/photos","label":"photos","comment":"Photographs of this place.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Place","rangeIncludes":"http://schema.org/ImageObject, http://schema.org/Photograph","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/photo"}, {"id":"http://schema.org/pickupLocation","label":"pickupLocation","comment":"Where a taxi will pick up a passenger or a rental car can be picked up.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RentalCarReservation, http://schema.org/TaxiReservation","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/pickupTime","label":"pickupTime","comment":"When a taxi will pickup a passenger or a rental car can be picked up.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RentalCarReservation, http://schema.org/TaxiReservation","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/playMode","label":"playMode","comment":"Indicates whether this game is multi-player, co-op or single-player. The game can be marked as multi-player, co-op and single-player at the same time.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/VideoGame, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/GamePlayMode","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/playerType","label":"playerType","comment":"Player type required&#x2014;for example, Flash or Silverlight.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MediaObject","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/playersOnline","label":"playersOnline","comment":"Number of players on the server.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GameServer","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/polygon","label":"polygon","comment":"A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeoShape","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/position","label":"position","comment":"The position of an item in a series or sequence of items.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/clipNumber, http://schema.org/episodeNumber, http://schema.org/issueNumber, http://schema.org/seasonNumber, http://schema.org/volumeNumber","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/ListItem","rangeIncludes":"http://schema.org/Integer, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/postOfficeBoxNumber","label":"postOfficeBoxNumber","comment":"The post office box number for PO box addresses.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PostalAddress","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/postalCode","label":"postalCode","comment":"The postal code. For example, 94043.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GeoCoordinates, http://schema.org/GeoShape, http://schema.org/PostalAddress","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/potentialAction","label":"potentialAction","comment":"Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Thing","rangeIncludes":"http://schema.org/Action","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/predecessorOf","label":"predecessorOf","comment":"A pointer from a previous, often discontinued variant of the product to its newer variant.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ProductModel","rangeIncludes":"http://schema.org/ProductModel","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/prepTime","label":"prepTime","comment":"The length of time it takes to prepare the items to be used in instructions or a direction, in <a href=\"http://en.wikipedia.org/wiki/ISO_8601\">ISO 8601 duration format</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HowTo, http://schema.org/HowToDirection","rangeIncludes":"http://schema.org/Duration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/previousItem","label":"previousItem","comment":"A link to the ListItem that preceeds the current one.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ListItem","rangeIncludes":"http://schema.org/ListItem","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/previousStartDate","label":"previousStartDate","comment":"Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/price","label":"price","comment":"The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.<br/><br/><br/><br/>Usage guidelines:<br/><br/><br/><br/><ul><li>Use the <a class=\"localLink\" href=\"http://schema.org/priceCurrency\">priceCurrency</a> property (with standard formats: <a href=\"http://en.wikipedia.org/wiki/ISO_4217\">ISO 4217 currency format</a> e.g. \"USD\"; <a href=\"https://en.wikipedia.org/wiki/List_of_cryptocurrencies\">Ticker symbol</a> for cryptocurrencies e.g. \"BTC\"; well known names for <a href=\"https://en.wikipedia.org/wiki/Local_exchange_trading_system\">Local Exchange Tradings Systems</a> (LETS) and other currency types e.g. \"Ithaca HOUR\") instead of including <a href=\"http://en.wikipedia.org/wiki/Dollar_sign#Currencies_that_use_the_dollar_or_peso_sign\">ambiguous symbols</a> such as '$' in the value.</li><li>Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.</li><li>Note that both <a href=\"http://www.w3.org/TR/xhtml-rdfa-primer/#using-the-content-attribute\">RDFa</a> and Microdata syntax allow the use of a \"content=\" attribute for publishing simple machine-readable values alongside more human-friendly formatting.</li><li>Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.</li></ul>","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Offer, http://schema.org/PriceSpecification, http://schema.org/TradeAction","rangeIncludes":"http://schema.org/Number, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/priceComponent","label":"priceComponent","comment":"This property links to all <a class=\"localLink\" href=\"http://schema.org/UnitPriceSpecification\">UnitPriceSpecification</a> nodes that apply in parallel for the <a class=\"localLink\" href=\"http://schema.org/CompoundPriceSpecification\">CompoundPriceSpecification</a> node.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CompoundPriceSpecification","rangeIncludes":"http://schema.org/UnitPriceSpecification","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/priceCurrency","label":"priceCurrency","comment":"The currency of the price, or a price component when attached to <a class=\"localLink\" href=\"http://schema.org/PriceSpecification\">PriceSpecification</a> and its subtypes.<br/><br/><br/><br/>Use standard formats: <a href=\"http://en.wikipedia.org/wiki/ISO_4217\">ISO 4217 currency format</a> e.g. \"USD\"; <a href=\"https://en.wikipedia.org/wiki/List_of_cryptocurrencies\">Ticker symbol</a> for cryptocurrencies e.g. \"BTC\"; well known names for <a href=\"https://en.wikipedia.org/wiki/Local_exchange_trading_system\">Local Exchange Tradings Systems</a> (LETS) and other currency types e.g. \"Ithaca HOUR\".","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Offer, http://schema.org/PriceSpecification, http://schema.org/Reservation, http://schema.org/Ticket, http://schema.org/TradeAction","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/priceRange","label":"priceRange","comment":"The price range of the business, for example <code>$$$</code>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LocalBusiness","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/priceSpecification","label":"priceSpecification","comment":"One or more detailed price specifications, indicating the unit price and delivery or payment charges.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer, http://schema.org/TradeAction","rangeIncludes":"http://schema.org/PriceSpecification","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/priceType","label":"priceType","comment":"A short text or acronym indicating multiple price specifications for the same offer, e.g. SRP for the suggested retail price or INVOICE for the invoice price, mostly used in the car industry.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/UnitPriceSpecification","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/priceValidUntil","label":"priceValidUntil","comment":"The date after which the price is no longer available.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Offer","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/primaryImageOfPage","label":"primaryImageOfPage","comment":"Indicates the main image on the page.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/WebPage","rangeIncludes":"http://schema.org/ImageObject","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/printColumn","label":"printColumn","comment":"The number of the column in which the NewsArticle appears in the print edition.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NewsArticle","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/printEdition","label":"printEdition","comment":"The edition of the print product in which the NewsArticle appears.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NewsArticle","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/printPage","label":"printPage","comment":"If this NewsArticle appears in print, this field indicates the name of the page on which the article is found. Please note that this field is intended for the exact page name (e.g. A5, B18).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NewsArticle","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/printSection","label":"printSection","comment":"If this NewsArticle appears in print, this field indicates the print section in which the article appeared.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NewsArticle","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/processingTime","label":"processingTime","comment":"Estimated processing time for the service using this channel.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ServiceChannel","rangeIncludes":"http://schema.org/Duration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/processorRequirements","label":"processorRequirements","comment":"Processor architecture required to run the application (e.g. IA64).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/producer","label":"producer","comment":"The person or organization who produced the work (e.g. music album, movie, tv/radio series etc.).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/produces","label":"produces","comment":"The tangible thing generated by the service, e.g. a passport, permit, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Service","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/serviceOutput"}, {"id":"http://schema.org/productID","label":"productID","comment":"The product identifier, such as ISBN. For example: <code>meta itemprop=\"productID\" content=\"isbn:123-456-789\"</code>.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Product","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/productSupported","label":"productSupported","comment":"The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. \"iPhone\") or a general category of products or services (e.g. \"smartphones\").","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ContactPoint","rangeIncludes":"http://schema.org/Product, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/productionCompany","label":"productionCompany","comment":"The production company or studio responsible for the item e.g. series, video game, episode etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWorkSeason, http://schema.org/Episode, http://schema.org/MediaObject, http://schema.org/Movie, http://schema.org/MovieSeries, http://schema.org/RadioSeries, http://schema.org/TVSeries, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/productionDate","label":"productionDate","comment":"The date of production of the item, e.g. vehicle.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Product, http://schema.org/Vehicle","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/proficiencyLevel","label":"proficiencyLevel","comment":"Proficiency needed for this content; expected values: 'Beginner', 'Expert'.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/TechArticle","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/programMembershipUsed","label":"programMembershipUsed","comment":"Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Reservation","rangeIncludes":"http://schema.org/ProgramMembership","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/programName","label":"programName","comment":"The program providing the membership.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ProgramMembership","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/programmingLanguage","label":"programmingLanguage","comment":"The computer programming language.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareSourceCode","rangeIncludes":"http://schema.org/ComputerLanguage, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/programmingModel","label":"programmingModel","comment":"Indicates whether API is managed or unmanaged.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/APIReference","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/propertyID","label":"propertyID","comment":"A commonly used identifier for the characteristic represented by the property, e.g. a manufacturer or a standard code for a property. propertyID can be(1) a prefixed string, mainly meant to be used with standards for product properties; (2) a site-specific, non-prefixed string (e.g. the primary key of the property or the vendor-specific id of the property), or (3)a URL indicating the type of the property, either pointing to an external vocabulary, or a Web resource that describes the property (e.g. a glossary entry).Standards bodies should promote a standard prefix for the identifiers of properties from their standards.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PropertyValue","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/proteinContent","label":"proteinContent","comment":"The number of grams of protein.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NutritionInformation","rangeIncludes":"http://schema.org/Mass","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/provider","label":"provider","comment":"The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/EducationalOccupationalProgram, http://schema.org/Invoice, http://schema.org/ParcelDelivery, http://schema.org/Reservation, http://schema.org/Service, http://schema.org/Trip","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"http://schema.org/carrier","supersededBy":""}, {"id":"http://schema.org/providerMobility","label":"providerMobility","comment":"Indicates the mobility of a provided service (e.g. 'static', 'dynamic').","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Service","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/providesBroadcastService","label":"providesBroadcastService","comment":"The BroadcastService offered on this channel.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastChannel","rangeIncludes":"http://schema.org/BroadcastService","inverseOf":"http://schema.org/hasBroadcastChannel","supersedes":"","supersededBy":""}, {"id":"http://schema.org/providesService","label":"providesService","comment":"The service provided by this channel.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ServiceChannel","rangeIncludes":"http://schema.org/Service","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/publicAccess","label":"publicAccess","comment":"A flag to signal that the <a class=\"localLink\" href=\"http://schema.org/Place\">Place</a> is open to public visitors. If this property is omitted there is no assumed default boolean value","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Place","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/publication","label":"publication","comment":"A publication event associated with the item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/PublicationEvent","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/publishedOn","label":"publishedOn","comment":"A broadcast service associated with the publication event.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PublicationEvent","rangeIncludes":"http://schema.org/BroadcastService","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/publisher","label":"publisher","comment":"The publisher of the creative work.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/publishingPrinciples","label":"publishingPrinciples","comment":"The publishingPrinciples property indicates (typically via <a class=\"localLink\" href=\"http://schema.org/URL\">URL</a>) a document describing the editorial principles of an <a class=\"localLink\" href=\"http://schema.org/Organization\">Organization</a> (or individual e.g. a <a class=\"localLink\" href=\"http://schema.org/Person\">Person</a> writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a <a class=\"localLink\" href=\"http://schema.org/CreativeWork\">CreativeWork</a> (e.g. <a class=\"localLink\" href=\"http://schema.org/NewsArticle\">NewsArticle</a>) the principles are those of the party primarily responsible for the creation of the <a class=\"localLink\" href=\"http://schema.org/CreativeWork\">CreativeWork</a>.<br/><br/><br/><br/>While such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a <a class=\"localLink\" href=\"http://schema.org/funder\">funder</a>) can be expressed using schema.org terminology.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/purchaseDate","label":"purchaseDate","comment":"The date the item e.g. vehicle was purchased by the current owner.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Product, http://schema.org/Vehicle","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/query","label":"query","comment":"A sub property of instrument. The query used on this action.","subPropertyOf":"http://schema.org/instrument","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SearchAction","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/quest","label":"quest","comment":"The task that a player-controlled character, or group of characters may complete in order to gain a reward.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Game, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/question","label":"question","comment":"A sub property of object. A question.","subPropertyOf":"http://schema.org/object","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/AskAction","rangeIncludes":"http://schema.org/Question","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/ratingCount","label":"ratingCount","comment":"The count of total number of ratings.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/AggregateRating","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/ratingValue","label":"ratingValue","comment":"The rating for the content.<br/><br/><br/><br/>Usage guidelines:<br/><br/><br/><br/><ul><li>Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.</li><li>Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.</li></ul>","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Rating","rangeIncludes":"http://schema.org/Number, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/readonlyValue","label":"readonlyValue","comment":"Whether or not a property is mutable. Default is false. Specifying this for a property that also has a value makes it act similar to a \"hidden\" input in an HTML form.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PropertyValueSpecification","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/realEstateAgent","label":"realEstateAgent","comment":"A sub property of participant. The real estate agent involved in the action.","subPropertyOf":"http://schema.org/participant","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RentAction","rangeIncludes":"http://schema.org/RealEstateAgent","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/recipe","label":"recipe","comment":"A sub property of instrument. The recipe/instructions used to perform the action.","subPropertyOf":"http://schema.org/instrument","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CookAction","rangeIncludes":"http://schema.org/Recipe","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/recipeCategory","label":"recipeCategory","comment":"The category of the recipe—for example, appetizer, entree, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Recipe","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""} , {"id":"http://schema.org/recipeCuisine","label":"recipeCuisine","comment":"The cuisine of the recipe (for example, French or Ethiopian).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Recipe","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/recipeIngredient","label":"recipeIngredient","comment":"A single ingredient used in the recipe, e.g. sugar, flour or garlic.","subPropertyOf":"http://schema.org/supply","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Recipe","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"http://schema.org/ingredients","supersededBy":""}, {"id":"http://schema.org/recipeInstructions","label":"recipeInstructions","comment":"A step in making the recipe, in the form of a single item (document, video, etc.) or an ordered list with HowToStep and/or HowToSection items.","subPropertyOf":"http://schema.org/step","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Recipe","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/ItemList, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/recipeYield","label":"recipeYield","comment":"The quantity produced by the recipe (for example, number of people served, number of servings, etc).","subPropertyOf":"http://schema.org/yield","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Recipe","rangeIncludes":"http://schema.org/QuantitativeValue, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/recipient","label":"recipient","comment":"A sub property of participant. The participant who is at the receiving end of the action.","subPropertyOf":"http://schema.org/participant","equivalentProperty":"","subproperties":"http://schema.org/bccRecipient, http://schema.org/ccRecipient, http://schema.org/toRecipient","domainIncludes":"http://schema.org/AuthorizeAction, http://schema.org/CommunicateAction, http://schema.org/DonateAction, http://schema.org/GiveAction, http://schema.org/Message, http://schema.org/PayAction, http://schema.org/ReturnAction, http://schema.org/SendAction, http://schema.org/TipAction","rangeIncludes":"http://schema.org/Audience, http://schema.org/ContactPoint, http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/recordLabel","label":"recordLabel","comment":"The label that issued the release.","subPropertyOf":"","equivalentProperty":"http://purl.org/ontology/mo/label","subproperties":"","domainIncludes":"http://schema.org/MusicRelease","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/recordedAs","label":"recordedAs","comment":"An audio recording of the work.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicComposition","rangeIncludes":"http://schema.org/MusicRecording","inverseOf":"http://schema.org/recordingOf","supersedes":"","supersededBy":""}, {"id":"http://schema.org/recordedAt","label":"recordedAt","comment":"The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Event","inverseOf":"http://schema.org/recordedIn","supersedes":"","supersededBy":""}, {"id":"http://schema.org/recordedIn","label":"recordedIn","comment":"The CreativeWork that captured all or part of this Event.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event","rangeIncludes":"http://schema.org/CreativeWork","inverseOf":"http://schema.org/recordedAt","supersedes":"","supersededBy":""}, {"id":"http://schema.org/recordingOf","label":"recordingOf","comment":"The composition this track is a recording of.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicRecording","rangeIncludes":"http://schema.org/MusicComposition","inverseOf":"http://schema.org/recordedAs","supersedes":"","supersededBy":""}, {"id":"http://schema.org/referenceQuantity","label":"referenceQuantity","comment":"The reference quantity for which a certain price applies, e.g. 1 EUR per 4 kWh of electricity. This property is a replacement for unitOfMeasurement for the advanced cases where the price does not relate to a standard unit.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/UnitPriceSpecification","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/referencesOrder","label":"referencesOrder","comment":"The Order(s) related to this Invoice. One or more Orders may be combined into a single Invoice.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Invoice","rangeIncludes":"http://schema.org/Order","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/regionsAllowed","label":"regionsAllowed","comment":"The regions where the media is allowed. If not specified, then it's assumed to be allowed everywhere. Specify the countries in <a href=\"http://en.wikipedia.org/wiki/ISO_3166\">ISO 3166 format</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MediaObject","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/relatedLink","label":"relatedLink","comment":"A link related to this web page, for example to other related web pages.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/WebPage","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/relatedTo","label":"relatedTo","comment":"The most generic familial relation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/releaseDate","label":"releaseDate","comment":"The release date of a product or product model. This can be used to distinguish the exact variant of a product.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Product","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/releaseNotes","label":"releaseNotes","comment":"Description of what changed in this version.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/releaseOf","label":"releaseOf","comment":"The album this is a release of.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicRelease","rangeIncludes":"http://schema.org/MusicAlbum","inverseOf":"http://schema.org/albumRelease","supersedes":"","supersededBy":""}, {"id":"http://schema.org/releasedEvent","label":"releasedEvent","comment":"The place and time the release was issued, expressed as a PublicationEvent.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/PublicationEvent","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/relevantOccupation","label":"relevantOccupation","comment":"The Occupation for the JobPosting.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Occupation","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/remainingAttendeeCapacity","label":"remainingAttendeeCapacity","comment":"The number of attendee places for an event that remain unallocated.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/replacee","label":"replacee","comment":"A sub property of object. The object that is being replaced.","subPropertyOf":"http://schema.org/object","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ReplaceAction","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/replacer","label":"replacer","comment":"A sub property of object. The object that replaces.","subPropertyOf":"http://schema.org/object","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ReplaceAction","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/replyToUrl","label":"replyToUrl","comment":"The URL at which a reply may be posted to the specified UserComment.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/UserComments","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/reportNumber","label":"reportNumber","comment":"The number or other unique designator assigned to a Report by the publishing organization.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Report","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/representativeOfPage","label":"representativeOfPage","comment":"Indicates whether this image is representative of the content of the page.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ImageObject","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/requiredCollateral","label":"requiredCollateral","comment":"Assets required to secure loan or credit repayments. It may take form of third party pledge, goods, financial instruments (cash, securities, etc.)","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LoanOrCredit","rangeIncludes":"http://schema.org/Text, http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/requiredGender","label":"requiredGender","comment":"Audiences defined by a person's gender.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PeopleAudience","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/requiredMaxAge","label":"requiredMaxAge","comment":"Audiences defined by a person's maximum age.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PeopleAudience","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/requiredMinAge","label":"requiredMinAge","comment":"Audiences defined by a person's minimum age.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PeopleAudience","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/requiredQuantity","label":"requiredQuantity","comment":"The required quantity of the item(s).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HowToItem","rangeIncludes":"http://schema.org/Number, http://schema.org/QuantitativeValue, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/requirements","label":"requirements","comment":"Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/softwareRequirements"}, {"id":"http://schema.org/requiresSubscription","label":"requiresSubscription","comment":"Indicates if use of the media require a subscription (either paid or free). Allowed values are <code>true</code> or <code>false</code> (note that an earlier version had 'yes', 'no').","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ActionAccessSpecification, http://schema.org/MediaObject","rangeIncludes":"http://schema.org/Boolean, http://schema.org/MediaSubscription","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/reservationFor","label":"reservationFor","comment":"The thing -- flight, event, restaurant,etc. being reserved.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Reservation","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/reservationId","label":"reservationId","comment":"A unique identifier for the reservation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Reservation","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/reservationStatus","label":"reservationStatus","comment":"The current status of the reservation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Reservation","rangeIncludes":"http://schema.org/ReservationStatusType","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/reservedTicket","label":"reservedTicket","comment":"A ticket associated with the reservation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Reservation","rangeIncludes":"http://schema.org/Ticket","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/responsibilities","label":"responsibilities","comment":"Responsibilities associated with this role or Occupation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting, http://schema.org/Occupation","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/result","label":"result","comment":"The result produced in the action. e.g. John wrote <em>a book</em>.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/resultComment, http://schema.org/resultReview","domainIncludes":"http://schema.org/Action","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/resultComment","label":"resultComment","comment":"A sub property of result. The Comment created or sent as a result of this action.","subPropertyOf":"http://schema.org/result","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CommentAction, http://schema.org/ReplyAction","rangeIncludes":"http://schema.org/Comment","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/resultReview","label":"resultReview","comment":"A sub property of result. The review that resulted in the performing of the action.","subPropertyOf":"http://schema.org/result","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ReviewAction","rangeIncludes":"http://schema.org/Review","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/review","label":"review","comment":"A review of the item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Brand, http://schema.org/CreativeWork, http://schema.org/Event, http://schema.org/Offer, http://schema.org/Organization, http://schema.org/Place, http://schema.org/Product, http://schema.org/Service","rangeIncludes":"http://schema.org/Review","inverseOf":"","supersedes":"http://schema.org/reviews","supersededBy":""}, {"id":"http://schema.org/reviewAspect","label":"reviewAspect","comment":"This Review or Rating is relevant to this part or facet of the itemReviewed.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Guide, http://schema.org/Rating, http://schema.org/Review","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/reviewBody","label":"reviewBody","comment":"The actual body of the review.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Review","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/reviewCount","label":"reviewCount","comment":"The count of total number of reviews.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/AggregateRating","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/reviewRating","label":"reviewRating","comment":"The rating given in this review. Note that reviews can themselves be rated. The <code>reviewRating</code> applies to rating given by the review. The <a class=\"localLink\" href=\"http://schema.org/aggregateRating\">aggregateRating</a> property applies to the review itself, as a creative work.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Review","rangeIncludes":"http://schema.org/Rating","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/reviewedBy","label":"reviewedBy","comment":"People or organizations that have reviewed the content on this web page for accuracy and/or completeness.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/WebPage","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/reviews","label":"reviews","comment":"Review of the item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/Offer, http://schema.org/Organization, http://schema.org/Place, http://schema.org/Product","rangeIncludes":"http://schema.org/Review","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/review"}, {"id":"http://schema.org/roleName","label":"roleName","comment":"A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Role","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"http://schema.org/namedPosition","supersededBy":""}, {"id":"http://schema.org/rsvpResponse","label":"rsvpResponse","comment":"The response (yes, no, maybe) to the RSVP.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RsvpAction","rangeIncludes":"http://schema.org/RsvpResponseType","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/runtime","label":"runtime","comment":"Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareSourceCode","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/runtimePlatform"}, {"id":"http://schema.org/runtimePlatform","label":"runtimePlatform","comment":"Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareSourceCode","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"http://schema.org/runtime","supersededBy":""}, {"id":"http://schema.org/salaryCurrency","label":"salaryCurrency","comment":"The currency (coded using <a href=\"http://en.wikipedia.org/wiki/ISO_4217\">ISO 4217</a> ) used for the main salary information in this job posting or for this employee.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EmployeeRole, http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sameAs","label":"sameAs","comment":"URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Thing","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sampleType","label":"sampleType","comment":"What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareSourceCode","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/codeSampleType"}, {"id":"http://schema.org/saturatedFatContent","label":"saturatedFatContent","comment":"The number of grams of saturated fat.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NutritionInformation","rangeIncludes":"http://schema.org/Mass","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/scheduledPaymentDate","label":"scheduledPaymentDate","comment":"The date the invoice is scheduled to be paid.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Invoice","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/scheduledTime","label":"scheduledTime","comment":"The time the object is scheduled to.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PlanAction","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/schemaVersion","label":"schemaVersion","comment":"Indicates (by URL or string) a particular version of a schema used in some CreativeWork. For example, a document could declare a schemaVersion using an URL such as http://schema.org/version/2.0/ if precise indication of schema version was required by some application.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/screenCount","label":"screenCount","comment":"The number of screens in the movie theater.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MovieTheater","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/screenshot","label":"screenshot","comment":"A link to a screenshot image of the app.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/ImageObject, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/season","label":"season","comment":"A season in a media series.","subPropertyOf":"http://schema.org/hasPart","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RadioSeries, http://schema.org/TVSeries, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/CreativeWorkSeason, http://schema.org/URL","inverseOf":"","supersedes":"http://schema.org/seasons","supersededBy":"http://schema.org/containsSeason"}, {"id":"http://schema.org/seasonNumber","label":"seasonNumber","comment":"Position of the season within an ordered group of seasons.","subPropertyOf":"http://schema.org/position","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWorkSeason","rangeIncludes":"http://schema.org/Integer, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/seasons","label":"seasons","comment":"A season in a media series.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RadioSeries, http://schema.org/TVSeries, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/CreativeWorkSeason","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/season"}, {"id":"http://schema.org/seatNumber","label":"seatNumber","comment":"The location of the reserved seat (e.g., 27).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Seat","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/seatRow","label":"seatRow","comment":"The row location of the reserved seat (e.g., B).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Seat","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/seatSection","label":"seatSection","comment":"The section location of the reserved seat (e.g. Orchestra).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Seat","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/seatingType","label":"seatingType","comment":"The type/class of the seat.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Seat","rangeIncludes":"http://schema.org/QualitativeValue, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/securityScreening","label":"securityScreening","comment":"The type of security screening the passenger is subject to.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/FlightReservation","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/seeks","label":"seeks","comment":"A pointer to products or services sought by the organization or person (demand).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/Demand","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/seller","label":"seller","comment":"An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider.","subPropertyOf":"http://schema.org/participant","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BuyAction, http://schema.org/Demand, http://schema.org/Flight, http://schema.org/Offer, http://schema.org/Order","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"http://schema.org/merchant, http://schema.org/vendor","supersededBy":""}, {"id":"http://schema.org/sender","label":"sender","comment":"A sub property of participant. The participant who is at the sending end of the action.","subPropertyOf":"http://schema.org/participant","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Message, http://schema.org/ReceiveAction","rangeIncludes":"http://schema.org/Audience, http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/serialNumber","label":"serialNumber","comment":"The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"","subproperties":"http://schema.org/vehicleIdentificationNumber","domainIncludes":"http://schema.org/Demand, http://schema.org/IndividualProduct, http://schema.org/Offer","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/serverStatus","label":"serverStatus","comment":"Status of a game server.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GameServer","rangeIncludes":"http://schema.org/GameServerStatus","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/servesCuisine","label":"servesCuisine","comment":"The cuisine of the restaurant.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/FoodEstablishment","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/serviceArea","label":"serviceArea","comment":"The geographic area where the service is provided.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ContactPoint, http://schema.org/Organization, http://schema.org/Service","rangeIncludes":"http://schema.org/AdministrativeArea, http://schema.org/GeoShape, http://schema.org/Place","inverseOf":"","supersedes":"http://schema.org/area","supersededBy":"http://schema.org/areaServed"}, {"id":"http://schema.org/serviceAudience","label":"serviceAudience","comment":"The audience eligible for this service.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Service","rangeIncludes":"http://schema.org/Audience","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/audience"}, {"id":"http://schema.org/serviceLocation","label":"serviceLocation","comment":"The location (e.g. civic structure, local business, etc.) where a person can go to access the service.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ServiceChannel","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/serviceOperator","label":"serviceOperator","comment":"The operating organization, if different from the provider. This enables the representation of services that are provided by an organization, but operated by another organization like a subcontractor.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/GovernmentService","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/serviceOutput","label":"serviceOutput","comment":"The tangible thing generated by the service, e.g. a passport, permit, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Service","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"http://schema.org/produces","supersededBy":""}, {"id":"http://schema.org/servicePhone","label":"servicePhone","comment":"The phone number to use to access the service.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ServiceChannel","rangeIncludes":"http://schema.org/ContactPoint","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/servicePostalAddress","label":"servicePostalAddress","comment":"The address for accessing the service by mail.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ServiceChannel","rangeIncludes":"http://schema.org/PostalAddress","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/serviceSmsNumber","label":"serviceSmsNumber","comment":"The number to access the service by text message.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ServiceChannel","rangeIncludes":"http://schema.org/ContactPoint","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/serviceType","label":"serviceType","comment":"The type of service being offered, e.g. veterans' benefits, emergency relief, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Service","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/serviceUrl","label":"serviceUrl","comment":"The website to access the service.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ServiceChannel","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/servingSize","label":"servingSize","comment":"The serving size, in terms of the number of volume or mass.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NutritionInformation","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sharedContent","label":"sharedContent","comment":"A CreativeWork such as an image, video, or audio clip shared as part of this posting.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SocialMediaPosting","rangeIncludes":"http://schema.org/CreativeWork","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sibling","label":"sibling","comment":"A sibling of the person.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"http://schema.org/siblings","supersededBy":""}, {"id":"http://schema.org/siblings","label":"siblings","comment":"A sibling of the person.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/sibling"}, {"id":"http://schema.org/significantLink","label":"significantLink","comment":"One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/WebPage","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"http://schema.org/significantLinks","supersededBy":""}, {"id":"http://schema.org/significantLinks","label":"significantLinks","comment":"The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/WebPage","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/significantLink"}, {"id":"http://schema.org/skills","label":"skills","comment":"A statement of knowledge, skill, ability, task or any other assertion expressing a competency that is desired or required to fulfill this role or to work in this occupation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting, http://schema.org/Occupation","rangeIncludes":"http://schema.org/DefinedTerm, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sku","label":"sku","comment":"The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer, http://schema.org/Product","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/slogan","label":"slogan","comment":"A slogan or motto associated with the item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Brand, http://schema.org/Organization, http://schema.org/Place, http://schema.org/Product, http://schema.org/Service","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/smokingAllowed","label":"smokingAllowed","comment":"Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Place","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sodiumContent","label":"sodiumContent","comment":"The number of milligrams of sodium.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NutritionInformation","rangeIncludes":"http://schema.org/Mass","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/softwareAddOn","label":"softwareAddOn","comment":"Additional content for a software application.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/SoftwareApplication","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/softwareHelp","label":"softwareHelp","comment":"Software application help.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/CreativeWork","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/softwareRequirements","label":"softwareRequirements","comment":"Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"http://schema.org/requirements","supersededBy":""}, {"id":"http://schema.org/softwareVersion","label":"softwareVersion","comment":"Version of the software instance.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sourceOrganization","label":"sourceOrganization","comment":"The Organization on whose behalf the creator was working.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/spatial","label":"spatial","comment":"The \"spatial\" property can be used in cases when more specific properties(e.g. <a class=\"localLink\" href=\"http://schema.org/locationCreated\">locationCreated</a>, <a class=\"localLink\" href=\"http://schema.org/spatialCoverage\">spatialCoverage</a>, <a class=\"localLink\" href=\"http://schema.org/contentLocation\">contentLocation</a>) are not known to be appropriate.","subPropertyOf":"","equivalentProperty":"http://purl.org/dc/terms/spatial","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/spatialCoverage","label":"spatialCoverage","comment":"The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York.","subPropertyOf":"http://schema.org/contentLocation","equivalentProperty":"http://purl.org/dc/terms/spatial","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/speakable","label":"speakable","comment":"Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.<br/><br/><br/><br/>The <em>speakable</em> property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:<br/><br/><br/><br/>1.) <em>id-value</em> URL references - uses <em>id-value</em> of an element in the page being annotated. The simplest use of <em>speakable</em> has (potentially relative) URL values, referencing identified sections of the document concerned.<br/><br/><br/><br/>2.) CSS Selectors - addresses content in the annotated page, eg. via class attribute. Use the <a class=\"localLink\" href=\"http://schema.org/cssSelector\">cssSelector</a> property.<br/><br/><br/><br/>3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the <a class=\"localLink\" href=\"http://schema.org/xpath\">xpath</a> property.<br/><br/><br/><br/>For more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section(s) as speakable. For thiswe define a supporting type, <a class=\"localLink\" href=\"http://schema.org/SpeakableSpecification\">SpeakableSpecification</a> which is defined to be a possible value of the <em>speakable</em> property.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Article, http://schema.org/WebPage","rangeIncludes":"http://schema.org/SpeakableSpecification, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/specialCommitments","label":"specialCommitments","comment":"Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/specialOpeningHoursSpecification","label":"specialOpeningHoursSpecification","comment":"The special opening hours of a certain place.<br/><br/><br/><br/>Use this to explicitly override general opening hours brought in scope by <a class=\"localLink\" href=\"http://schema.org/openingHoursSpecification\">openingHoursSpecification</a> or <a class=\"localLink\" href=\"http://schema.org/openingHours\">openingHours</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Place","rangeIncludes":"http://schema.org/OpeningHoursSpecification","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/specialty","label":"specialty","comment":"One of the domain specialities to which this web page's content applies.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/WebPage","rangeIncludes":"http://schema.org/Specialty","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sponsor","label":"sponsor","comment":"A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/funder","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/Event, http://schema.org/Grant, http://schema.org/MedicalStudy, http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sportsActivityLocation","label":"sportsActivityLocation","comment":"A sub property of location. The sports activity location where this action occurred.","subPropertyOf":"http://schema.org/location","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ExerciseAction","rangeIncludes":"http://schema.org/SportsActivityLocation","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sportsEvent","label":"sportsEvent","comment":"A sub property of location. The sports event where this action occurred.","subPropertyOf":"http://schema.org/location","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ExerciseAction","rangeIncludes":"http://schema.org/SportsEvent","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sportsTeam","label":"sportsTeam","comment":"A sub property of participant. The sports team that participated on this action.","subPropertyOf":"http://schema.org/participant","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ExerciseAction","rangeIncludes":"http://schema.org/SportsTeam","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/spouse","label":"spouse","comment":"The person's spouse.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/starRating","label":"starRating","comment":"An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/FoodEstablishment, http://schema.org/LodgingBusiness","rangeIncludes":"http://schema.org/Rating","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/startDate","label":"startDate","comment":"The start date and time of the item (in <a href=\"http://en.wikipedia.org/wiki/ISO_8601\">ISO 8601 date format</a>).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWorkSeason, http://schema.org/CreativeWorkSeries, http://schema.org/DatedMoneySpecification, http://schema.org/EducationalOccupationalProgram, http://schema.org/Event, http://schema.org/Role","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/startTime","label":"startTime","comment":"The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from <em>January</em> to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.<br/><br/><br/><br/>Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Action, http://schema.org/FoodEstablishmentReservation, http://schema.org/MediaObject","rangeIncludes":"http://schema.org/DateTime, http://schema.org/Time","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/steeringPosition","label":"steeringPosition","comment":"The position of the steering wheel or similar device (mostly for cars).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/SteeringPositionValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/step","label":"step","comment":"A single step item (as HowToStep, text, document, video, etc.) or a HowToSection.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/recipeInstructions","domainIncludes":"http://schema.org/HowTo","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/HowToSection, http://schema.org/HowToStep, http://schema.org/Text","inverseOf":"","supersedes":"http://schema.org/steps","supersededBy":""}, {"id":"http://schema.org/stepValue","label":"stepValue","comment":"The stepValue attribute indicates the granularity that is expected (and required) of the value in a PropertyValueSpecification.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PropertyValueSpecification","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/steps","label":"steps","comment":"A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HowTo, http://schema.org/HowToSection","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/ItemList, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/step"}, {"id":"http://schema.org/storageRequirements","label":"storageRequirements","comment":"Storage requirements (free space required).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/streetAddress","label":"streetAddress","comment":"The street address. For example, 1600 Amphitheatre Pkwy.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PostalAddress","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/subEvent","label":"subEvent","comment":"An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event","rangeIncludes":"http://schema.org/Event","inverseOf":"http://schema.org/superEvent","supersedes":"http://schema.org/subEvents","supersededBy":""}, {"id":"http://schema.org/subEvents","label":"subEvents","comment":"Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event","rangeIncludes":"http://schema.org/Event","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/subEvent"}, {"id":"http://schema.org/subOrganization","label":"subOrganization","comment":"A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization","rangeIncludes":"http://schema.org/Organization","inverseOf":"http://schema.org/parentOrganization","supersedes":"","supersededBy":""}, {"id":"http://schema.org/subReservation","label":"subReservation","comment":"The individual reservations included in the package. Typically a repeated property.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ReservationPackage","rangeIncludes":"http://schema.org/Reservation","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/subjectOf","label":"subjectOf","comment":"A CreativeWork or Event about this Thing.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Thing","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/Event","inverseOf":"http://schema.org/about","supersedes":"","supersededBy":""}, {"id":"http://schema.org/successorOf","label":"successorOf","comment":"A pointer from a newer variant of a product to its previous, often discontinued predecessor.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ProductModel","rangeIncludes":"http://schema.org/ProductModel","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sugarContent","label":"sugarContent","comment":"The number of grams of sugar.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NutritionInformation","rangeIncludes":"http://schema.org/Mass","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/suggestedAnswer","label":"suggestedAnswer","comment":"An answer (possibly one of several, possibly incorrect) to a Question, e.g. on a Question/Answer site.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/acceptedAnswer","domainIncludes":"http://schema.org/Question","rangeIncludes":"http://schema.org/Answer, http://schema.org/ItemList","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/suggestedGender","label":"suggestedGender","comment":"The gender of the person or audience.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PeopleAudience","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/suggestedMaxAge","label":"suggestedMaxAge","comment":"Maximal age recommended for viewing content.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PeopleAudience","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/suggestedMinAge","label":"suggestedMinAge","comment":"Minimal age recommended for viewing content.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PeopleAudience","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/suitableForDiet","label":"suitableForDiet","comment":"Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MenuItem, http://schema.org/Recipe","rangeIncludes":"http://schema.org/RestrictedDiet","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/superEvent","label":"superEvent","comment":"An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event","rangeIncludes":"http://schema.org/Event","inverseOf":"http://schema.org/subEvent","supersedes":"","supersededBy":""}, {"id":"http://schema.org/supply","label":"supply","comment":"A sub-property of instrument. A supply consumed when performing instructions or a direction.","subPropertyOf":"http://schema.org/instrument","equivalentProperty":"","subproperties":"http://schema.org/ingredients, http://schema.org/recipeIngredient","domainIncludes":"http://schema.org/HowTo, http://schema.org/HowToDirection","rangeIncludes":"http://schema.org/HowToSupply, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/supportingData","label":"supportingData","comment":"Supporting data for a SoftwareApplication.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareApplication","rangeIncludes":"http://schema.org/DataFeed","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/surface","label":"surface","comment":"A material used as a surface in some artwork, e.g. Canvas, Paper, Wood, Board, etc.","subPropertyOf":"http://schema.org/material","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/VisualArtwork","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/artworkSurface"}, {"id":"http://schema.org/target","label":"target","comment":"Indicates a target EntryPoint for an Action.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Action","rangeIncludes":"http://schema.org/EntryPoint","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/targetCollection","label":"targetCollection","comment":"A sub property of object. The collection target of the action.","subPropertyOf":"http://schema.org/object","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/UpdateAction","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"http://schema.org/collection","supersededBy":""}, {"id":"http://schema.org/targetDescription","label":"targetDescription","comment":"The description of a node in an established educational framework.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/AlignmentObject","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/targetName","label":"targetName","comment":"The name of a node in an established educational framework.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/AlignmentObject","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/targetPlatform","label":"targetPlatform","comment":"Type of app development: phone, Metro style, desktop, XBox, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/APIReference","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/targetProduct","label":"targetProduct","comment":"Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SoftwareSourceCode","rangeIncludes":"http://schema.org/SoftwareApplication","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/targetUrl","label":"targetUrl","comment":"The URL of a node in an established educational framework.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/AlignmentObject","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/taxID","label":"taxID","comment":"The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/telephone","label":"telephone","comment":"The telephone number.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ContactPoint, http://schema.org/Organization, http://schema.org/Person, http://schema.org/Place","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/temporal","label":"temporal","comment":"The \"temporal\" property can be used in cases where more specific properties(e.g. <a class=\"localLink\" href=\"http://schema.org/temporalCoverage\">temporalCoverage</a>, <a class=\"localLink\" href=\"http://schema.org/dateCreated\">dateCreated</a>, <a class=\"localLink\" href=\"http://schema.org/dateModified\">dateModified</a>, <a class=\"localLink\" href=\"http://schema.org/datePublished\">datePublished</a>) are not known to be appropriate.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/DateTime, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/temporalCoverage","label":"temporalCoverage","comment":"The temporalCoverage of a CreativeWork indicates the period that the content applies to, i.e. that it describes, either as a DateTime or as a textual string indicating a time period in <a href=\"https://en.wikipedia.org/wiki/ISO_8601#Time_intervals\">ISO 8601 time interval format</a>. In the case of a Dataset it will typically indicate the relevant time period in a precise notation (e.g. for a 2011 census dataset, the year 2011 would be written \"2011/2012\"). Other forms of content e.g. ScholarlyArticle, Book, TVSeries or TVEpisode may indicate their temporalCoverage in broader terms - textually or via well-known URL. Written works such as books may sometimes have precise temporal coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601 interval format format via \"1939/1945\".<br/><br/><br/><br/>Open-ended date ranges can be written with \"..\" in place of the end date. For example, \"2015-11/..\" indicates a range beginning in November 2015 and with no specified final date. This is tentative and might be updated in future when ISO 8601 is officially updated.","subPropertyOf":"","equivalentProperty":"http://purl.org/dc/terms/temporal","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/DateTime, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"http://schema.org/datasetTimeInterval","supersededBy":""}, {"id":"http://schema.org/text","label":"text","comment":"The textual content of this CreativeWork.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/thumbnail","label":"thumbnail","comment":"Thumbnail image for an image or video.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ImageObject, http://schema.org/VideoObject","rangeIncludes":"http://schema.org/ImageObject","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/thumbnailUrl","label":"thumbnailUrl","comment":"A thumbnail image relevant to the Thing.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/tickerSymbol","label":"tickerSymbol","comment":"The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we recommend using the controlled vocabulary of Market Identifier Codes (MIC) specified in ISO15022.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Corporation","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/ticketNumber","label":"ticketNumber","comment":"The unique identifier for the ticket.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Ticket","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/ticketToken","label":"ticketToken","comment":"Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Ticket","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/ticketedSeat","label":"ticketedSeat","comment":"The seat associated with the ticket.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Ticket","rangeIncludes":"http://schema.org/Seat","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/timeRequired","label":"timeRequired","comment":"Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Duration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/title","label":"title","comment":"The title of the job.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/toLocation","label":"toLocation","comment":"A sub property of location. The final location of the object or the agent after the action.","subPropertyOf":"http://schema.org/location","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ExerciseAction, http://schema.org/InsertAction, http://schema.org/MoveAction, http://schema.org/TransferAction","rangeIncludes":"http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/toRecipient","label":"toRecipient","comment":"A sub property of recipient. The recipient who was directly sent the message.","subPropertyOf":"http://schema.org/recipient","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Message","rangeIncludes":"http://schema.org/Audience, http://schema.org/ContactPoint, http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/tool","label":"tool","comment":"A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.","subPropertyOf":"http://schema.org/instrument","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HowTo, http://schema.org/HowToDirection","rangeIncludes":"http://schema.org/HowToTool, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/totalPaymentDue","label":"totalPaymentDue","comment":"The total amount due.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Invoice","rangeIncludes":"http://schema.org/MonetaryAmount, http://schema.org/PriceSpecification","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/totalPrice","label":"totalPrice","comment":"The total price for the reservation or ticket, including applicable taxes, shipping, etc.<br/><br/><br/><br/>Usage guidelines:<br/><br/><br/><br/><ul><li>Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.</li><li>Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.</li></ul>","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Reservation, http://schema.org/Ticket","rangeIncludes":"http://schema.org/Number, http://schema.org/PriceSpecification, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/totalTime","label":"totalTime","comment":"The total time required to perform instructions or a direction (including time to prepare the supplies), in <a href=\"http://en.wikipedia.org/wiki/ISO_8601\">ISO 8601 duration format</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HowTo, http://schema.org/HowToDirection","rangeIncludes":"http://schema.org/Duration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/touristType","label":"touristType","comment":"Attraction suitable for type(s) of tourist. eg. Children, visitors from a particular country, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/TouristAttraction, http://schema.org/TouristDestination, http://schema.org/TouristTrip","rangeIncludes":"http://schema.org/Audience, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/track","label":"track","comment":"A music recording (track)&#x2014;usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicGroup, http://schema.org/MusicPlaylist","rangeIncludes":"http://schema.org/ItemList, http://schema.org/MusicRecording","inverseOf":"","supersedes":"http://schema.org/tracks","supersededBy":""}, {"id":"http://schema.org/trackingNumber","label":"trackingNumber","comment":"Shipper tracking number.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ParcelDelivery","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/trackingUrl","label":"trackingUrl","comment":"Tracking url for the parcel delivery.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ParcelDelivery","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/tracks","label":"tracks","comment":"A music recording (track)&#x2014;usually a single song.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MusicGroup, http://schema.org/MusicPlaylist","rangeIncludes":"http://schema.org/MusicRecording","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/track"}, {"id":"http://schema.org/trailer","label":"trailer","comment":"The trailer of a movie or tv/radio series, season, episode, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWorkSeason, http://schema.org/Episode, http://schema.org/Movie, http://schema.org/MovieSeries, http://schema.org/RadioSeries, http://schema.org/TVSeries, http://schema.org/VideoGame, http://schema.org/VideoGameSeries","rangeIncludes":"http://schema.org/VideoObject","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/trainName","label":"trainName","comment":"The name of the train (e.g. The Orient Express).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/TrainTrip","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/trainNumber","label":"trainNumber","comment":"The unique identifier for the train.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/TrainTrip","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/transFatContent","label":"transFatContent","comment":"The number of grams of trans fat.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NutritionInformation","rangeIncludes":"http://schema.org/Mass","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/transcript","label":"transcript","comment":"If this MediaObject is an AudioObject or VideoObject, the transcript of that object.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/AudioObject, http://schema.org/VideoObject","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/translator","label":"translator","comment":"Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/Event","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/typeOfBed","label":"typeOfBed","comment":"The type of bed to which the BedDetail refers, i.e. the type of bed available in the quantity indicated by quantity.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BedDetails","rangeIncludes":"http://schema.org/BedType, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/typeOfGood","label":"typeOfGood","comment":"The product that this structured value is referring to.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/OwnershipInfo, http://schema.org/TypeAndQuantityNode","rangeIncludes":"http://schema.org/Product, http://schema.org/Service","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/typicalAgeRange","label":"typicalAgeRange","comment":"The typical expected age range, e.g. '7-9', '11-'.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork, http://schema.org/Event","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/underName","label":"underName","comment":"The person or organization the reservation or ticket is for.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Reservation, http://schema.org/Ticket","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/unitCode","label":"unitCode","comment":"The unit of measurement given using the UN/CEFACT Common Code (3 characters) or a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix followed by a colon.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PropertyValue, http://schema.org/QuantitativeValue, http://schema.org/TypeAndQuantityNode, http://schema.org/UnitPriceSpecification","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/unitText","label":"unitText","comment":"A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for<a href='unitCode'>unitCode</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PropertyValue, http://schema.org/QuantitativeValue, http://schema.org/TypeAndQuantityNode, http://schema.org/UnitPriceSpecification","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/unsaturatedFatContent","label":"unsaturatedFatContent","comment":"The number of grams of unsaturated fat.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NutritionInformation","rangeIncludes":"http://schema.org/Mass","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/uploadDate","label":"uploadDate","comment":"Date when this media object was uploaded to this site.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MediaObject","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/upvoteCount","label":"upvoteCount","comment":"The number of upvotes this question, answer or comment has received from the community.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Comment, http://schema.org/Question","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/url","label":"url","comment":"URL of the item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Thing","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/urlTemplate","label":"urlTemplate","comment":"An url template (RFC6570) that will be used to construct the target of the execution of the action.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EntryPoint","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/userInteractionCount","label":"userInteractionCount","comment":"The number of interactions for the CreativeWork using the WebSite or SoftwareApplication.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/InteractionCounter","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/validFor","label":"validFor","comment":"The duration of validity of a permit or similar thing.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalCredential, http://schema.org/Permit","rangeIncludes":"http://schema.org/Duration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/validFrom","label":"validFrom","comment":"The date when the item becomes valid.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/LocationFeatureSpecification, http://schema.org/MonetaryAmount, http://schema.org/Offer, http://schema.org/OpeningHoursSpecification, http://schema.org/Permit, http://schema.org/PriceSpecification","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/validIn","label":"validIn","comment":"The geographic area where a permit or similar thing is valid.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalCredential, http://schema.org/Permit","rangeIncludes":"http://schema.org/AdministrativeArea","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/validThrough","label":"validThrough","comment":"The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/JobPosting, http://schema.org/LocationFeatureSpecification, http://schema.org/MonetaryAmount, http://schema.org/Offer, http://schema.org/OpeningHoursSpecification, http://schema.org/PriceSpecification","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/validUntil","label":"validUntil","comment":"The date when the item is no longer valid.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Permit","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/value","label":"value","comment":"The value of the quantitative value or property value node.<br/><br/><br/><br/><ul><li>For <a class=\"localLink\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a> and <a class=\"localLink\" href=\"http://schema.org/MonetaryAmount\">MonetaryAmount</a>, the recommended type for values is 'Number'.</li><li>For <a class=\"localLink\" href=\"http://schema.org/PropertyValue\">PropertyValue</a>, it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.</li><li>Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.</li><li>Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.</li></ul>","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MonetaryAmount, http://schema.org/PropertyValue, http://schema.org/QuantitativeValue","rangeIncludes":"http://schema.org/Boolean, http://schema.org/Number, http://schema.org/StructuredValue, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/valueAddedTaxIncluded","label":"valueAddedTaxIncluded","comment":"Specifies whether the applicable value-added tax (VAT) is included in the price specification or not.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PriceSpecification","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/valueMaxLength","label":"valueMaxLength","comment":"Specifies the allowed range for number of characters in a literal value.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PropertyValueSpecification","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/valueMinLength","label":"valueMinLength","comment":"Specifies the minimum allowed range for number of characters in a literal value.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PropertyValueSpecification","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/valueName","label":"valueName","comment":"Indicates the name of the PropertyValueSpecification to be used in URL templates and form encoding in a manner analogous to HTML's input@name.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PropertyValueSpecification","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/valuePattern","label":"valuePattern","comment":"Specifies a regular expression for testing literal values according to the HTML spec.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PropertyValueSpecification","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/valueReference","label":"valueReference","comment":"A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PropertyValue, http://schema.org/QualitativeValue, http://schema.org/QuantitativeValue","rangeIncludes":"http://schema.org/Enumeration, http://schema.org/PropertyValue, http://schema.org/QualitativeValue, http://schema.org/QuantitativeValue, http://schema.org/StructuredValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/valueRequired","label":"valueRequired","comment":"Whether the property must be filled in to complete the action. Default is false.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PropertyValueSpecification","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/vatID","label":"vatID","comment":"The Value-added Tax ID of the organization or person.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/vehicleConfiguration","label":"vehicleConfiguration","comment":"A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/vehicleEngine","label":"vehicleEngine","comment":"Information about the engine or engines of the vehicle.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/EngineSpecification","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/vehicleIdentificationNumber","label":"vehicleIdentificationNumber","comment":"The Vehicle Identification Number (VIN) is a unique serial number used by the automotive industry to identify individual motor vehicles.","subPropertyOf":"http://schema.org/serialNumber","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/vehicleInteriorColor","label":"vehicleInteriorColor","comment":"The color or color combination of the interior of the vehicle.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/vehicleInteriorType","label":"vehicleInteriorType","comment":"The type or material of the interior of the vehicle (e.g. synthetic fabric, leather, wood, etc.). While most interior types are characterized by the material used, an interior type can also be based on vehicle usage or target audience.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/vehicleModelDate","label":"vehicleModelDate","comment":"The release date of a vehicle model (often used to differentiate versions of the same make and model).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/vehicleSeatingCapacity","label":"vehicleSeatingCapacity","comment":"The number of passengers that can be seated in the vehicle, both in terms of the physical space available, and in terms of limitations set by law.<br/><br/><br/><br/>Typical unit code(s): C62 for persons.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/Number, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/vehicleTransmission","label":"vehicleTransmission","comment":"The type of component used for transmitting the power from a rotating power source to the wheels or other relevant component(s) (\"gearbox\" for cars).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Vehicle","rangeIncludes":"http://schema.org/QualitativeValue, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/vendor","label":"vendor","comment":"'vendor' is an earlier term for 'seller'.","subPropertyOf":"http://schema.org/participant","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BuyAction","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/seller"}, {"id":"http://schema.org/version","label":"version","comment":"The version of the CreativeWork embodied by a specified resource.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Number, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/video","label":"video","comment":"An embedded video object.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Clip, http://schema.org/VideoObject","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/videoFormat","label":"videoFormat","comment":"The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastEvent, http://schema.org/BroadcastService, http://schema.org/ScreeningEvent","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/videoFrameSize","label":"videoFrameSize","comment":"The frame size of the video.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/VideoObject","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/videoQuality","label":"videoQuality","comment":"The quality of the video.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/VideoObject","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/volumeNumber","label":"volumeNumber","comment":"Identifies the volume of publication or multi-part work; for example, \"iii\" or \"2\".","subPropertyOf":"http://schema.org/position","equivalentProperty":"http://purl.org/ontology/bibo/volume","subproperties":"","domainIncludes":"http://schema.org/PublicationVolume","rangeIncludes":"http://schema.org/Integer, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/warranty","label":"warranty","comment":"The warranty promise(s) included in the offer.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer","rangeIncludes":"http://schema.org/WarrantyPromise","inverseOf":"","supersedes":"http://schema.org/warrantyPromise","supersededBy":""}, {"id":"http://schema.org/warrantyPromise","label":"warrantyPromise","comment":"The warranty promise(s) included in the offer.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BuyAction, http://schema.org/SellAction","rangeIncludes":"http://schema.org/WarrantyPromise","inverseOf":"","supersedes":"","supersededBy":"http://schema.org/warranty"}, {"id":"http://schema.org/warrantyScope","label":"warrantyScope","comment":"The scope of the warranty promise.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/WarrantyPromise","rangeIncludes":"http://schema.org/WarrantyScope","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/webCheckinTime","label":"webCheckinTime","comment":"The time when a passenger can check into the flight online.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Flight","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/weight","label":"weight","comment":"The weight of the product or person.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person, http://schema.org/Product","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/width","label":"width","comment":"The width of the item.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MediaObject, http://schema.org/Product, http://schema.org/VisualArtwork","rangeIncludes":"http://schema.org/Distance, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/winner","label":"winner","comment":"A sub property of participant. The winner of the action.","subPropertyOf":"http://schema.org/participant","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LoseAction","rangeIncludes":"http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/wordCount","label":"wordCount","comment":"The number of words in the text of the Article.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Article","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/workExample","label":"workExample","comment":"Example/instance/realization/derivation of the concept of this creative work. eg. The paperback edition, first edition, or eBook.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/CreativeWork","inverseOf":"http://schema.org/exampleOfWork","supersedes":"","supersededBy":""}, {"id":"http://schema.org/workFeatured","label":"workFeatured","comment":"A work featured in some event, e.g. exhibited in an ExhibitionEvent. Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/workPerformed, http://schema.org/workPresented","domainIncludes":"http://schema.org/Event","rangeIncludes":"http://schema.org/CreativeWork","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/workHours","label":"workHours","comment":"The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/workLocation","label":"workLocation","comment":"A contact location for a person's place of work.","subPropertyOf":"http://schema.org/location","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/ContactPoint, http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/workPerformed","label":"workPerformed","comment":"A work performed in some event, for example a play performed in a TheaterEvent.","subPropertyOf":"http://schema.org/workFeatured","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event","rangeIncludes":"http://schema.org/CreativeWork","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/workPresented","label":"workPresented","comment":"The movie presented during this event.","subPropertyOf":"http://schema.org/workFeatured","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ScreeningEvent","rangeIncludes":"http://schema.org/Movie","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/worksFor","label":"worksFor","comment":"Organizations that the person works for.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/worstRating","label":"worstRating","comment":"The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Rating","rangeIncludes":"http://schema.org/Number, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/xpath","label":"xpath","comment":"An XPath, e.g. of a <a class=\"localLink\" href=\"http://schema.org/SpeakableSpecification\">SpeakableSpecification</a> or <a class=\"localLink\" href=\"http://schema.org/WebPageElement\">WebPageElement</a>. In the latter case, multiple matches within a page can constitute a single conceptual \"Web page element\".","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SpeakableSpecification, http://schema.org/WebPageElement","rangeIncludes":"http://schema.org/XPathType","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/yearlyRevenue","label":"yearlyRevenue","comment":"The size of the business in annual revenue.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BusinessAudience","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/yearsInOperation","label":"yearsInOperation","comment":"The age of the business.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BusinessAudience","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/yield","label":"yield","comment":"The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/recipeYield","domainIncludes":"http://schema.org/HowTo","rangeIncludes":"http://schema.org/QuantitativeValue, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""} ] // Add properties that are pending (not final yet), but with a special flag const schemaPropertiesPending = [ {"id":"http://schema.org/abstract","label":"abstract","comment":"An abstract is a short description that summarizes a <a class=\"localLink\" href=\"http://schema.org/CreativeWork\">CreativeWork</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/accommodationCategory","label":"accommodationCategory","comment":"Category of an <a class=\"localLink\" href=\"http://schema.org/Accommodation\">Accommodation</a>, following real estate conventions e.g. RESO (see <a href=\"https://ddwiki.reso.org/display/DDW17/PropertySubType+Field\">PropertySubType</a>, and <a href=\"https://ddwiki.reso.org/display/DDW17/PropertyType+Field\">PropertyType</a> fields for suggested values).","subPropertyOf":"http://schema.org/category","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Accommodation","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/accommodationFloorPlan","label":"accommodationFloorPlan","comment":"A floorplan of some <a class=\"localLink\" href=\"http://schema.org/Accommodation\">Accommodation</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Accommodation, http://schema.org/Residence","rangeIncludes":"http://schema.org/FloorPlan","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/accountMinimumInflow","label":"accountMinimumInflow","comment":"A minimum amount that has to be paid in every month.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BankAccount","rangeIncludes":"http://schema.org/MonetaryAmount","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/accountOverdraftLimit","label":"accountOverdraftLimit","comment":"An overdraft is an extension of credit from a lending institution when an account reaches zero. An overdraft allows the individual to continue withdrawing money even if the account has no funds in it. Basically the bank allows people to borrow a set amount of money.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BankAccount","rangeIncludes":"http://schema.org/MonetaryAmount","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/acquireLicensePage","label":"acquireLicensePage","comment":"Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item.","subPropertyOf":"http://schema.org/usageInfo","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/actionableFeedbackPolicy","label":"actionableFeedbackPolicy","comment":"For a <a class=\"localLink\" href=\"http://schema.org/NewsMediaOrganization\">NewsMediaOrganization</a> or other news-related <a class=\"localLink\" href=\"http://schema.org/Organization\">Organization</a>, a statement about public engagement activities (for news media, the newsroom’s), including involving the public - digitally or otherwise -- in coverage decisions, reporting and activities after publication.","subPropertyOf":"http://schema.org/publishingPrinciples","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NewsMediaOrganization, http://schema.org/Organization","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""} , {"id":"http://schema.org/appearance","label":"appearance","comment":"Indicates an occurence of a <a class=\"localLink\" href=\"http://schema.org/Claim\">Claim</a> in some <a class=\"localLink\" href=\"http://schema.org/CreativeWork\">CreativeWork</a>.","subPropertyOf":"http://schema.org/workExample","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Claim","rangeIncludes":"http://schema.org/CreativeWork","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/applicantLocationRequirements","label":"applicantLocationRequirements","comment":"The location(s) applicants can apply from. This is usually used for telecommuting jobs where the applicant does not need to be in a physical office. Note: This should not be used for citizenship or work visa requirements.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/AdministrativeArea","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/applicationContact","label":"applicationContact","comment":"Contact details for further information relevant to this job posting.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/ContactPoint","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/applicationDeadline","label":"applicationDeadline","comment":"The date at which the program stops collecting applications for the next enrollment cycle.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalProgram","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/applicationStartDate","label":"applicationStartDate","comment":"The date at which the program begins collecting applications for the next enrollment cycle.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalProgram","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/archiveHeld","label":"archiveHeld","comment":"Collection, <a href=\"https://en.wikipedia.org/wiki/Fonds\">fonds</a>, or item held, kept or maintained by an <a class=\"localLink\" href=\"http://schema.org/ArchiveOrganization\">ArchiveOrganization</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ArchiveOrganization","rangeIncludes":"http://schema.org/ArchiveComponent","inverseOf":"http://schema.org/holdingArchive","supersedes":"","supersededBy":""}, {"id":"http://schema.org/backstory","label":"backstory","comment":"For an <a class=\"localLink\" href=\"http://schema.org/Article\">Article</a>, typically a <a class=\"localLink\" href=\"http://schema.org/NewsArticle\">NewsArticle</a>, the backstory property provides a textual summary giving a brief explanation of why and how an article was created. In a journalistic setting this could include information about reporting process, methods, interviews, data sources, etc.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Article","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/bankAccountType","label":"bankAccountType","comment":"The type of a bank account.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BankAccount","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/beneficiaryBank","label":"beneficiaryBank","comment":"A bank or bank’s branch, financial institution or international financial institution operating the beneficiary’s bank account or releasing funds for the beneficiary","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MoneyTransfer","rangeIncludes":"http://schema.org/BankOrCreditUnion, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""} , {"id":"http://schema.org/benefitsSummaryUrl","label":"benefitsSummaryUrl","comment":"The URL that goes directly to the summary of benefits and coverage for the specific standard plan or plan variation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthInsurancePlan","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/broadcastSignalModulation","label":"broadcastSignalModulation","comment":"The modulation (e.g. FM, AM, etc) used by a particular broadcast service","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastFrequencySpecification","rangeIncludes":"http://schema.org/QualitativeValue, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/broadcastSubChannel","label":"broadcastSubChannel","comment":"The subchannel used for the broadcast.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastFrequencySpecification","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/byDay","label":"byDay","comment":"Defines the day(s) of the week on which a recurring <a class=\"localLink\" href=\"http://schema.org/Event\">Event</a> takes place. May be specified using either <a class=\"localLink\" href=\"http://schema.org/DayOfWeek\">DayOfWeek</a>, or alternatively <a class=\"localLink\" href=\"http://schema.org/Text\">Text</a> conforming to iCal's syntax for byDay recurrence rules","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Schedule","rangeIncludes":"http://schema.org/DayOfWeek, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/byMonth","label":"byMonth","comment":"Defines the month(s) of the year on which a recurring <a class=\"localLink\" href=\"http://schema.org/Event\">Event</a> takes place. Specified as an <a class=\"localLink\" href=\"http://schema.org/Integer\">Integer</a> between 1-12. January is 1.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Schedule","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/byMonthDay","label":"byMonthDay","comment":"Defines the day(s) of the month on which a recurring <a class=\"localLink\" href=\"http://schema.org/Event\">Event</a> takes place. Specified as an <a class=\"localLink\" href=\"http://schema.org/Integer\">Integer</a> between 1-31.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Schedule","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/callSign","label":"callSign","comment":"A <a href=\"https://en.wikipedia.org/wiki/Call_sign\">callsign</a>, as used in broadcasting and radio communications to identify people, radio and TV stations, or vehicles.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastService, http://schema.org/Person, http://schema.org/Vehicle","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/cashBack","label":"cashBack","comment":"A cardholder benefit that pays the cardholder a small percentage of their net expenditures.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PaymentCard","rangeIncludes":"http://schema.org/Boolean, http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/codeValue","label":"codeValue","comment":"A short textual code that uniquely identifies the value.","subPropertyOf":"http://schema.org/termCode","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CategoryCode, http://schema.org/MedicalCode","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/collectionSize","label":"collectionSize","comment":"The number of items in the <a class=\"localLink\" href=\"http://schema.org/Collection\">Collection</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Collection","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/competencyRequired","label":"competencyRequired","comment":"Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalCredential","rangeIncludes":"http://schema.org/DefinedTerm, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/conditionsOfAccess","label":"conditionsOfAccess","comment":"Conditions that affect the availability of, or method(s) of access to, an item. Typically used for real world items such as an <a class=\"localLink\" href=\"http://schema.org/ArchiveComponent\">ArchiveComponent</a> held by an <a class=\"localLink\" href=\"http://schema.org/ArchiveOrganization\">ArchiveOrganization</a>. This property is not suitable for use as a general Web access control mechanism. It is expressed only in natural language.<br/><br/><br/><br/>For example \"Available by appointment from the Reading Room\" or \"Accessible only from logged-in accounts \".","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/constrainingProperty","label":"constrainingProperty","comment":"Indicates a property used as a constraint to define a <a class=\"localLink\" href=\"http://schema.org/StatisticalPopulation\">StatisticalPopulation</a> with respect to the set of entities corresponding to an indicated type (via <a class=\"localLink\" href=\"http://schema.org/populationType\">populationType</a>).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/StatisticalPopulation","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/contactlessPayment","label":"contactlessPayment","comment":"A secure method for consumers to purchase products or services via debit, credit or smartcards by using RFID or NFC technology.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PaymentCard","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/contentReferenceTime","label":"contentReferenceTime","comment":"The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/correction","label":"correction","comment":"Indicates a correction to a <a class=\"localLink\" href=\"http://schema.org/CreativeWork\">CreativeWork</a>, either via a <a class=\"localLink\" href=\"http://schema.org/CorrectionComment\">CorrectionComment</a>, textually or in another document.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/CorrectionComment, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/correctionsPolicy","label":"correctionsPolicy","comment":"For an <a class=\"localLink\" href=\"http://schema.org/Organization\">Organization</a> (e.g. <a class=\"localLink\" href=\"http://schema.org/NewsMediaOrganization\">NewsMediaOrganization</a>), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors.","subPropertyOf":"http://schema.org/publishingPrinciples","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NewsMediaOrganization, http://schema.org/Organization","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""} , {"id":"http://schema.org/courseWorkload","label":"courseWorkload","comment":"The amount of work expected of students taking the course, often provided as a figure per week or per month, and may be broken down by type. For example, \"2 hours of lectures, 1 hour of lab work and 3 hours of independent study per week\".","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CourseInstance","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/creativeWorkStatus","label":"creativeWorkStatus","comment":"The status of a creative work in terms of its stage in a lifecycle. Example terms include Incomplete, Draft, Published, Obsolete. Some organizations define a set of terms for the stages of their publication lifecycle.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/DefinedTerm, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/credentialCategory","label":"credentialCategory","comment":"The category or type of credential being described, for example \"degree”, “certificate”, “badge”, or more specific term.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalCredential","rangeIncludes":"http://schema.org/DefinedTerm, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""} , {"id":"http://schema.org/currentExchangeRate","label":"currentExchangeRate","comment":"The current price of a currency.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ExchangeRateSpecification","rangeIncludes":"http://schema.org/UnitPriceSpecification","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/diversityPolicy","label":"diversityPolicy","comment":"Statement on diversity policy by an <a class=\"localLink\" href=\"http://schema.org/Organization\">Organization</a> e.g. a <a class=\"localLink\" href=\"http://schema.org/NewsMediaOrganization\">NewsMediaOrganization</a>. For a <a class=\"localLink\" href=\"http://schema.org/NewsMediaOrganization\">NewsMediaOrganization</a>, a statement describing the newsroom’s diversity policy on both staffing and sources, typically providing staffing data.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NewsMediaOrganization, http://schema.org/Organization","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""} , {"id":"http://schema.org/diversityStaffingReport","label":"diversityStaffingReport","comment":"For an <a class=\"localLink\" href=\"http://schema.org/Organization\">Organization</a> (often but not necessarily a <a class=\"localLink\" href=\"http://schema.org/NewsMediaOrganization\">NewsMediaOrganization</a>), a report on staffing diversity issues. In a news context this might be for example ASNE or RTDNA (US) reports, or self-reported.","subPropertyOf":"http://schema.org/publishingPrinciples","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NewsMediaOrganization, http://schema.org/Organization","rangeIncludes":"http://schema.org/Article, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/documentation","label":"documentation","comment":"Further documentation describing the Web API in more detail.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/WebAPI","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/domiciledMortgage","label":"domiciledMortgage","comment":"Whether borrower is a resident of the jurisdiction where the property is located.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MortgageLoan","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/downPayment","label":"downPayment","comment":"a type of payment made in cash during the onset of the purchase of an expensive good/service. The payment typically represents only a percentage of the full purchase price.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RepaymentSpecification","rangeIncludes":"http://schema.org/MonetaryAmount, http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/earlyPrepaymentPenalty","label":"earlyPrepaymentPenalty","comment":"The amount to be paid as a penalty in the event of early payment of the loan.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RepaymentSpecification","rangeIncludes":"http://schema.org/MonetaryAmount","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/educationRequirements","label":"educationRequirements","comment":"Educational background needed for the position or Occupation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting, http://schema.org/Occupation","rangeIncludes":"http://schema.org/EducationalOccupationalCredential, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/educationalLevel","label":"educationalLevel","comment":"The level in terms of progression through an educational or training context. Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalCredential","rangeIncludes":"http://schema.org/DefinedTerm, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/educationalProgramMode","label":"educationalProgramMode","comment":"Similar to courseMode, The medium or means of delivery of the program as a whole. The value may either be a text label (e.g. \"online\", \"onsite\" or \"blended\"; \"synchronous\" or \"asynchronous\"; \"full-time\" or \"part-time\") or a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous ).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalProgram","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/employerOverview","label":"employerOverview","comment":"A description of the employer, career opportunities and work environment for this position.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/employmentUnit","label":"employmentUnit","comment":"Indicates the department, unit and/or facility where the employee reports and/or in which the job is to be performed.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/endOffset","label":"endOffset","comment":"The end time of the clip expressed as the number of seconds from the beginning of the work.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Clip","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/ethicsPolicy","label":"ethicsPolicy","comment":"Statement about ethics policy, e.g. of a <a class=\"localLink\" href=\"http://schema.org/NewsMediaOrganization\">NewsMediaOrganization</a> regarding journalistic and publishing practices, or of a <a class=\"localLink\" href=\"http://schema.org/Restaurant\">Restaurant</a>, a page describing food source policies. In the case of a <a class=\"localLink\" href=\"http://schema.org/NewsMediaOrganization\">NewsMediaOrganization</a>, an ethicsPolicy is typically a statement describing the personal, organizational, and corporate standards of behavior expected by the organization.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NewsMediaOrganization, http://schema.org/Organization","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/eventSchedule","label":"eventSchedule","comment":"Associates an <a class=\"localLink\" href=\"http://schema.org/Event\">Event</a> with a <a class=\"localLink\" href=\"http://schema.org/Schedule\">Schedule</a>. There are circumstances where it is preferable to share a schedule for a series of repeating events rather than data on the individual events themselves. For example, a website or application might prefer to publish a schedule for a weekly gym class rather than provide data on every event. A schedule could be processed by applications to add forthcoming events to a calendar. An <a class=\"localLink\" href=\"http://schema.org/Event\">Event</a> that is associated with a <a class=\"localLink\" href=\"http://schema.org/Schedule\">Schedule</a> using this property should not have <a class=\"localLink\" href=\"http://schema.org/startDate\">startDate</a> or <a class=\"localLink\" href=\"http://schema.org/endDate\">endDate</a> properties. These are instead defined within the associated <a class=\"localLink\" href=\"http://schema.org/Schedule\">Schedule</a>, this avoids any ambiguity for clients using the data. The property might have repeated values to specify different schedules, e.g. for different months or seasons.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Event","rangeIncludes":"http://schema.org/Schedule","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/exceptDate","label":"exceptDate","comment":"Defines a <a class=\"localLink\" href=\"http://schema.org/Date\">Date</a> or <a class=\"localLink\" href=\"http://schema.org/DateTime\">DateTime</a> during which a scheduled <a class=\"localLink\" href=\"http://schema.org/Event\">Event</a> will not take place. The property allows exceptions to a <a class=\"localLink\" href=\"http://schema.org/Schedule\">Schedule</a> to be specified. If an exception is specified as a <a class=\"localLink\" href=\"http://schema.org/DateTime\">DateTime</a> then only the event that would have started at that specific date and time should be excluded from the schedule. If an exception is specified as a <a class=\"localLink\" href=\"http://schema.org/Date\">Date</a> then any event that is scheduled for that 24 hour period should be excluded from the schedule. This allows a whole day to be excluded from the schedule without having to itemise every scheduled event.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Schedule","rangeIncludes":"http://schema.org/Date, http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/exchangeRateSpread","label":"exchangeRateSpread","comment":"The difference between the price at which a broker or other intermediary buys and sells foreign currency.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ExchangeRateSpecification","rangeIncludes":"http://schema.org/MonetaryAmount, http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/financialAidEligible","label":"financialAidEligible","comment":"A financial aid type or program which students may use to pay for tuition or fees associated with the program.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalProgram","rangeIncludes":"http://schema.org/DefinedTerm, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/firstAppearance","label":"firstAppearance","comment":"Indicates the first known occurence of a <a class=\"localLink\" href=\"http://schema.org/Claim\">Claim</a> in some <a class=\"localLink\" href=\"http://schema.org/CreativeWork\">CreativeWork</a>.","subPropertyOf":"http://schema.org/workExample","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Claim","rangeIncludes":"http://schema.org/CreativeWork","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/floorLevel","label":"floorLevel","comment":"The floor level for an <a class=\"localLink\" href=\"http://schema.org/Accommodation\">Accommodation</a> in a multi-storey building. Since counting systems <a href=\"https://en.wikipedia.org/wiki/Storey#Consecutive_number_floor_designations\">vary internationally</a>, the local system should be used where possible.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Accommodation","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/floorLimit","label":"floorLimit","comment":"A floor limit is the amount of money above which credit card transactions must be authorized.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PaymentCard","rangeIncludes":"http://schema.org/MonetaryAmount","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/fundedItem","label":"fundedItem","comment":"Indicates an item funded or sponsored through a <a class=\"localLink\" href=\"http://schema.org/Grant\">Grant</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Grant","rangeIncludes":"http://schema.org/Thing","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/gender","label":"gender","comment":"Gender of something, typically a <a class=\"localLink\" href=\"http://schema.org/Person\">Person</a>, but possibly also fictional characters, animals, etc. While http://schema.org/Male and http://schema.org/Female may be used, text strings are also acceptable for people who do not identify as a binary gender. The <a class=\"localLink\" href=\"http://schema.org/gender\">gender</a> property can also be used in an extended sense to cover e.g. the gender of sports teams. As with the gender of individuals, we do not try to enumerate all possibilities. A mixed-gender <a class=\"localLink\" href=\"http://schema.org/SportsTeam\">SportsTeam</a> can be indicated with a text value of \"Mixed\".","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person, http://schema.org/SportsTeam","rangeIncludes":"http://schema.org/GenderType, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/gracePeriod","label":"gracePeriod","comment":"The period of time after any due date that the borrower has to fulfil its obligations before a default (failure to pay) is deemed to have occurred.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LoanOrCredit","rangeIncludes":"http://schema.org/Duration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/gtin","label":"gtin","comment":"A Global Trade Item Number (<a href=\"https://www.gs1.org/standards/id-keys/gtin\">GTIN</a>). GTINs identify trade items, including products and services, using numeric identification codes. The <a class=\"localLink\" href=\"http://schema.org/gtin\">gtin</a> property generalizes the earlier <a class=\"localLink\" href=\"http://schema.org/gtin8\">gtin8</a>, <a class=\"localLink\" href=\"http://schema.org/gtin12\">gtin12</a>, <a class=\"localLink\" href=\"http://schema.org/gtin13\">gtin13</a>, and <a class=\"localLink\" href=\"http://schema.org/gtin14\">gtin14</a> properties. The GS1 <a href=\"https://www.gs1.org/standards/Digital-Link/\">digital link specifications</a> express GTINs as URLs. A correct <a class=\"localLink\" href=\"http://schema.org/gtin\">gtin</a> value should be a valid GTIN, which means that it should be an all-numeric string of either 8, 12, 13 or 14 digits, or a \"GS1 Digital Link\" URL based on such a string. The numeric component should also have a <a href=\"https://www.gs1.org/services/check-digit-calculator\">valid GS1 check digit</a> and meet the other rules for valid GTINs. See also <a href=\"http://www.gs1.org/barcodes/technical/idkeys/gtin\">GS1's GTIN Summary</a> and <a href=\"https://en.wikipedia.org/wiki/Global_Trade_Item_Number\">Wikipedia</a> for more details. Left-padding of the gtin values is not required or encouraged.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Demand, http://schema.org/Offer, http://schema.org/Product","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hasCategoryCode","label":"hasCategoryCode","comment":"A Category code contained in this code set.","subPropertyOf":"http://schema.org/hasDefinedTerm","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CategoryCodeSet","rangeIncludes":"http://schema.org/CategoryCode","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hasCredential","label":"hasCredential","comment":"A credential awarded to the Person or Organization.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/EducationalOccupationalCredential","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hasDefinedTerm","label":"hasDefinedTerm","comment":"A Defined Term contained in this term set.","subPropertyOf":"http://schema.org/hasPart","equivalentProperty":"","subproperties":"http://schema.org/hasCategoryCode","domainIncludes":"http://schema.org/DefinedTermSet","rangeIncludes":"http://schema.org/DefinedTerm","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hasHealthAspect","label":"hasHealthAspect","comment":"Indicates the aspect or aspects specifically addressed in some <a class=\"localLink\" href=\"http://schema.org/HealthTopicContent\">HealthTopicContent</a>. For example, that the content is an overview, or that it talks about treatment, self-care, treatments or their side-effects.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthTopicContent","rangeIncludes":"http://schema.org/HealthAspectEnumeration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/hasMerchantReturnPolicy","label":"hasMerchantReturnPolicy","comment":"Indicates a MerchantReturnPolicy that may be applicable.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Product","rangeIncludes":"http://schema.org/MerchantReturnPolicy","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/healthPlanCoinsuranceOption","label":"healthPlanCoinsuranceOption","comment":"Whether the coinsurance applies before or after deductible, etc. TODO: Is this a closed set?","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthPlanCostSharingSpecification","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/healthPlanCoinsuranceRate","label":"healthPlanCoinsuranceRate","comment":"Whether The rate of coinsurance expressed as a number between 0.0 and 1.0.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthPlanCostSharingSpecification","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/healthPlanCopay","label":"healthPlanCopay","comment":"Whether The copay amount.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthPlanCostSharingSpecification","rangeIncludes":"http://schema.org/PriceSpecification","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/healthPlanCopayOption","label":"healthPlanCopayOption","comment":"Whether the copay is before or after deductible, etc. TODO: Is this a closed set?","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthPlanCostSharingSpecification","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/healthPlanCostSharing","label":"healthPlanCostSharing","comment":"Whether The costs to the patient for services under this network or formulary.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthPlanFormulary, http://schema.org/HealthPlanNetwork","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/healthPlanDrugOption","label":"healthPlanDrugOption","comment":"TODO.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthInsurancePlan","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/healthPlanDrugTier","label":"healthPlanDrugTier","comment":"The tier(s) of drugs offered by this formulary or insurance plan.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthInsurancePlan, http://schema.org/HealthPlanFormulary","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/healthPlanId","label":"healthPlanId","comment":"The 14-character, HIOS-generated Plan ID number. (Plan IDs must be unique, even across different markets.)","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthInsurancePlan","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/healthPlanMarketingUrl","label":"healthPlanMarketingUrl","comment":"The URL that goes directly to the plan brochure for the specific standard plan or plan variation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthInsurancePlan","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/healthPlanNetworkId","label":"healthPlanNetworkId","comment":"Name or unique ID of network. (Networks are often reused across different insurance plans).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthPlanNetwork, http://schema.org/MedicalOrganization","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/healthPlanNetworkTier","label":"healthPlanNetworkTier","comment":"The tier(s) for this network.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthPlanNetwork","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/healthPlanPharmacyCategory","label":"healthPlanPharmacyCategory","comment":"The category or type of pharmacy associated with this cost sharing.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthPlanCostSharingSpecification","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/holdingArchive","label":"holdingArchive","comment":"<a class=\"localLink\" href=\"http://schema.org/ArchiveOrganization\">ArchiveOrganization</a> that holds, keeps or maintains the <a class=\"localLink\" href=\"http://schema.org/ArchiveComponent\">ArchiveComponent</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ArchiveComponent","rangeIncludes":"http://schema.org/ArchiveOrganization","inverseOf":"http://schema.org/archiveHeld","supersedes":"","supersededBy":""}, {"id":"http://schema.org/inCodeSet","label":"inCodeSet","comment":"A <a class=\"localLink\" href=\"http://schema.org/CategoryCodeSet\">CategoryCodeSet</a> that contains this category code.","subPropertyOf":"http://schema.org/inDefinedTermSet","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CategoryCode","rangeIncludes":"http://schema.org/CategoryCodeSet, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/inDefinedTermSet","label":"inDefinedTermSet","comment":"A <a class=\"localLink\" href=\"http://schema.org/DefinedTermSet\">DefinedTermSet</a> that contains this term.","subPropertyOf":"http://schema.org/isPartOf","equivalentProperty":"","subproperties":"http://schema.org/inCodeSet","domainIncludes":"http://schema.org/DefinedTerm","rangeIncludes":"http://schema.org/DefinedTermSet, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/inStoreReturnsOffered","label":"inStoreReturnsOffered","comment":"Are in-store returns offered?","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MerchantReturnPolicy","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/includedInHealthInsurancePlan","label":"includedInHealthInsurancePlan","comment":"The insurance plans that cover this drug.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Drug","rangeIncludes":"http://schema.org/HealthInsurancePlan","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/includesAttraction","label":"includesAttraction","comment":"Attraction located at destination.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/TouristDestination","rangeIncludes":"http://schema.org/TouristAttraction","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/includesHealthPlanFormulary","label":"includesHealthPlanFormulary","comment":"Formularies covered by this plan.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthInsurancePlan","rangeIncludes":"http://schema.org/HealthPlanFormulary","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/includesHealthPlanNetwork","label":"includesHealthPlanNetwork","comment":"Networks covered by this plan.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthInsurancePlan","rangeIncludes":"http://schema.org/HealthPlanNetwork","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/ineligibleRegion","label":"ineligibleRegion","comment":"The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is not valid, e.g. a region where the transaction is not allowed.<br/><br/><br/><br/>See also <a class=\"localLink\" href=\"http://schema.org/eligibleRegion\">eligibleRegion</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ActionAccessSpecification, http://schema.org/DeliveryChargeSpecification, http://schema.org/Demand, http://schema.org/Offer","rangeIncludes":"http://schema.org/GeoShape, http://schema.org/Place, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/isAcceptingNewPatients","label":"isAcceptingNewPatients","comment":"Whether the provider is accepting new patients.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MedicalOrganization","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/isPlanForApartment","label":"isPlanForApartment","comment":"Indicates some accommodation that this floor plan describes.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/FloorPlan","rangeIncludes":"http://schema.org/Accommodation","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/isResizable","label":"isResizable","comment":"Whether the 3DModel allows resizing. For example, room layout applications often do not allow 3DModel elements to be resized to reflect reality.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/3DModel","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/itemLocation","label":"itemLocation","comment":"Current location of the item.","subPropertyOf":"http://schema.org/location","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ArchiveComponent","rangeIncludes":"http://schema.org/Place, http://schema.org/PostalAddress, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/itinerary","label":"itinerary","comment":"Destination(s) ( <a class=\"localLink\" href=\"http://schema.org/Place\">Place</a> ) that make up a trip. For a trip where destination order is important use <a class=\"localLink\" href=\"http://schema.org/ItemList\">ItemList</a> to specify that order (see examples).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Trip","rangeIncludes":"http://schema.org/ItemList, http://schema.org/Place","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/jobImmediateStart","label":"jobImmediateStart","comment":"An indicator as to whether a position is available for an immediate start.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/jobLocationType","label":"jobLocationType","comment":"A description of the job location (e.g TELECOMMUTE for telecommute jobs).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/jobStartDate","label":"jobStartDate","comment":"The date on which a successful applicant for this job would be expected to start work. Choose a specific date in the future or use the jobImmediateStart property to indicate the position is to be filled as soon as possible.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Date, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/jobTitle","label":"jobTitle","comment":"The job title of the person (for example, Financial Manager).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Person","rangeIncludes":"http://schema.org/DefinedTerm, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/knowsAbout","label":"knowsAbout","comment":"Of a <a class=\"localLink\" href=\"http://schema.org/Person\">Person</a>, and less typically of an <a class=\"localLink\" href=\"http://schema.org/Organization\">Organization</a>, to indicate a topic that is known about - suggesting possible expertise but not implying it. We do not distinguish skill levels here, or relate this to educational content, events, objectives or <a class=\"localLink\" href=\"http://schema.org/JobPosting\">JobPosting</a> descriptions.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/Text, http://schema.org/Thing, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/knowsLanguage","label":"knowsLanguage","comment":"Of a <a class=\"localLink\" href=\"http://schema.org/Person\">Person</a>, and less typically of an <a class=\"localLink\" href=\"http://schema.org/Organization\">Organization</a>, to indicate a known language. We do not distinguish skill levels or reading/writing/speaking/signing here. Use language codes from the <a href=\"http://tools.ietf.org/html/bcp47\">IETF BCP 47 standard</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Organization, http://schema.org/Person","rangeIncludes":"http://schema.org/Language, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/leaseLength","label":"leaseLength","comment":"Length of the lease for some <a class=\"localLink\" href=\"http://schema.org/Accommodation\">Accommodation</a>, either particular to some <a class=\"localLink\" href=\"http://schema.org/Offer\">Offer</a> or in some cases intrinsic to the property.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Accommodation, http://schema.org/Offer, http://schema.org/RealEstateListing","rangeIncludes":"http://schema.org/Duration, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/legislationApplies","label":"legislationApplies","comment":"Indicates that this legislation (or part of a legislation) somehow transfers another legislation in a different legislative context. This is an informative link, and it has no legal value. For legally-binding links of transposition, use the <a href=\"/legislationTransposes\">legislationTransposes</a> property. For example an informative consolidated law of a European Union's member state \"applies\" the consolidated version of the European Directive implemented in it.","subPropertyOf":"","equivalentProperty":"http://data.europa.eu/eli/ontology#implements","subproperties":"http://schema.org/legislationTransposes","domainIncludes":"http://schema.org/Legislation","rangeIncludes":"http://schema.org/Legislation","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/legislationChanges","label":"legislationChanges","comment":"Another legislation that this legislation changes. This encompasses the notions of amendment, replacement, correction, repeal, or other types of change. This may be a direct change (textual or non-textual amendment) or a consequential or indirect change. The property is to be used to express the existence of a change relationship between two acts rather than the existence of a consolidated version of the text that shows the result of the change. For consolidation relationships, use the <a href=\"/legislationConsolidates\">legislationConsolidates</a> property.","subPropertyOf":"","equivalentProperty":"http://data.europa.eu/eli/ontology#changes","subproperties":"","domainIncludes":"http://schema.org/Legislation","rangeIncludes":"http://schema.org/Legislation","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/legislationConsolidates","label":"legislationConsolidates","comment":"Indicates another legislation taken into account in this consolidated legislation (which is usually the product of an editorial process that revises the legislation). This property should be used multiple times to refer to both the original version or the previous consolidated version, and to the legislations making the change.","subPropertyOf":"","equivalentProperty":"http://data.europa.eu/eli/ontology#consolidates","subproperties":"","domainIncludes":"http://schema.org/Legislation","rangeIncludes":"http://schema.org/Legislation","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/legislationDate","label":"legislationDate","comment":"The date of adoption or signature of the legislation. This is the date at which the text is officially aknowledged to be a legislation, even though it might not even be published or in force.","subPropertyOf":"http://schema.org/dateCreated","equivalentProperty":"http://data.europa.eu/eli/ontology#date_document","subproperties":"","domainIncludes":"http://schema.org/Legislation","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/legislationDateVersion","label":"legislationDateVersion","comment":"The point-in-time at which the provided description of the legislation is valid (e.g. : when looking at the law on the 2016-04-07 (= dateVersion), I get the consolidation of 2015-04-12 of the \"National Insurance Contributions Act 2015\")","subPropertyOf":"","equivalentProperty":"http://data.europa.eu/eli/ontology#version_date","subproperties":"","domainIncludes":"http://schema.org/Legislation","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/legislationIdentifier","label":"legislationIdentifier","comment":"An identifier for the legislation. This can be either a string-based identifier, like the CELEX at EU level or the NOR in France, or a web-based, URL/URI identifier, like an ELI (European Legislation Identifier) or an URN-Lex.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Legislation","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/legislationJurisdiction","label":"legislationJurisdiction","comment":"The jurisdiction from which the legislation originates.","subPropertyOf":"http://schema.org/spatialCoverage","equivalentProperty":"http://data.europa.eu/eli/ontology#jurisdiction","subproperties":"","domainIncludes":"http://schema.org/Legislation","rangeIncludes":"http://schema.org/AdministrativeArea, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/legislationLegalForce","label":"legislationLegalForce","comment":"Whether the legislation is currently in force, not in force, or partially in force.","subPropertyOf":"","equivalentProperty":"http://data.europa.eu/eli/ontology#in_force","subproperties":"","domainIncludes":"http://schema.org/Legislation","rangeIncludes":"http://schema.org/LegalForceStatus","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/legislationLegalValue","label":"legislationLegalValue","comment":"The legal value of this legislation file. The same legislation can be written in multiple files with different legal values. Typically a digitally signed PDF have a \"stronger\" legal value than the HTML file of the same act.","subPropertyOf":"","equivalentProperty":"http://data.europa.eu/eli/ontology#legal_value","subproperties":"","domainIncludes":"http://schema.org/LegislationObject","rangeIncludes":"http://schema.org/LegalValueLevel","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/legislationPassedBy","label":"legislationPassedBy","comment":"The person or organization that originally passed or made the law : typically parliament (for primary legislation) or government (for secondary legislation). This indicates the \"legal author\" of the law, as opposed to its physical author.","subPropertyOf":"http://schema.org/creator","equivalentProperty":"http://data.europa.eu/eli/ontology#passed_by","subproperties":"","domainIncludes":"http://schema.org/Legislation","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/legislationResponsible","label":"legislationResponsible","comment":"An individual or organization that has some kind of responsibility for the legislation. Typically the ministry who is/was in charge of elaborating the legislation, or the adressee for potential questions about the legislation once it is published.","subPropertyOf":"","equivalentProperty":"http://data.europa.eu/eli/ontology#responsibility_of","subproperties":"","domainIncludes":"http://schema.org/Legislation","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/legislationTransposes","label":"legislationTransposes","comment":"Indicates that this legislation (or part of legislation) fulfills the objectives set by another legislation, by passing appropriate implementation measures. Typically, some legislations of European Union's member states or regions transpose European Directives. This indicates a legally binding link between the 2 legislations.","subPropertyOf":"http://schema.org/legislationApplies","equivalentProperty":"http://data.europa.eu/eli/ontology#transposes","subproperties":"","domainIncludes":"http://schema.org/Legislation","rangeIncludes":"http://schema.org/Legislation","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/legislationType","label":"legislationType","comment":"The type of the legislation. Examples of values are \"law\", \"act\", \"directive\", \"decree\", \"regulation\", \"statutory instrument\", \"loi organique\", \"règlement grand-ducal\", etc., depending on the country.","subPropertyOf":"http://schema.org/genre","equivalentProperty":"http://data.europa.eu/eli/ontology#type_document","subproperties":"","domainIncludes":"http://schema.org/Legislation","rangeIncludes":"http://schema.org/CategoryCode, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""} , {"id":"http://schema.org/linkRelationship","label":"linkRelationship","comment":"Indicates the relationship type of a Web link.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LinkRole","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/loanMortgageMandateAmount","label":"loanMortgageMandateAmount","comment":"Amount of mortgage mandate that can be converted into a proper mortgage at a later stage.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MortgageLoan","rangeIncludes":"http://schema.org/MonetaryAmount","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/loanPaymentAmount","label":"loanPaymentAmount","comment":"The amount of money to pay in a single payment.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RepaymentSpecification","rangeIncludes":"http://schema.org/MonetaryAmount","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/loanPaymentFrequency","label":"loanPaymentFrequency","comment":"Frequency of payments due, i.e. number of months between payments. This is defined as a frequency, i.e. the reciprocal of a period of time.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RepaymentSpecification","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/loanRepaymentForm","label":"loanRepaymentForm","comment":"A form of paying back money previously borrowed from a lender. Repayment usually takes the form of periodic payments that normally include part principal plus interest in each payment.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LoanOrCredit","rangeIncludes":"http://schema.org/RepaymentSpecification","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/loanType","label":"loanType","comment":"The type of a loan or credit.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LoanOrCredit","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/maintainer","label":"maintainer","comment":"A maintainer of a <a class=\"localLink\" href=\"http://schema.org/Dataset\">Dataset</a>, software package (<a class=\"localLink\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a>), or other <a class=\"localLink\" href=\"http://schema.org/Project\">Project</a>. A maintainer is a <a class=\"localLink\" href=\"http://schema.org/Person\">Person</a> or <a class=\"localLink\" href=\"http://schema.org/Organization\">Organization</a> that manages contributions to, and/or publication of, some (typically complex) artifact. It is common for distributions of software and data to be based on \"upstream\" sources. When <a class=\"localLink\" href=\"http://schema.org/maintainer\">maintainer</a> is applied to a specific version of something e.g. a particular version or packaging of a <a class=\"localLink\" href=\"http://schema.org/Dataset\">Dataset</a>, it is always possible that the upstream source has a different maintainer. The <a class=\"localLink\" href=\"http://schema.org/isBasedOn\">isBasedOn</a> property can be used to indicate such relationships between datasets to make the different maintenance roles clear. Similarly in the case of software, a package may have dedicated maintainers working on integration into software distributions such as Ubuntu, as well as upstream maintainers of the underlying work.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/marginOfError","label":"marginOfError","comment":"A marginOfError for an <a class=\"localLink\" href=\"http://schema.org/Observation\">Observation</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Observation","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/masthead","label":"masthead","comment":"For a <a class=\"localLink\" href=\"http://schema.org/NewsMediaOrganization\">NewsMediaOrganization</a>, a link to the masthead page or a page listing top editorial management.","subPropertyOf":"http://schema.org/publishingPrinciples","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NewsMediaOrganization","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/materialExtent","label":"materialExtent","comment":"The quantity of the materials being described or an expression of the physical space they occupy.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/QuantitativeValue, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/maximumEnrollment","label":"maximumEnrollment","comment":"The maximum number of students who may be enrolled in the program.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalProgram","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/measuredProperty","label":"measuredProperty","comment":"The measuredProperty of an <a class=\"localLink\" href=\"http://schema.org/Observation\">Observation</a>, either a schema.org property, a property from other RDF-compatible systems e.g. W3C RDF Data Cube, or schema.org extensions such as <a href=\"https://www.gs1.org/voc/?show=properties\">GS1's</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Observation","rangeIncludes":"http://schema.org/Property","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/measuredValue","label":"measuredValue","comment":"The measuredValue of an <a class=\"localLink\" href=\"http://schema.org/Observation\">Observation</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Observation","rangeIncludes":"http://schema.org/DataType","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/measurementTechnique","label":"measurementTechnique","comment":"A technique or technology used in a <a class=\"localLink\" href=\"http://schema.org/Dataset\">Dataset</a> (or <a class=\"localLink\" href=\"http://schema.org/DataDownload\">DataDownload</a>, <a class=\"localLink\" href=\"http://schema.org/DataCatalog\">DataCatalog</a>),corresponding to the method used for measuring the corresponding variable(s) (described using <a class=\"localLink\" href=\"http://schema.org/variableMeasured\">variableMeasured</a>). This is oriented towards scientific and scholarly dataset publication but may have broader applicability; it is not intended as a full representation of measurement, but rather as a high level summary for dataset discovery.<br/><br/><br/><br/>For example, if <a class=\"localLink\" href=\"http://schema.org/variableMeasured\">variableMeasured</a> is: molecule concentration, <a class=\"localLink\" href=\"http://schema.org/measurementTechnique\">measurementTechnique</a> could be: \"mass spectrometry\" or \"nmr spectroscopy\" or \"colorimetry\" or \"immunofluorescence\".<br/><br/><br/><br/>If the <a class=\"localLink\" href=\"http://schema.org/variableMeasured\">variableMeasured</a> is \"depression rating\", the <a class=\"localLink\" href=\"http://schema.org/measurementTechnique\">measurementTechnique</a> could be \"Zung Scale\" or \"HAM-D\" or \"Beck Depression Inventory\".<br/><br/><br/><br/>If there are several <a class=\"localLink\" href=\"http://schema.org/variableMeasured\">variableMeasured</a> properties recorded for some given data object, use a <a class=\"localLink\" href=\"http://schema.org/PropertyValue\">PropertyValue</a> for each <a class=\"localLink\" href=\"http://schema.org/variableMeasured\">variableMeasured</a> and attach the corresponding <a class=\"localLink\" href=\"http://schema.org/measurementTechnique\">measurementTechnique</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/DataCatalog, http://schema.org/DataDownload, http://schema.org/Dataset, http://schema.org/PropertyValue","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/mediaAuthenticityCategory","label":"mediaAuthenticityCategory","comment":"Indicates a MediaManipulationRatingEnumeration classification of a media object (in the context of how it was published or shared).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MediaReview","rangeIncludes":"http://schema.org/MediaManipulationRatingEnumeration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/membershipPointsEarned","label":"membershipPointsEarned","comment":"The number of membership points earned by the member. If necessary, the unitText can be used to express the units the points are issued in. (e.g. stars, miles, etc.)","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ProgramMembership","rangeIncludes":"http://schema.org/Number, http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/merchantReturnDays","label":"merchantReturnDays","comment":"The merchantReturnDays property indicates the number of days (from purchase) within which relevant merchant return policy is applicable.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MerchantReturnPolicy","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/merchantReturnLink","label":"merchantReturnLink","comment":"Indicates a Web page or service by URL, for product return.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MerchantReturnPolicy","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/missionCoveragePrioritiesPolicy","label":"missionCoveragePrioritiesPolicy","comment":"For a <a class=\"localLink\" href=\"http://schema.org/NewsMediaOrganization\">NewsMediaOrganization</a>, a statement on coverage priorities, including any public agenda or stance on issues.","subPropertyOf":"http://schema.org/publishingPrinciples","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NewsMediaOrganization","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/monthlyMinimumRepaymentAmount","label":"monthlyMinimumRepaymentAmount","comment":"The minimum payment is the lowest amount of money that one is required to pay on a credit card statement each month.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreditCard","rangeIncludes":"http://schema.org/MonetaryAmount, http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/noBylinesPolicy","label":"noBylinesPolicy","comment":"For a <a class=\"localLink\" href=\"http://schema.org/NewsMediaOrganization\">NewsMediaOrganization</a> or other news-related <a class=\"localLink\" href=\"http://schema.org/Organization\">Organization</a>, a statement explaining when authors of articles are not named in bylines.","subPropertyOf":"http://schema.org/publishingPrinciples","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NewsMediaOrganization","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/nsn","label":"nsn","comment":"Indicates the <a href=\"https://en.wikipedia.org/wiki/NATO_Stock_Number\">NATO stock number</a> (nsn) of a <a class=\"localLink\" href=\"http://schema.org/Product\">Product</a>.","subPropertyOf":"http://schema.org/identifier","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Product","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numConstraints","label":"numConstraints","comment":"Indicates the number of constraints (not counting <a class=\"localLink\" href=\"http://schema.org/populationType\">populationType</a>) defined for a particular <a class=\"localLink\" href=\"http://schema.org/StatisticalPopulation\">StatisticalPopulation</a>. This helps applications understand if they have access to a sufficiently complete description of a <a class=\"localLink\" href=\"http://schema.org/StatisticalPopulation\">StatisticalPopulation</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/StatisticalPopulation","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfAccommodationUnits","label":"numberOfAccommodationUnits","comment":"Indicates the total (available plus unavailable) number of accommodation units in an <a class=\"localLink\" href=\"http://schema.org/ApartmentComplex\">ApartmentComplex</a>, or the number of accommodation units for a specific <a class=\"localLink\" href=\"http://schema.org/FloorPlan\">FloorPlan</a> (within its specific <a class=\"localLink\" href=\"http://schema.org/ApartmentComplex\">ApartmentComplex</a>). See also <a class=\"localLink\" href=\"http://schema.org/numberOfAvailableAccommodationUnits\">numberOfAvailableAccommodationUnits</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ApartmentComplex, http://schema.org/FloorPlan","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfAvailableAccommodationUnits","label":"numberOfAvailableAccommodationUnits","comment":"Indicates the number of available accommodation units in an <a class=\"localLink\" href=\"http://schema.org/ApartmentComplex\">ApartmentComplex</a>, or the number of accommodation units for a specific <a class=\"localLink\" href=\"http://schema.org/FloorPlan\">FloorPlan</a> (within its specific <a class=\"localLink\" href=\"http://schema.org/ApartmentComplex\">ApartmentComplex</a>). See also <a class=\"localLink\" href=\"http://schema.org/numberOfAccommodationUnits\">numberOfAccommodationUnits</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/ApartmentComplex, http://schema.org/FloorPlan","rangeIncludes":"http://schema.org/QuantitativeValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfBathroomsTotal","label":"numberOfBathroomsTotal","comment":"The total integer number of bathrooms in a some <a class=\"localLink\" href=\"http://schema.org/Accommodation\">Accommodation</a>, following real estate conventions as <a href=\"https://ddwiki.reso.org/display/DDW17/BathroomsTotalInteger+Field\">documented in RESO</a>: \"The simple sum of the number of bathrooms. For example for a property with two Full Bathrooms and one Half Bathroom, the Bathrooms Total Integer will be 3.\". See also <a class=\"localLink\" href=\"http://schema.org/numberOfRooms\">numberOfRooms</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Accommodation, http://schema.org/FloorPlan","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfCredits","label":"numberOfCredits","comment":"The number of credits or units awarded by a Course or required to complete an EducationalOccupationalProgram.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Course, http://schema.org/EducationalOccupationalProgram","rangeIncludes":"http://schema.org/Integer, http://schema.org/StructuredValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfFullBathrooms","label":"numberOfFullBathrooms","comment":"Number of full bathrooms - The total number of full and ¾ bathrooms in an <a class=\"localLink\" href=\"http://schema.org/Accommodation\">Accommodation</a>. This corresponds to the <a href=\"https://ddwiki.reso.org/display/DDW17/BathroomsFull+Field\">BathroomsFull field in RESO</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Accommodation, http://schema.org/FloorPlan","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""} , {"id":"http://schema.org/numberOfLoanPayments","label":"numberOfLoanPayments","comment":"The number of payments contractually required at origination to repay the loan. For monthly paying loans this is the number of months from the contractual first payment date to the maturity date.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/RepaymentSpecification","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/numberOfPartialBathrooms","label":"numberOfPartialBathrooms","comment":"Number of partial bathrooms - The total number of half and ¼ bathrooms in an <a class=\"localLink\" href=\"http://schema.org/Accommodation\">Accommodation</a>. This corresponds to the <a href=\"https://ddwiki.reso.org/display/DDW17/BathroomsPartial+Field\">BathroomsPartial field in RESO</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Accommodation, http://schema.org/FloorPlan","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""} , {"id":"http://schema.org/observationDate","label":"observationDate","comment":"The observationDate of an <a class=\"localLink\" href=\"http://schema.org/Observation\">Observation</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Observation","rangeIncludes":"http://schema.org/DateTime","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/observedNode","label":"observedNode","comment":"The observedNode of an <a class=\"localLink\" href=\"http://schema.org/Observation\">Observation</a>, often a <a class=\"localLink\" href=\"http://schema.org/StatisticalPopulation\">StatisticalPopulation</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Observation","rangeIncludes":"http://schema.org/StatisticalPopulation","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/occupationalCategory","label":"occupationalCategory","comment":"A category describing the job, preferably using a term from a taxonomy such as <a href=\"http://www.onetcenter.org/taxonomy.html\">BLS O*NET-SOC</a>, <a href=\"https://www.ilo.org/public/english/bureau/stat/isco/isco08/\">ISCO-08</a> or similar, with the property repeated for each applicable value. Ideally the taxonomy should be identified, and both the textual label and formal code for the category should be provided.<br/><br/><br/><br/>Note: for historical reasons, any textual label and formal code provided as a literal may be assumed to be from O*NET-SOC.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalProgram, http://schema.org/JobPosting, http://schema.org/Occupation, http://schema.org/WorkBasedProgram","rangeIncludes":"http://schema.org/CategoryCode, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/occupationalCredentialAwarded","label":"occupationalCredentialAwarded","comment":"A description of the qualification, award, certificate, diploma or other occupational credential awarded as a consequence of successful completion of this course or program.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Course, http://schema.org/EducationalOccupationalProgram","rangeIncludes":"http://schema.org/EducationalOccupationalCredential, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/offersPrescriptionByMail","label":"offersPrescriptionByMail","comment":"Whether prescriptions can be delivered by mail.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthPlanFormulary","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/ownershipFundingInfo","label":"ownershipFundingInfo","comment":"For an <a class=\"localLink\" href=\"http://schema.org/Organization\">Organization</a> (often but not necessarily a <a class=\"localLink\" href=\"http://schema.org/NewsMediaOrganization\">NewsMediaOrganization</a>), a description of organizational ownership structure; funding and grants. In a news/media setting, this is with particular reference to editorial independence. Note that the <a class=\"localLink\" href=\"http://schema.org/funder\">funder</a> is also available and can be used to make basic funder information machine-readable.","subPropertyOf":"http://schema.org/publishingPrinciples","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NewsMediaOrganization, http://schema.org/Organization","rangeIncludes":"http://schema.org/AboutPage, http://schema.org/CreativeWork, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/partOfTrip","label":"partOfTrip","comment":"Identifies that this <a class=\"localLink\" href=\"http://schema.org/Trip\">Trip</a> is a subTrip of another Trip. For example Day 1, Day 2, etc. of a multi-day trip.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Trip","rangeIncludes":"http://schema.org/Trip","inverseOf":"http://schema.org/subTrip","supersedes":"","supersededBy":""}, {"id":"http://schema.org/phoneticText","label":"phoneticText","comment":"Representation of a text <a class=\"localLink\" href=\"http://schema.org/textValue\">textValue</a> using the specified <a class=\"localLink\" href=\"http://schema.org/speechToTextMarkup\">speechToTextMarkup</a>. For example the city name of Houston in IPA: /ˈhjuːstən/.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PronounceableText","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""} , {"id":"http://schema.org/physicalRequirement","label":"physicalRequirement","comment":"A description of the types of physical activity associated with the job. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/DefinedTerm, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/populationType","label":"populationType","comment":"Indicates the populationType common to all members of a <a class=\"localLink\" href=\"http://schema.org/StatisticalPopulation\">StatisticalPopulation</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/StatisticalPopulation","rangeIncludes":"http://schema.org/Class","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/programPrerequisites","label":"programPrerequisites","comment":"Prerequisites for enrolling in the program.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalProgram","rangeIncludes":"http://schema.org/AlignmentObject, http://schema.org/Course, http://schema.org/EducationalOccupationalCredential, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/programType","label":"programType","comment":"The type of educational or occupational program. For example, classroom, internship, alternance, etc..","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalProgram","rangeIncludes":"http://schema.org/DefinedTerm, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/qualifications","label":"qualifications","comment":"Specific qualifications required for this role or Occupation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting, http://schema.org/Occupation","rangeIncludes":"http://schema.org/EducationalOccupationalCredential, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/ratingExplanation","label":"ratingExplanation","comment":"A short explanation (e.g. one to two sentences) providing background context and other information that led to the conclusion expressed in the rating. This is particularly applicable to ratings associated with \"fact check\" markup using <a class=\"localLink\" href=\"http://schema.org/ClaimReview\">ClaimReview</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Rating","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/recognizedBy","label":"recognizedBy","comment":"An organization that acknowledges the validity, value or utility of a credential. Note: recognition may include a process of quality assurance or accreditation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalCredential","rangeIncludes":"http://schema.org/Organization","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/recourseLoan","label":"recourseLoan","comment":"The only way you get the money back in the event of default is the security. Recourse is where you still have the opportunity to go back to the borrower for the rest of the money.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LoanOrCredit","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/refundType","label":"refundType","comment":"A refundType, from an enumerated list.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MerchantReturnPolicy","rangeIncludes":"http://schema.org/RefundTypeEnumeration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/renegotiableLoan","label":"renegotiableLoan","comment":"Whether the terms for payment of interest can be renegotiated during the life of the loan.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/LoanOrCredit","rangeIncludes":"http://schema.org/Boolean","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/repeatCount","label":"repeatCount","comment":"Defines the number of times a recurring <a class=\"localLink\" href=\"http://schema.org/Event\">Event</a> will take place","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Schedule","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/repeatFrequency","label":"repeatFrequency","comment":"Defines the frequency at which <a class=\"localLink\" href=\"http://schema.org/Events\">Events</a> will occur according to a schedule <a class=\"localLink\" href=\"http://schema.org/Schedule\">Schedule</a>. The intervals between events should be defined as a <a class=\"localLink\" href=\"http://schema.org/Duration\">Duration</a> of time.","subPropertyOf":"http://schema.org/frequency","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Schedule","rangeIncludes":"http://schema.org/Duration, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/returnFees","label":"returnFees","comment":"Indicates (via enumerated options) the return fees policy for a MerchantReturnPolicy","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MerchantReturnPolicy","rangeIncludes":"http://schema.org/ReturnFeesEnumeration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/returnPolicyCategory","label":"returnPolicyCategory","comment":"A returnPolicyCategory expresses at most one of several enumerated kinds of return.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/MerchantReturnPolicy","rangeIncludes":"http://schema.org/MerchantReturnEnumeration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/rxcui","label":"rxcui","comment":"The RxCUI drug identifier from RXNORM.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Drug","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/salaryUponCompletion","label":"salaryUponCompletion","comment":"The expected salary upon completing the training.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalProgram","rangeIncludes":"http://schema.org/MonetaryAmountDistribution","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/scheduleTimezone","label":"scheduleTimezone","comment":"Indicates the timezone for which the time(s) indicated in the <a class=\"localLink\" href=\"http://schema.org/Schedule\">Schedule</a> are given. The value provided should be among those listed in the IANA Time Zone Database.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Schedule","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sdDatePublished","label":"sdDatePublished","comment":"Indicates the date on which the current structured data was generated / published. Typically used alongside <a class=\"localLink\" href=\"http://schema.org/sdPublisher\">sdPublisher</a>","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Date","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sdLicense","label":"sdLicense","comment":"A license document that applies to this structured data, typically indicated by URL.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sdPublisher","label":"sdPublisher","comment":"Indicates the party responsible for generating and publishing the current structured data markup, typically in cases where the structured data is derived automatically from existing published content but published on a different site. For example, student projects and open data initiatives often re-publish existing content with more explicitly structured metadata. The<a class=\"localLink\" href=\"http://schema.org/sdPublisher\">sdPublisher</a> property helps make such practices more explicit.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/securityClearanceRequirement","label":"securityClearanceRequirement","comment":"A description of any security clearance requirements of the job.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sensoryRequirement","label":"sensoryRequirement","comment":"A description of any sensory requirements and levels necessary to function on the job, including hearing and vision. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/DefinedTerm, http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/speechToTextMarkup","label":"speechToTextMarkup","comment":"Form of markup used. eg. <a href=\"https://www.w3.org/TR/speech-synthesis11\">SSML</a> or <a href=\"https://www.wikidata.org/wiki/Property:P898\">IPA</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PronounceableText","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/spokenByCharacter","label":"spokenByCharacter","comment":"The (e.g. fictional) character, Person or Organization to whom the quotation is attributed within the containing CreativeWork.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Quotation","rangeIncludes":"http://schema.org/Organization, http://schema.org/Person","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/sport","label":"sport","comment":"A type of sport (e.g. Baseball).","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/SportsEvent, http://schema.org/SportsOrganization","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/startOffset","label":"startOffset","comment":"The start time of the clip expressed as the number of seconds from the beginning of the work.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Clip","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/subTrip","label":"subTrip","comment":"Identifies a <a class=\"localLink\" href=\"http://schema.org/Trip\">Trip</a> that is a subTrip of this Trip. For example Day 1, Day 2, etc. of a multi-day trip.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Trip","rangeIncludes":"http://schema.org/Trip","inverseOf":"http://schema.org/partOfTrip","supersedes":"","supersededBy":""}, {"id":"http://schema.org/subtitleLanguage","label":"subtitleLanguage","comment":"Languages in which subtitles/captions are available, in <a href=\"http://tools.ietf.org/html/bcp47\">IETF BCP 47 standard format</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/BroadcastEvent, http://schema.org/Movie, http://schema.org/ScreeningEvent, http://schema.org/TVEpisode","rangeIncludes":"http://schema.org/Language, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/termCode","label":"termCode","comment":"A code that identifies this <a class=\"localLink\" href=\"http://schema.org/DefinedTerm\">DefinedTerm</a> within a <a class=\"localLink\" href=\"http://schema.org/DefinedTermSet\">DefinedTermSet</a>","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/codeValue","domainIncludes":"http://schema.org/DefinedTerm","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/termDuration","label":"termDuration","comment":"The amount of time in a term as defined by the institution. A term is a length of time where students take one or more classes. Semesters and quarters are common units for term.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalProgram","rangeIncludes":"http://schema.org/Duration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/termsOfService","label":"termsOfService","comment":"Human-readable terms of service documentation.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Service","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/termsPerYear","label":"termsPerYear","comment":"The number of times terms of study are offered per year. Semesters and quarters are common units for term. For example, if the student can only take 2 semesters for the program in one year, then termsPerYear should be 2.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalProgram","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/textValue","label":"textValue","comment":"Text value being annotated.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PronounceableText","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/timeOfDay","label":"timeOfDay","comment":"The time of day the program normally runs. For example, \"evenings\".","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalProgram","rangeIncludes":"http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/timeToComplete","label":"timeToComplete","comment":"The expected length of time to complete the program if attending full-time.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalProgram","rangeIncludes":"http://schema.org/Duration","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/totalJobOpenings","label":"totalJobOpenings","comment":"The number of positions open for this job posting. Use a positive integer. Do not use if the number of positions is unclear or not known.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/JobPosting","rangeIncludes":"http://schema.org/Integer","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/trainingSalary","label":"trainingSalary","comment":"The estimated salary earned while in the program.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalProgram, http://schema.org/WorkBasedProgram","rangeIncludes":"http://schema.org/MonetaryAmountDistribution","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/typicalCreditsPerTerm","label":"typicalCreditsPerTerm","comment":"The number of credits or units a full-time student would be expected to take in 1 term however 'term' is defined by the institution.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/EducationalOccupationalProgram","rangeIncludes":"http://schema.org/Integer, http://schema.org/StructuredValue","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/unnamedSourcesPolicy","label":"unnamedSourcesPolicy","comment":"For an <a class=\"localLink\" href=\"http://schema.org/Organization\">Organization</a> (typically a <a class=\"localLink\" href=\"http://schema.org/NewsMediaOrganization\">NewsMediaOrganization</a>), a statement about policy on use of unnamed sources and the decision process required.","subPropertyOf":"http://schema.org/publishingPrinciples","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NewsMediaOrganization, http://schema.org/Organization","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/usageInfo","label":"usageInfo","comment":"The schema.org <a class=\"localLink\" href=\"http://schema.org/usageInfo\">usageInfo</a> property indicates further information about a <a class=\"localLink\" href=\"http://schema.org/CreativeWork\">CreativeWork</a>. This property is applicable both to works that are freely available and to those that require payment or other transactions. It can reference additional information e.g. community expectations on preferred linking and citation conventions, as well as purchasing details. For something that can be commercially licensed, usageInfo can provide detailed, resource-specific information about licensing options.<br/><br/><br/><br/>This property can be used alongside the license property which indicates license(s) applicable to some piece of content. The usageInfo property can provide information about other licensing options, e.g. acquiring commercial usage rights for an image that is also available under non-commercial creative commons licenses.","subPropertyOf":"","equivalentProperty":"","subproperties":"http://schema.org/acquireLicensePage","domainIncludes":"http://schema.org/CreativeWork","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/usesHealthPlanIdStandard","label":"usesHealthPlanIdStandard","comment":"The standard for interpreting thePlan ID. The preferred is \"HIOS\". See the Centers for Medicare &amp; Medicaid Services for more details.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/HealthInsurancePlan","rangeIncludes":"http://schema.org/Text, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/variableMeasured","label":"variableMeasured","comment":"The variableMeasured property can indicate (repeated as necessary) the variables that are measured in some dataset, either described as text or as pairs of identifier and description using PropertyValue.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Dataset","rangeIncludes":"http://schema.org/PropertyValue, http://schema.org/Text","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/verificationFactCheckingPolicy","label":"verificationFactCheckingPolicy","comment":"Disclosure about verification and fact-checking processes for a <a class=\"localLink\" href=\"http://schema.org/NewsMediaOrganization\">NewsMediaOrganization</a> or other fact-checking <a class=\"localLink\" href=\"http://schema.org/Organization\">Organization</a>.","subPropertyOf":"http://schema.org/publishingPrinciples","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/NewsMediaOrganization","rangeIncludes":"http://schema.org/CreativeWork, http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/webFeed","label":"webFeed","comment":"The URL for the feed associated with the podcast series. This is usually RSS or Atom.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/PodcastSeries","rangeIncludes":"http://schema.org/URL","inverseOf":"","supersedes":"","supersededBy":""}, {"id":"http://schema.org/yearBuilt","label":"yearBuilt","comment":"The year an <a class=\"localLink\" href=\"http://schema.org/Accommodation\">Accommodation</a> was constructed. This corresponds to the <a href=\"https://ddwiki.reso.org/display/DDW17/YearBuilt+Field\">YearBuilt field in RESO</a>.","subPropertyOf":"","equivalentProperty":"","subproperties":"","domainIncludes":"http://schema.org/Accommodation","rangeIncludes":"http://schema.org/Number","inverseOf":"","supersedes":"","supersededBy":""} ] schemaPropertiesPending.forEach(pendingProperty => { pendingProperty.pending = true //console.log('pendingProperty', pendingProperty) }) schemaProperties = schemaProperties.concat(schemaPropertiesPending) let schemaWithProperties = schemas[schemaName] // Define default common properties (valid on all schemas) schemaWithProperties.properties = { "@context": { name: "@context", expect: /^(http|https):\/\/schema\.org/, description: '' }, "@type": { name: "@type", value: ['http://schema.org/Text'], description: '' }, "@id": { name: "@id", value: ['http://schema.org/Text'], description: '' } } // Get all schemas this schema is a subclass of _getParentSchemas(schemaName, (schemaNames) =>{ schemaWithProperties.classes = schemaNames // Add all properties belonging to the specified schema AND any schema is a subclass of for (const schemaName of schemaNames) { for (const schemaProperty of schemaProperties) { const schemaUri = `http://schema.org/${schemaName}` if (schemaProperty.domainIncludes.split(', ').includes(schemaUri) && !schemaWithProperties.properties[schemaProperty.label]) { schemaWithProperties.properties[schemaProperty.label] = { name: schemaProperty.label, value: schemaProperty.rangeIncludes.split(', '), comment: schemaProperty.comment, pending: schemaProperty.pending ? true : false } if (schemaProperty.pending) schemaWithProperties.properties[schemaProperty.label].pending = true } } } resolve(schemaWithProperties) }) }) } async function _getParentSchemas(schemaName, callback, schemaClasses) { // Get all the parent classes of a schema if (!schemaClasses) schemaClasses = [schemaName] if (schemas[schemaName] && schemas[schemaName].subClassOf) { schemaClasses.push(schemas[schemaName].subClassOf) _getParentSchemas(schemas[schemaName].subClassOf, callback, schemaClasses) } else { callback(schemaClasses) } } module.exports = { getSchema, schemas }
98.913788
2,238
0.697491
f3355420de3fd111a212fcaa583911c00ac7b397
6,917
asm
Assembly
cpm2/RomWBW/Tools/simh/Z80Project/Z80 8bit CF Card Part 1/Code/CONIO.asm
grancier/z180
e83f35e36c9b4d1457e40585019430e901c86ed9
[ "ClArtistic" ]
null
null
null
cpm2/RomWBW/Tools/simh/Z80Project/Z80 8bit CF Card Part 1/Code/CONIO.asm
grancier/z180
e83f35e36c9b4d1457e40585019430e901c86ed9
[ "ClArtistic" ]
null
null
null
cpm2/RomWBW/Tools/simh/Z80Project/Z80 8bit CF Card Part 1/Code/CONIO.asm
grancier/z180
e83f35e36c9b4d1457e40585019430e901c86ed9
[ "ClArtistic" ]
1
2019-12-03T23:57:48.000Z
2019-12-03T23:57:48.000Z
;*************************************************************************** ; PROGRAM: CONIO ; PURPOSE: Subroutines for console I/O ; ASSEMBLER: TASM 3.2 ; LICENCE: The MIT Licence ; AUTHOR : MCook ; CREATE DATE : 19 May 15 ;*************************************************************************** ;*************************************************************************** ;PRINT_STRING ;Function: Prints string to terminal program ;*************************************************************************** PRINT_STRING: CALL UART_PRNT_STR RET ;*************************************************************************** ;GET_CHAR ;Function: Get upper case ASCII character from user into Accumulator ;*************************************************************************** GET_CHAR: CALL UART_RX ;Get char into Acc CALL TO_UPPER ;Character has to be upper case RET ;*************************************************************************** ;PRINT_CHAR ;Function: Get upper case ASCII character from Accumulator to UART ;*************************************************************************** PRINT_CHAR: CALL UART_TX ;Echo character to terminal RET ;*************************************************************************** ;TO_UPPER ;Function: Convert character in Accumulator to upper case ;*************************************************************************** TO_UPPER: CP 'a' ; Nothing to do if not lower case RET C CP 'z' + 1 ; > 'z'? RET NC ; Nothing to do, either AND $5F ; Convert to upper case RET ;*************************************************************************** ;PRINT_NEW_LINE ;Function: Prints carriage return and line feed ;*************************************************************************** NEW_LINE_STRING: .BYTE "\r\n",EOS PRINT_NEW_LINE: PUSH HL LD HL,NEW_LINE_STRING CALL PRINT_STRING POP HL RET ;*************************************************************************** ;CHAR_ISHEX ;Function: Checks if value in A is a hexadecimal digit, C flag set if true ;*************************************************************************** CHAR_ISHEX: ;Checks if Acc between '0' and 'F' CP 'F' + 1 ;(Acc) > 'F'? RET NC ;Yes - Return / No - Continue CP '0' ;(Acc) < '0'? JP NC,CHAR_ISHEX_1 ;Yes - Jump / No - Continue CCF ;Complement carry (clear it) RET CHAR_ISHEX_1: ;Checks if Acc below '9' and above 'A' CP '9' + 1 ;(Acc) < '9' + 1? RET C ;Yes - Return / No - Continue (meaning Acc between '0' and '9') CP 'A' ;(Acc) > 'A'? JP NC,CHAR_ISHEX_2 ;Yes - Jump / No - Continue CCF ;Complement carry (clear it) RET CHAR_ISHEX_2: ;Only gets here if Acc between 'A' and 'F' SCF ;Set carry flag to indicate the char is a hex digit RET ;*************************************************************************** ;GET_HEX_NIBBLE ;Function: Translates char to HEX nibble in bottom 4 bits of A ;*************************************************************************** GET_HEX_NIB: CALL GET_CHAR CALL CHAR_ISHEX ;Is it a hex digit? JP NC,GET_HEX_NIB ;Yes - Jump / No - Continue CALL PRINT_CHAR CP '9' + 1 ;Is it a digit less or equal '9' + 1? JP C,GET_HEX_NIB_1 ;Yes - Jump / No - Continue SUB $07 ;Adjust for A-F digits GET_HEX_NIB_1: SUB '0' ;Subtract to get nib between 0->15 AND $0F ;Only return lower 4 bits RET ;*************************************************************************** ;GET_HEX_BTYE ;Function: Gets HEX byte into A ;*************************************************************************** GET_HEX_BYTE: CALL GET_HEX_NIB ;Get high nibble RLC A ;Rotate nibble into high nibble RLC A RLC A RLC A LD B,A ;Save upper four bits CALL GET_HEX_NIB ;Get lower nibble OR B ;Combine both nibbles RET ;*************************************************************************** ;GET_HEX_WORD ;Function: Gets two HEX bytes into HL ;*************************************************************************** GET_HEX_WORD: PUSH AF CALL GET_HEX_BYTE ;Get high byte LD H,A CALL GET_HEX_BYTE ;Get low byte LD L,A POP AF RET ;*************************************************************************** ;PRINT_HEX_NIB ;Function: Prints a low nibble in hex notation from Acc to the serial line. ;*************************************************************************** PRINT_HEX_NIB: PUSH AF AND $0F ;Only low nibble in byte ADD A,'0' ;Adjust for char offset CP '9' + 1 ;Is the hex digit > 9? JP C,PRINT_HEX_NIB_1 ;Yes - Jump / No - Continue ADD A,'A' - '0' - $0A ;Adjust for A-F PRINT_HEX_NIB_1: CALL PRINT_CHAR ;Print the nibble POP AF RET ;*************************************************************************** ;PRINT_HEX_BYTE ;Function: Prints a byte in hex notation from Acc to the serial line. ;*************************************************************************** PRINT_HEX_BYTE: PUSH AF ;Save registers PUSH BC LD B,A ;Save for low nibble RRCA ;Rotate high nibble into low nibble RRCA RRCA RRCA CALL PRINT_HEX_NIB ;Print high nibble LD A,B ;Restore for low nibble CALL PRINT_HEX_NIB ;Print low nibble POP BC ;Restore registers POP AF RET ;*************************************************************************** ;PRINT_HEX_WORD ;Function: Prints the four hex digits of a word to the serial line from HL ;*************************************************************************** PRINT_HEX_WORD: PUSH HL PUSH AF LD A,H CALL PRINT_HEX_BYTE ;Print high byte LD A,L CALL PRINT_HEX_BYTE ;Print low byte POP AF POP HL RET
38.642458
100
0.366199
044261a12fb8b7c453cf45622433801f0ca0c1bd
695
swift
Swift
Sources/NativeMarkKit/style/Length.swift
bguidolim/NativeMarkKit
4849e7ab565ea87b7c62581bad51849b4d6c109d
[ "MIT" ]
34
2020-08-29T21:59:25.000Z
2022-01-30T07:35:18.000Z
Sources/NativeMarkKit/style/Length.swift
bguidolim/NativeMarkKit
4849e7ab565ea87b7c62581bad51849b4d6c109d
[ "MIT" ]
6
2021-01-01T22:49:52.000Z
2022-03-02T16:05:46.000Z
Sources/NativeMarkKit/style/Length.swift
bguidolim/NativeMarkKit
4849e7ab565ea87b7c62581bad51849b4d6c109d
[ "MIT" ]
3
2021-06-15T10:29:34.000Z
2021-09-30T12:41:37.000Z
import Foundation #if canImport(AppKit) import AppKit #elseif canImport(UIKit) import UIKit #else #error("Unsupported platform") #endif public enum Length: Equatable { case em(Em) case points(Points) public static prefix func -(rhs: Length) -> Length { switch rhs { case let .em(em): return .em(-em) case let .points(points): return .points(-points) } } } extension Length { func asRawPoints(for fontSize: CGFloat) -> CGFloat { switch self { case let .em(em): return em.asPoints(for: fontSize).value case let .points(points): return points.value } } }
20.441176
56
0.584173
3caa3b6f3911da23651c42aefbb7ed79e3df72d5
1,128
rs
Rust
rust/hello_macro.rs
esjeon/graveyard
50403303ed8b7a9193c16f3481a9a4c06dd588f5
[ "MIT" ]
3
2015-02-22T10:41:53.000Z
2021-09-10T13:52:23.000Z
rust/hello_macro.rs
esjeon/graveyard
50403303ed8b7a9193c16f3481a9a4c06dd588f5
[ "MIT" ]
null
null
null
rust/hello_macro.rs
esjeon/graveyard
50403303ed8b7a9193c16f3481a9a4c06dd588f5
[ "MIT" ]
null
null
null
use std::ops::{Add, Mul, Sub}; use std::vec::Vec; macro_rules! assert_equal_len { // The `tt` (token tree) designator is used for // operators and tokens. ($a:ident, $b: ident, $func:ident, $op:tt) => ( assert!($a.len() == $b.len(), "{:?}: dimension mismatch: {:?} {:?} {:?}", stringify!($func), ($a.len(),), stringify!($op), ($b.len(),)); ) } macro_rules! op { ($func:ident, $bound:ident, $op:tt, $method:ident) => ( fn $func<T: $bound<T, Output=T> + Copy>(xs: &mut Vec<T>, ys: &Vec<T>) { assert_equal_len!(xs, ys, $func, $op); for (x, y) in xs.iter_mut().zip(ys.iter()) { *x = $bound::$method(*x, *y); // *x = x.$method(*y); } } ) } // Implement `add_assign`, `mul_assign`, and `sub_assign` functions. op!(add_assign, Add, +=, add); op!(mul_assign, Mul, *=, mul); op!(sub_assign, Sub, -=, sub); fn main() { println!("Hello, world!"); let mut v1 = vec![1,2,3,4,5]; let v2 = vec![10,20,30,40,50]; v1 += v2; }
26.232558
79
0.463652
75ada5eb9aa4c11c04196904cf90b9bb1e04551d
13,069
sql
SQL
sql/student_v2.sql
LoganDuncan/record-manager-web-app
3ef78aebb770a9eaf2406a9d2b7d4b5f2b899de2
[ "MIT" ]
null
null
null
sql/student_v2.sql
LoganDuncan/record-manager-web-app
3ef78aebb770a9eaf2406a9d2b7d4b5f2b899de2
[ "MIT" ]
null
null
null
sql/student_v2.sql
LoganDuncan/record-manager-web-app
3ef78aebb770a9eaf2406a9d2b7d4b5f2b899de2
[ "MIT" ]
null
null
null
-- phpMyAdmin SQL Dump -- version 4.8.0.1 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Feb 14, 2019 at 06:07 AM -- Server version: 10.1.32-MariaDB -- PHP Version: 7.0.30 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `ctec` -- -- -------------------------------------------------------- -- -- Table structure for table `student_v2` -- CREATE TABLE `student_v2` ( `id` mediumint(8) UNSIGNED NOT NULL, `student_id` mediumint(9) NOT NULL, `first_name` varchar(255) NOT NULL, `last_name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `phone` varchar(100) NOT NULL, `degree_program` varchar(255) NOT NULL, `gpa` mediumint(9) NOT NULL, `financial_aid` mediumint(9) NOT NULL, `data_created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `graduation_date` date NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `student_v2` -- INSERT INTO `student_v2` (`id`, `student_id`, `first_name`, `last_name`, `email`, `phone`, `degree_program`, `gpa`, `financial_aid`, `data_created`) VALUES (1, 1000, 'Quynn', 'Berger', 'lobortis.ultrices.Vivamus@aliquamenimnec.co.uk', '749-1162', '', 1, 1, '2019-02-14 04:01:15'), (2, 999, 'Troy', 'Rojas', 'rutrum.magna@faucibusorciluctus.org', '921-0141', '', 4, 1, '2019-02-14 04:01:15'), (3, 998, 'Lionel', 'Merrill', 'ligula.eu.enim@iaculisquis.edu', '1-653-852-2223', '', 2, 1, '2019-02-14 04:01:15'), (4, 997, 'Kellie', 'Farrell', 'semper.et@in.edu', '1-879-348-6543', '', 2, 0, '2019-02-14 04:01:15'), (5, 996, 'Carla', 'Rosales', 'suscipit@Curabiturutodio.org', '720-4936', '', 2, 1, '2019-02-14 04:01:15'), (6, 995, 'Patience', 'Knapp', 'nunc.ullamcorper@enimconsequatpurus.org', '189-6243', '', 3, 0, '2019-02-14 04:01:15'), (7, 994, 'Amanda', 'Floyd', 'enim.Nunc@Vestibulumaccumsanneque.edu', '825-0545', '', 0, 0, '2019-02-14 04:01:15'), (8, 993, 'Caleb', 'Knight', 'ultricies@et.edu', '843-7777', '', 2, 0, '2019-02-14 04:01:15'), (9, 992, 'Nerea', 'Barrett', 'Nulla.tincidunt@esttemporbibendum.net', '1-518-491-0740', '', 2, 1, '2019-02-14 04:01:15'), (10, 991, 'Keiko', 'Meyer', 'arcu@nequesedsem.co.uk', '1-670-222-9896', '', 1, 0, '2019-02-14 04:01:15'), (11, 990, 'Brynn', 'West', 'condimentum@ipsumac.com', '1-517-135-4370', '', 2, 0, '2019-02-14 04:01:15'), (12, 989, 'Justine', 'Newman', 'euismod.ac.fermentum@Morbi.net', '160-7944', '', 4, 0, '2019-02-14 04:01:15'), (13, 988, 'Vladimir', 'Morris', 'dignissim@nectellusNunc.edu', '1-767-956-7875', '', 3, 1, '2019-02-14 04:01:15'), (14, 987, 'Yolanda', 'Parker', 'risus@eu.edu', '881-2614', '', 1, 0, '2019-02-14 04:01:15'), (15, 986, 'Macey', 'Mcdonald', 'consequat@posuereat.net', '771-9845', '', 4, 1, '2019-02-14 04:01:15'), (16, 985, 'Noelle', 'Faulkner', 'quam@egetmassa.co.uk', '1-917-102-2008', '', 0, 0, '2019-02-14 04:01:15'), (17, 984, 'Shoshana', 'Duncan', 'nibh.Aliquam@posuereenim.edu', '1-703-273-5136', '', 0, 1, '2019-02-14 04:01:15'), (18, 983, 'Rowan', 'Guzman', 'urna.Ut.tincidunt@dictum.org', '967-7163', '', 1, 0, '2019-02-14 04:01:15'), (19, 982, 'Yuli', 'Pollard', 'mattis@purus.org', '851-4218', '', 2, 1, '2019-02-14 04:01:15'), (20, 981, 'Blossom', 'Schmidt', 'tempus@vehicularisusNulla.net', '297-4322', '', 0, 0, '2019-02-14 04:01:15'), (21, 980, 'Sebastian', 'Richard', 'elit.erat@faucibusidlibero.net', '447-6422', '', 1, 1, '2019-02-14 04:01:15'), (22, 979, 'Hop', 'Long', 'ligula@lobortisauguescelerisque.edu', '921-6923', '', 2, 1, '2019-02-14 04:01:15'), (23, 978, 'Kathleen', 'Flores', 'eget.mollis@duinecurna.edu', '1-948-504-2374', '', 1, 0, '2019-02-14 04:01:15'), (24, 977, 'Madonna', 'Mercado', 'vel.sapien.imperdiet@magnatellus.net', '1-418-124-2959', '', 2, 1, '2019-02-14 04:01:15'), (25, 976, 'Russell', 'Murphy', 'pharetra.felis@ornare.net', '696-0131', '', 2, 0, '2019-02-14 04:01:15'), (26, 975, 'Demetria', 'James', 'penatibus@ligulaconsectetuer.edu', '1-350-932-8438', '', 2, 1, '2019-02-14 04:01:15'), (27, 974, 'Lacota', 'Chase', 'feugiat@lacusQuisqueimperdiet.com', '670-9058', '', 1, 1, '2019-02-14 04:01:15'), (28, 973, 'Quon', 'Massey', 'neque.non.quam@Praesenteu.co.uk', '846-8776', '', 4, 1, '2019-02-14 04:01:15'), (29, 972, 'Cairo', 'Bass', 'tempor@eulacus.edu', '212-8740', '', 2, 0, '2019-02-14 04:01:15'), (30, 971, 'Alea', 'Meadows', 'hendrerit.a.arcu@egettinciduntdui.com', '1-466-461-7634', '', 2, 1, '2019-02-14 04:01:15'), (31, 970, 'Martena', 'Santos', 'placerat@vel.edu', '364-9973', '', 3, 1, '2019-02-14 04:01:15'), (32, 969, 'Quintessa', 'Frye', 'diam@natoquepenatibus.ca', '1-324-946-0846', '', 0, 1, '2019-02-14 04:01:15'), (33, 968, 'Emma', 'Patterson', 'senectus@ligula.co.uk', '152-2847', '', 3, 1, '2019-02-14 04:01:15'), (34, 967, 'Samson', 'Fuentes', 'Nunc.sed.orci@Donecat.edu', '1-957-911-3953', '', 0, 1, '2019-02-14 04:01:15'), (35, 966, 'Regan', 'Walter', 'sed@tempusnonlacinia.co.uk', '1-737-127-2686', '', 0, 1, '2019-02-14 04:01:15'), (36, 965, 'Cullen', 'Shannon', 'eget@DuisgravidaPraesent.ca', '1-862-693-8443', '', 0, 1, '2019-02-14 04:01:15'), (37, 964, 'Adrian', 'Rosa', 'justo@montesnascetur.net', '522-1164', '', 2, 1, '2019-02-14 04:01:15'), (38, 963, 'Alden', 'Boone', 'risus.Morbi.metus@diamdictum.co.uk', '1-216-337-5812', '', 0, 1, '2019-02-14 04:01:15'), (39, 962, 'Christen', 'Mooney', 'Sed@famesac.ca', '269-5574', '', 4, 0, '2019-02-14 04:01:15'), (40, 961, 'Reece', 'Berger', 'sed.tortor.Integer@Namporttitorscelerisque.com', '1-369-100-6550', '', 4, 0, '2019-02-14 04:01:15'), (41, 960, 'Quail', 'Williamson', 'hendrerit.neque.In@Sed.ca', '425-4598', '', 2, 0, '2019-02-14 04:01:15'), (42, 959, 'Kasimir', 'Cunningham', 'augue.porttitor.interdum@Proin.co.uk', '1-936-174-9963', '', 0, 0, '2019-02-14 04:01:15'), (43, 958, 'Colorado', 'Fowler', 'urna.convallis.erat@adipiscing.com', '1-831-372-0237', '', 2, 1, '2019-02-14 04:01:15'), (44, 957, 'Price', 'Alston', 'malesuada@convallisligulaDonec.co.uk', '351-1474', '', 2, 0, '2019-02-14 04:01:15'), (45, 956, 'Fiona', 'Vinson', 'egestas.blandit@sitamet.edu', '1-159-704-7609', '', 3, 1, '2019-02-14 04:01:15'), (46, 955, 'Ruby', 'Lloyd', 'Curabitur@idblandit.net', '487-9293', '', 3, 1, '2019-02-14 04:01:15'), (47, 954, 'Brennan', 'Gutierrez', 'magnis.dis@interdumenimnon.net', '1-834-663-8027', '', 3, 1, '2019-02-14 04:01:15'), (48, 953, 'Patience', 'Conley', 'Fusce@vestibulummassa.org', '533-9572', '', 2, 1, '2019-02-14 04:01:15'), (49, 952, 'Lyle', 'Mcmahon', 'et@massaQuisque.org', '957-2452', '', 1, 1, '2019-02-14 04:01:15'), (50, 951, 'Destiny', 'Brady', 'consequat.auctor.nunc@consequatauctor.org', '1-467-894-1269', '', 0, 0, '2019-02-14 04:01:15'), (51, 950, 'Kelsey', 'Owens', 'vulputate.velit@acmattis.co.uk', '480-9805', '', 4, 0, '2019-02-14 04:01:15'), (52, 949, 'Madeson', 'Blankenship', 'ac.turpis.egestas@vitaesodales.edu', '203-4960', '', 0, 0, '2019-02-14 04:01:15'), (53, 948, 'Gabriel', 'Perry', 'eget.varius.ultrices@hymenaeosMaurisut.org', '1-259-114-7112', '', 0, 1, '2019-02-14 04:01:15'), (54, 947, 'Melodie', 'Mcfadden', 'ac@aliquet.org', '1-201-949-2137', '', 4, 0, '2019-02-14 04:01:15'), (55, 946, 'Natalie', 'Golden', 'varius.orci@facilisisloremtristique.edu', '1-662-427-8289', '', 3, 0, '2019-02-14 04:01:15'), (56, 945, 'Arden', 'Austin', 'dis@elit.edu', '1-241-800-7859', '', 3, 1, '2019-02-14 04:01:15'), (57, 944, 'Lara', 'Morales', 'dictum@temporbibendum.edu', '1-977-951-2618', '', 2, 1, '2019-02-14 04:01:15'), (58, 943, 'Vaughan', 'Nieves', 'sit.amet.faucibus@a.ca', '809-6836', '', 0, 0, '2019-02-14 04:01:15'), (59, 942, 'Scarlet', 'Cardenas', 'eu@ut.com', '405-4296', '', 3, 0, '2019-02-14 04:01:15'), (60, 941, 'Ezra', 'Gonzalez', 'tellus.Nunc@nuncQuisque.co.uk', '870-2535', '', 1, 1, '2019-02-14 04:01:15'), (61, 940, 'Shaeleigh', 'Manning', 'in.magna@ipsumCurabitur.com', '991-9702', '', 3, 0, '2019-02-14 04:01:15'), (62, 939, 'Aurelia', 'Chapman', 'vitae.nibh.Donec@consequatpurus.edu', '1-351-145-0552', '', 2, 0, '2019-02-14 04:01:15'), (63, 938, 'Merritt', 'Nielsen', 'arcu.Vivamus.sit@leo.ca', '617-3872', '', 3, 0, '2019-02-14 04:01:15'), (64, 937, 'Wesley', 'Price', 'rutrum@ultricesDuis.net', '861-5826', '', 0, 1, '2019-02-14 04:01:15'), (65, 936, 'Aiko', 'Russo', 'quis.arcu@Nullam.edu', '403-2031', '', 2, 0, '2019-02-14 04:01:15'), (66, 935, 'Olga', 'Valdez', 'porttitor.vulputate.posuere@ipsumac.com', '1-652-870-4304', '', 2, 1, '2019-02-14 04:01:15'), (67, 934, 'Kalia', 'Carlson', 'scelerisque@enimgravidasit.net', '123-4154', '', 4, 1, '2019-02-14 04:01:15'), (68, 933, 'Erica', 'Martin', 'arcu.Sed.et@metusIn.ca', '566-7092', '', 3, 0, '2019-02-14 04:01:15'), (69, 932, 'Darius', 'Navarro', 'Sed@augue.co.uk', '1-307-569-8839', '', 1, 0, '2019-02-14 04:01:15'), (70, 931, 'Micah', 'Camacho', 'metus.urna@penatibuset.edu', '621-0421', '', 4, 0, '2019-02-14 04:01:15'), (71, 930, 'Hop', 'Ellison', 'id.erat.Etiam@Nunclaoreetlectus.ca', '1-760-357-2698', '', 2, 0, '2019-02-14 04:01:15'), (72, 929, 'Magee', 'Bradford', 'non.lorem.vitae@malesuadaIntegerid.org', '460-4542', '', 4, 0, '2019-02-14 04:01:15'), (73, 928, 'Athena', 'Bridges', 'facilisis.vitae@magna.com', '1-548-790-6819', '', 3, 1, '2019-02-14 04:01:15'), (74, 927, 'Kim', 'Coleman', 'pede.malesuada@NuncmaurisMorbi.edu', '861-7576', '', 4, 1, '2019-02-14 04:01:15'), (75, 926, 'Ivana', 'Nichols', 'magnis@metus.edu', '787-0730', '', 0, 0, '2019-02-14 04:01:15'), (76, 925, 'Gwendolyn', 'Hinton', 'Sed.pharetra.felis@odioapurus.edu', '1-395-958-4433', '', 3, 1, '2019-02-14 04:01:15'), (77, 924, 'Kim', 'Sparks', 'in.lobortis.tellus@lobortisultricesVivamus.org', '1-609-408-9192', '', 0, 1, '2019-02-14 04:01:15'), (78, 923, 'Ursula', 'Koch', 'hymenaeos@consequat.co.uk', '1-975-505-9457', '', 2, 0, '2019-02-14 04:01:15'), (79, 922, 'Xaviera', 'Clements', 'nulla.Integer.vulputate@blanditcongue.co.uk', '1-559-184-0104', '', 2, 0, '2019-02-14 04:01:15'), (80, 921, 'Brianna', 'Bowen', 'vel@gravidaAliquamtincidunt.edu', '703-7863', '', 1, 1, '2019-02-14 04:01:15'), (81, 920, 'Nolan', 'Hickman', 'rutrum.non@afeugiat.co.uk', '1-924-765-4693', '', 4, 1, '2019-02-14 04:01:15'), (82, 919, 'Arthur', 'Fuller', 'Nam.nulla.magna@pretiumneque.net', '661-4142', '', 2, 1, '2019-02-14 04:01:15'), (83, 918, 'Mason', 'Johnston', 'semper.dui.lectus@necmetus.edu', '834-0295', '', 0, 0, '2019-02-14 04:01:15'), (84, 917, 'Carson', 'Mccarthy', 'enim.Suspendisse.aliquet@felis.net', '654-2083', '', 4, 0, '2019-02-14 04:01:15'), (85, 916, 'Clare', 'Santiago', 'amet.faucibus.ut@eratvelpede.com', '403-4664', '', 1, 0, '2019-02-14 04:01:15'), (86, 915, 'Alan', 'Padilla', 'turpis@necligula.com', '480-6116', '', 2, 0, '2019-02-14 04:01:15'), (87, 914, 'George', 'Dorsey', 'vitae@utodiovel.org', '1-360-139-4660', '', 2, 0, '2019-02-14 04:01:15'), (88, 913, 'Colby', 'Sheppard', 'Integer.vitae@Cras.com', '1-348-165-4526', '', 1, 1, '2019-02-14 04:01:15'), (89, 912, 'Mollie', 'Carver', 'mollis.vitae@Incondimentum.edu', '768-1352', '', 0, 1, '2019-02-14 04:01:15'), (90, 911, 'Norman', 'Levine', 'id.mollis.nec@uteros.ca', '273-2347', '', 1, 1, '2019-02-14 04:01:15'), (91, 910, 'Phillip', 'Cannon', 'sagittis.Duis.gravida@auguescelerisque.edu', '1-824-661-1038', '', 0, 1, '2019-02-14 04:01:15'), (92, 909, 'Irma', 'Beasley', 'malesuada@ornarelectus.org', '1-650-348-8761', '', 2, 0, '2019-02-14 04:01:15'), (93, 908, 'Vielka', 'Brewer', 'Quisque.porttitor.eros@feugiatmetus.net', '1-659-245-0304', '', 4, 0, '2019-02-14 04:01:15'), (94, 907, 'Althea', 'Adams', 'dapibus.quam@eget.org', '1-411-636-1873', '', 1, 1, '2019-02-14 04:01:15'), (95, 906, 'Kaye', 'Owen', 'facilisis@volutpatnuncsit.net', '821-2802', '', 2, 0, '2019-02-14 04:01:15'), (96, 905, 'Thane', 'Morton', 'sed.turpis@morbitristiquesenectus.net', '865-3431', '', 1, 0, '2019-02-14 04:01:15'), (97, 904, 'Chase', 'Hunt', 'Donec.elementum.lorem@Sednullaante.ca', '616-6561', '', 4, 0, '2019-02-14 04:01:15'), (98, 903, 'Kaye', 'Hobbs', 'lorem.Donec@Lorem.com', '1-418-873-2447', '', 4, 0, '2019-02-14 04:01:15'), (99, 902, 'Cheryl', 'Clemons', 'Aenean@nislelementumpurus.edu', '424-9989', '', 0, 0, '2019-02-14 04:01:15'), (100, 901, 'Kelsey', 'Mccullough', 'risus.In.mi@orcisemeget.edu', '524-3686', '', 4, 1, '2019-02-14 04:01:15'); -- -- Indexes for dumped tables -- -- -- Indexes for table `student_v2` -- ALTER TABLE `student_v2` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `student_id` (`student_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `student_v2` -- ALTER TABLE `student_v2` MODIFY `id` mediumint(8) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=101; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
74.255682
155
0.617798
dfd55cc2921bdc2a05b34406603f666880e8c958
569
ts
TypeScript
server/Config.ts
jschirrmacher/homagix
8d1716991f217c1da9871e5444d264dc7deb0631
[ "MIT" ]
1
2021-11-27T12:40:26.000Z
2021-11-27T12:40:26.000Z
server/Config.ts
jschirrmacher/homagix
8d1716991f217c1da9871e5444d264dc7deb0631
[ "MIT" ]
36
2018-11-25T14:40:45.000Z
2022-02-19T06:22:27.000Z
server/Config.ts
jschirrmacher/homagix
8d1716991f217c1da9871e5444d264dc7deb0631
[ "MIT" ]
1
2021-11-27T17:21:38.000Z
2021-11-27T17:21:38.000Z
import path from 'path' type Config = { nodeEnv: string baseDir: string dataDir: string migrationsPath: string PORT: number } export default function ( { logger } = { logger: console } as { logger: Console } ): Config { const baseDir = process.env.BASEDIR || process.cwd() const config = { nodeEnv: process.env.NODE_ENV || 'development', baseDir, dataDir: path.resolve(baseDir, 'data'), migrationsPath: path.resolve(__dirname, 'migrations'), PORT: parseInt(process.env.PORT || '8200'), } logger.info(config) return config }
21.884615
58
0.671353
0cf5f33e0cfd554440d95e9093a443f85242c9cf
3,067
py
Python
biocodes/re_eval.py
yjc9696/biobert-my
ffc11c91f7032cffbcc7d9526159f0ff8e08c1f3
[ "Apache-2.0" ]
null
null
null
biocodes/re_eval.py
yjc9696/biobert-my
ffc11c91f7032cffbcc7d9526159f0ff8e08c1f3
[ "Apache-2.0" ]
3
2020-11-13T17:48:47.000Z
2022-02-09T23:43:16.000Z
biocodes/re_eval.py
yjc9696/biobert-my
ffc11c91f7032cffbcc7d9526159f0ff8e08c1f3
[ "Apache-2.0" ]
null
null
null
import argparse import numpy as np import pandas as pd import sklearn.metrics import sklearn.metrics parser = argparse.ArgumentParser(description='') parser.add_argument('--output_path', type=str, help='') parser.add_argument('--answer_path', type=str, help='') parser.add_argument('--task', type=str, default="binary", help='default:binary, possible other options:{chemprot}') args = parser.parse_args() testdf = pd.read_csv(args.answer_path, sep="\t") preddf = pd.read_csv(args.output_path, sep="\t", header=None) # binary if args.task == "binary": pred = [preddf.iloc[i].tolist() for i in preddf.index] pred_class = [np.argmax(v) for v in pred] pred_prob_one = [v[1] for v in pred] p, r, f, s = sklearn.metrics.precision_recall_fscore_support(y_pred=pred_class, y_true=testdf["label"]) results = dict() results["f1 score"] = f[1] results["recall"] = r[1] results["precision"] = p[1] results["specificity"] = r[0] # chemprot # micro-average of 5 target classes # see "Potent pairing: ensemble of long short-term memory networks and support vector machine for chemical-protein relation extraction (Mehryary, 2018)" for details if args.task == "chemprot": pred = [preddf.iloc[i].tolist() for i in preddf.index] pred_class = [np.argmax(v) for v in pred] str_to_int_mapper = dict() for i, v in enumerate(sorted(testdf["label"].unique())): str_to_int_mapper[v] = i test_answer = [str_to_int_mapper[v] for v in testdf["label"]] p, r, f, s = sklearn.metrics.precision_recall_fscore_support(y_pred=pred_class, y_true=test_answer, average="micro") results = dict() results["f1 score"] = f results["recall"] = r results["precision"] = p if args.task == "N2C2": pred = [preddf.iloc[i].tolist() for i in preddf.index] pred_class = [np.argmax(v) for v in pred] str_to_int_mapper = dict() labels = ["Reason-Drug", "Route-Drug", "Strength-Drug", "Frequency-Drug", "Duration-Drug", "Form-Drug", "Dosage-Drug", "ADE-Drug"] for i, v in enumerate(labels): str_to_int_mapper[v] = i test_answer = [str_to_int_mapper[v] for v in testdf["label"]] # print(sklearn.metrics.precision_recall_fscore_support(y_pred=pred_class, y_true=test_answer, labels=[0, 1, 2, 3, 4, 5, 6, 7, 8], average="none")) for i, label in enumerate(labels): print(label + " result") p, r, f, s = sklearn.metrics.precision_recall_fscore_support(y_pred=pred_class, y_true=test_answer, labels=[i], average="macro") results = dict() results["f1 score"] = f results["recall"] = r results["precision"] = p for k, v in results.items(): print("{:11s} : {:.2%}".format(k, v)) print('\n') print('total' + " result\n") p, r, f, s = sklearn.metrics.precision_recall_fscore_support(y_pred=pred_class, y_true=test_answer, average="micro") results = dict() results["f1 score"] = f results["recall"] = r results["precision"] = p for k, v in results.items(): print("{:11s} : {:.2%}".format(k, v))
41.445946
164
0.661559
500167bcf66f4cdfcc2d4f4d1abfd096cf85e4f3
14,145
js
JavaScript
resources/assets/js/vue-i18n-locales.generated.js
RobHawk90/music-library
e3e92177fb8ea80078aaab3ab01af9a4ca8bf701
[ "MIT" ]
null
null
null
resources/assets/js/vue-i18n-locales.generated.js
RobHawk90/music-library
e3e92177fb8ea80078aaab3ab01af9a4ca8bf701
[ "MIT" ]
null
null
null
resources/assets/js/vue-i18n-locales.generated.js
RobHawk90/music-library
e3e92177fb8ea80078aaab3ab01af9a4ca8bf701
[ "MIT" ]
null
null
null
export default { 'en': { 'auth': { 'failed': 'These credentials do not match our records.', 'throttle': 'Too many login attempts. Please try again in {seconds} seconds.' }, 'pagination': { 'previous': '&laquo; Previous', 'next': 'Next &raquo;' }, 'passwords': { 'password': 'Passwords must be at least six characters and match the confirmation.', 'reset': 'Your password has been reset!', 'sent': 'We have e-mailed your password reset link!', 'token': 'This password reset token is invalid.', 'user': "We can't find a user with that e-mail address." }, 'validation': { 'accepted': 'The {attribute} must be accepted.', 'active_url': 'The {attribute} is not a valid URL.', 'after': 'The {attribute} must be a date after {date}.', 'after_or_equal': 'The {attribute} must be a date after or equal to {date}.', 'alpha': 'The {attribute} may only contain letters.', 'alpha_dash': 'The {attribute} may only contain letters, numbers, dashes and underscores.', 'alpha_num': 'The {attribute} may only contain letters and numbers.', 'array': 'The {attribute} must be an array.', 'before': 'The {attribute} must be a date before {date}.', 'before_or_equal': 'The {attribute} must be a date before or equal to {date}.', 'between': { 'numeric': 'The {attribute} must be between {min} and {max}.', 'file': 'The {attribute} must be between {min} and {max} kilobytes.', 'string': 'The {attribute} must be between {min} and {max} characters.', 'array': 'The {attribute} must have between {min} and {max} items.' }, 'boolean': 'The {attribute} field must be true or false.', 'confirmed': 'The {attribute} confirmation does not match.', 'date': 'The {attribute} is not a valid date.', 'date_format': 'The {attribute} does not match the format {format}.', 'different': 'The {attribute} and {other} must be different.', 'digits': 'The {attribute} must be {digits} digits.', 'digits_between': 'The {attribute} must be between {min} and {max} digits.', 'dimensions': 'The {attribute} has invalid image dimensions.', 'distinct': 'The {attribute} field has a duplicate value.', 'email': 'The {attribute} must be a valid email address.', 'exists': 'The selected {attribute} is invalid.', 'file': 'The {attribute} must be a file.', 'filled': 'The {attribute} field must have a value.', 'gt': { 'numeric': 'The {attribute} must be greater than {value}.', 'file': 'The {attribute} must be greater than {value} kilobytes.', 'string': 'The {attribute} must be greater than {value} characters.', 'array': 'The {attribute} must have more than {value} items.' }, 'gte': { 'numeric': 'The {attribute} must be greater than or equal {value}.', 'file': 'The {attribute} must be greater than or equal {value} kilobytes.', 'string': 'The {attribute} must be greater than or equal {value} characters.', 'array': 'The {attribute} must have {value} items or more.' }, 'image': 'The {attribute} must be an image.', 'in': 'The selected {attribute} is invalid.', 'in_array': 'The {attribute} field does not exist in {other}.', 'integer': 'The {attribute} must be an integer.', 'ip': 'The {attribute} must be a valid IP address.', 'ipv4': 'The {attribute} must be a valid IPv4 address.', 'ipv6': 'The {attribute} must be a valid IPv6 address.', 'json': 'The {attribute} must be a valid JSON string.', 'lt': { 'numeric': 'The {attribute} must be less than {value}.', 'file': 'The {attribute} must be less than {value} kilobytes.', 'string': 'The {attribute} must be less than {value} characters.', 'array': 'The {attribute} must have less than {value} items.' }, 'lte': { 'numeric': 'The {attribute} must be less than or equal {value}.', 'file': 'The {attribute} must be less than or equal {value} kilobytes.', 'string': 'The {attribute} must be less than or equal {value} characters.', 'array': 'The {attribute} must not have more than {value} items.' }, 'max': { 'numeric': 'The {attribute} may not be greater than {max}.', 'file': 'The {attribute} may not be greater than {max} kilobytes.', 'string': 'The {attribute} may not be greater than {max} characters.', 'array': 'The {attribute} may not have more than {max} items.' }, 'mimes': 'The {attribute} must be a file of type: {values}.', 'mimetypes': 'The {attribute} must be a file of type: {values}.', 'min': { 'numeric': 'The {attribute} must be at least {min}.', 'file': 'The {attribute} must be at least {min} kilobytes.', 'string': 'The {attribute} must be at least {min} characters.', 'array': 'The {attribute} must have at least {min} items.' }, 'not_in': 'The selected {attribute} is invalid.', 'not_regex': 'The {attribute} format is invalid.', 'numeric': 'The {attribute} must be a number.', 'present': 'The {attribute} field must be present.', 'regex': 'The {attribute} format is invalid.', 'required': 'The {attribute} field is required.', 'required_if': 'The {attribute} field is required when {other} is {value}.', 'required_unless': 'The {attribute} field is required unless {other} is in {values}.', 'required_with': 'The {attribute} field is required when {values} is present.', 'required_with_all': 'The {attribute} field is required when {values} is present.', 'required_without': 'The {attribute} field is required when {values} is not present.', 'required_without_all': 'The {attribute} field is required when none of {values} are present.', 'same': 'The {attribute} and {other} must match.', 'size': { 'numeric': 'The {attribute} must be {size}.', 'file': 'The {attribute} must be {size} kilobytes.', 'string': 'The {attribute} must be {size} characters.', 'array': 'The {attribute} must contain {size} items.' }, 'string': 'The {attribute} must be a string.', 'timezone': 'The {attribute} must be a valid zone.', 'unique': 'The {attribute} has already been taken.', 'uploaded': 'The {attribute} failed to upload.', 'url': 'The {attribute} format is invalid.', 'custom': { 'attribute-name': { 'rule-name': 'custom-message' } }, 'attributes': [] } }, 'pt-BR': { 'Access Level': 'Nível de Acesso', 'Add Song': 'Adicionar Música', 'Admin': 'Administrador', 'Albums': 'Álbuns', 'Artist': 'Artista', 'Artists': 'Artistas', 'Cancel': 'Cancelar', 'Composer': 'Compositor', 'Confirm': 'Confirmar', 'Description': 'Descrição', 'Do you really want to remove the album': 'Você realmente deseja remover o álbum', 'Do you really want to remove the artist': 'Você realmente deseja remover o artista', 'Do you really want to remove the music': 'Você realmente deseja remover a música', 'Do you really want to remove the user': 'Você realmente deseja remover o usuário', 'Duration': 'Duração', 'Edit Album': 'Editar Álbum', 'Edit User': 'Editar Usuário', 'Genre': 'Gênero', 'Home': 'Início', 'Image': 'Imagem', 'Language': 'Linguagem', 'Name': 'Nome', 'New': 'Novo', 'New Album': 'Novo Álbum', 'New Artist': 'Novo Artista', 'New Song': 'Nova Música', 'New User': 'Novo Usuário', 'Order': 'Ordem', 'Password': 'Senha', 'Password Confirmation': 'Confirmar Senha', 'Public': 'Público', 'Save': 'Salvar', 'Search for bands, albums or songs': 'Procure por bandas, álbuns ou músicas', 'Select a file': 'Selecione um arquivo', 'Songs': 'Músicas', "The album '%s' was removed": "O álbum '%s' foi removido", "The album '%s' was saved": "O álbum '%s' foi salvo", "The artist '%s' was removido": "O artista '%s' foi removido", "The artist '%s' was saved": "O artista '%s' foi salvo", "The user '%s' was removed": "O usuário '%s' foi removido", "The user '%s' was saved": "O usuário '%s' foi salvo", 'User': 'Usuário', 'Users': 'Usuários', 'Year': 'Ano', 'auth': { 'failed': 'Essas credenciais não correspondem aos nossos registros.', 'throttle': 'Muitas tentativas de login. Tente novamente em {seconds} segundos.' }, 'pagination': { 'previous': '&laquo; Anterior', 'next': 'Próximo &raquo;' }, 'passwords': { 'password': 'A senha e a confirmação devem combinar e possuir pelo menos seis caracteres.', 'reset': 'Sua senha foi redefinida!', 'sent': 'Enviamos seu link de redefinição de senha por e-mail!', 'token': 'Este token de redefinição de senha é inválido.', 'user': 'Não encontramos um usuário com esse endereço de e-mail.' }, 'validation': { 'accepted': 'O campo {attribute} deve ser aceito.', 'active_url': 'O campo {attribute} não é uma URL válida.', 'after': 'O campo {attribute} deve ser uma data posterior a {date}.', 'after_or_equal': 'O campo {attribute} deve ser uma data posterior ou igual a {date}.', 'alpha': 'O campo {attribute} só pode conter letras.', 'alpha_dash': 'O campo {attribute} só pode conter letras, números e traços.', 'alpha_num': 'O campo {attribute} só pode conter letras e números.', 'array': 'O campo {attribute} deve ser uma matriz.', 'before': 'O campo {attribute} deve ser uma data anterior {date}.', 'before_or_equal': 'O campo {attribute} deve ser uma data anterior ou igual a {date}.', 'between': { 'numeric': 'O campo {attribute} deve ser entre {min} e {max}.', 'file': 'O campo {attribute} deve ser entre {min} e {max} kilobytes.', 'string': 'O campo {attribute} deve ser entre {min} e {max} caracteres.', 'array': 'O campo {attribute} deve ter entre {min} e {max} itens.' }, 'boolean': 'O campo {attribute} deve ser verdadeiro ou falso.', 'confirmed': 'O campo {attribute} de confirmação não confere.', 'date': 'O campo {attribute} não é uma data válida.', 'date_format': 'O campo {attribute} não corresponde ao formato {format}.', 'different': 'Os campos {attribute} e {other} devem ser diferentes.', 'digits': 'O campo {attribute} deve ter {digits} dígitos.', 'digits_between': 'O campo {attribute} deve ter entre {min} e {max} dígitos.', 'dimensions': 'O campo {attribute} tem dimensões de imagem inválidas.', 'distinct': 'O campo {attribute} campo tem um valor duplicado.', 'email': 'O campo {attribute} deve ser um endereço de e-mail válido.', 'exists': 'O campo {attribute} selecionado é inválido.', 'file': 'O campo {attribute} deve ser um arquivo.', 'filled': 'O campo {attribute} o campo deve ter um valor.', 'image': 'O campo {attribute} deve ser uma imagem.', 'in': 'O campo {attribute} selecionado é inválido.', 'in_array': 'O campo {attribute} não existe em {other}.', 'integer': 'O campo {attribute} deve ser um número inteiro.', 'ip': 'O campo {attribute} deve ser um endereço de IP válido.', 'ipv4': 'O campo {attribute} deve ser um endereço IPv4 válido.', 'ipv6': 'O campo {attribute} deve ser um endereço IPv6 válido.', 'json': 'O campo {attribute} deve ser uma string JSON válida.', 'max': { 'numeric': 'O campo {attribute} não pode ser superior a {max}.', 'file': 'O campo {attribute} não pode ser superior a {max} kilobytes.', 'string': 'O campo {attribute} não pode ser superior a {max} caracteres.', 'array': 'O campo {attribute} não pode ter mais do que {max} itens.' }, 'mimes': 'O campo {attribute} deve ser um arquivo do tipo: {values}.', 'mimetypes': 'O campo {attribute} deve ser um arquivo do tipo: {values}.', 'min': { 'numeric': 'O campo {attribute} deve ser pelo menos {min}.', 'file': 'O campo {attribute} deve ter pelo menos {min} kilobytes.', 'string': 'O campo {attribute} deve ter pelo menos {min} caracteres.', 'array': 'O campo {attribute} deve ter pelo menos {min} itens.' }, 'not_in': 'O campo {attribute} selecionado é inválido.', 'numeric': 'O campo {attribute} deve ser um número.', 'present': 'O campo {attribute} deve estar presente.', 'regex': 'O campo {attribute} tem um formato inválido.', 'required': 'O campo {attribute} é obrigatório.', 'required_if': 'O campo {attribute} é obrigatório quando {other} for {value}.', 'required_unless': 'O campo {attribute} é obrigatório exceto quando {other} for {values}.', 'required_with': 'O campo {attribute} é obrigatório quando {values} está presente.', 'required_with_all': 'O campo {attribute} é obrigatório quando {values} está presente.', 'required_without': 'O campo {attribute} é obrigatório quando {values} não está presente.', 'required_without_all': 'O campo {attribute} é obrigatório quando nenhum dos {values} estão presentes.', 'same': 'Os campos {attribute} e {other} devem corresponder.', 'size': { 'numeric': 'O campo {attribute} deve ser {size}.', 'file': 'O campo {attribute} deve ser {size} kilobytes.', 'string': 'O campo {attribute} deve ser {size} caracteres.', 'array': 'O campo {attribute} deve conter {size} itens.' }, 'string': 'O campo {attribute} deve ser uma string.', 'timezone': 'O campo {attribute} deve ser uma zona válida.', 'unique': 'O campo {attribute} já está sendo utilizado.', 'uploaded': 'Ocorreu uma falha no upload do campo {attribute}.', 'url': 'O campo {attribute} tem um formato inválido.', 'custom': { 'attribute-name': { 'rule-name': 'custom-message' } }, 'attributes': [] } } }
52.388889
110
0.610604
5aee6f4747217f857075f403f7a429978d2e4803
106
kt
Kotlin
src/main/kotlin/br/com/zup/bcb/DeletePixKeyRequest.kt
oliboni/orange-talents-01-template-pix-keymanager-grpc
15e98720f58a78d855a8d0568faa10adbae5c6c2
[ "Apache-2.0" ]
null
null
null
src/main/kotlin/br/com/zup/bcb/DeletePixKeyRequest.kt
oliboni/orange-talents-01-template-pix-keymanager-grpc
15e98720f58a78d855a8d0568faa10adbae5c6c2
[ "Apache-2.0" ]
null
null
null
src/main/kotlin/br/com/zup/bcb/DeletePixKeyRequest.kt
oliboni/orange-talents-01-template-pix-keymanager-grpc
15e98720f58a78d855a8d0568faa10adbae5c6c2
[ "Apache-2.0" ]
null
null
null
package br.com.zup.bcb data class DeletePixKeyRequest( val key: String, val participant: String )
17.666667
31
0.735849
c668ae69868ebd5a8d09aa6009437aa251aa1f89
320
rb
Ruby
app/services/destroy/collection_user.rb
ndlib/honeycomb
f5ebab3ecfda386fa516b49114e04054aebbfdae
[ "Apache-2.0" ]
5
2015-04-15T21:31:10.000Z
2018-12-14T17:05:38.000Z
app/services/destroy/collection_user.rb
ndlib/honeycomb
f5ebab3ecfda386fa516b49114e04054aebbfdae
[ "Apache-2.0" ]
487
2015-01-28T19:01:47.000Z
2021-11-09T19:21:42.000Z
app/services/destroy/collection_user.rb
ndlib/honeycomb
f5ebab3ecfda386fa516b49114e04054aebbfdae
[ "Apache-2.0" ]
1
2016-05-02T20:18:00.000Z
2016-05-02T20:18:00.000Z
module Destroy class CollectionUser # Destroy the object only def destroy!(collection_user:) collection_user.destroy! end # There are no additional cascades for CollectionUser, # so destroys the object only def cascade!(collection_user:) collection_user.destroy! end end end
21.333333
58
0.70625
734ae960d01475dabbc436f97b7697bafb97e219
842
lua
Lua
stringreader.lua
speedata/luaxpath
cd55bb4479b45ab4b8bc46981564aa04b3bb9098
[ "MIT" ]
null
null
null
stringreader.lua
speedata/luaxpath
cd55bb4479b45ab4b8bc46981564aa04b3bb9098
[ "MIT" ]
null
null
null
stringreader.lua
speedata/luaxpath
cd55bb4479b45ab4b8bc46981564aa04b3bb9098
[ "MIT" ]
null
null
null
local stringreader = {} function stringreader.new(self,str) local s = { str = str, pos = 1 } setmetatable(s, self) self.__index = self local tab = {} if utf8 then for _,c in utf8.codes(str) do table.insert(tab,utf8.char(c)) end else for i in string.utfcharacters(str) do table.insert(tab,i) end end s.tab = tab return s end function stringreader.getc(self) local s = self.tab[self.pos] self.pos = self.pos + 1 return s end function stringreader.peek(self,pos) pos = pos or 1 return self.tab[self.pos + pos - 1] end function stringreader.back(self) self.pos = self.pos -1 return self.tab[self.pos] end function stringreader.eof(self) return self.pos == #self.tab +1 end return stringreader
17.914894
45
0.602138
11be359f3a655a31c385cd1305dbc25a5912b1ab
5,839
asm
Assembly
transformy/tables/gen/0027.asm
mborik/regression
25b5f2204ce668594449e8ce804779288b895ac0
[ "MIT" ]
3
2019-09-18T05:34:22.000Z
2020-12-04T17:46:52.000Z
transformy/tables/gen/0027.asm
mborik/regression
25b5f2204ce668594449e8ce804779288b895ac0
[ "MIT" ]
null
null
null
transformy/tables/gen/0027.asm
mborik/regression
25b5f2204ce668594449e8ce804779288b895ac0
[ "MIT" ]
1
2020-01-17T01:04:24.000Z
2020-01-17T01:04:24.000Z
xor a ld hl, basescradr + #0876 ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a ld hl, basescradr + #0896 ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a ld hl, basescradr + #0956 ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a ld hl, basescradr + #0b15 ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a ld hl, basescradr + #05d0 ld (hl), a inc hl ld (hl), a inc hl ld (hl), a ld hl, basescradr + #06d0 ld (hl), a inc hl ld (hl), a inc hl ld (hl), a ld (basescradr + #00f3), a ld (basescradr + #01f3), a ld (basescradr + #04f4), a ld (basescradr + #05f4), a ld (basescradr + #07cf), a ld (basescradr + #07d3), a ld (basescradr + #08d5), a ld (basescradr + #09d5), a ld a, 127 ld (basescradr + #07d0), a ld (basescradr + #07ee), a ld (basescradr + #092d), a ld (basescradr + #09ce), a ld (basescradr + #0a2d), a ld (basescradr + #0bf0), a ld (basescradr + #0d8d), a ld (basescradr + #0e8d), a inc a ld (basescradr + #06f4), a ld (basescradr + #07d2), a ld (basescradr + #0eb5), a ld (basescradr + #0f15), a ld (basescradr + #0fb5), a ld a, 7 ld (basescradr + #00ef), a ld (basescradr + #0b0d), a ld (basescradr + #0cad), a ld (basescradr + #0cf0), a ld (basescradr + #0dad), a ld (basescradr + #0dce), a ld a, 248 ld hl, basescradr + #0d35 ld (hl), a inc h ld (hl), a inc h ld (hl), a ld (basescradr + #00f2), a ld (basescradr + #08b5), a ld (basescradr + #09f3), a ld (basescradr + #0a14), a ld (basescradr + #0bd4), a ld (basescradr + #0cf2), a ld (basescradr + #0f95), a ld a, 63 ld (basescradr + #01ef), a ld (basescradr + #06ee), a ld (basescradr + #082d), a ld (basescradr + #08ad), a ld (basescradr + #08ef), a ld (basescradr + #0ace), a ld (basescradr + #0f0d), a ld (basescradr + #0f8d), a ld a, 192 ld (basescradr + #02f3), a ld (basescradr + #07f4), a ld (basescradr + #0835), a ld (basescradr + #0935), a ld (basescradr + #0db5), a ld a, 3 ld hl, basescradr + #086c ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a ld hl, basescradr + #094c ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a ld (basescradr + #03ee), a ld (basescradr + #090d), a ld (basescradr + #0a0d), a ld (basescradr + #0ead), a ld a, 240 ld (basescradr + #03f3), a ld (basescradr + #0914), a ld (basescradr + #09b5), a ld (basescradr + #0ab5), a ld (basescradr + #0b35), a ld (basescradr + #0c35), a ld (basescradr + #0cd4), a ld a, 252 ld hl, basescradr + #0855 ld (hl), a inc h ld (hl), a inc h ld (hl), a ld hl, basescradr + #0c95 ld (hl), a inc h ld (hl), a inc h ld (hl), a ld (basescradr + #04f3), a ld (basescradr + #0ad4), a ld (basescradr + #0b14), a ld a, 31 ld (basescradr + #05ee), a ld (basescradr + #09ad), a ld (basescradr + #0aad), a ld (basescradr + #0bce), a ld (basescradr + #0d0d), a ld (basescradr + #0e0d), a ld a, 254 ld hl, basescradr + #0895 ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a ld hl, basescradr + #0b55 ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a ld hl, basescradr + #0d75 ld (hl), a inc h ld (hl), a inc h ld (hl), a ld (basescradr + #05f3), a ld (basescradr + #0875), a ld (basescradr + #08f3), a ld (basescradr + #0975), a ld (basescradr + #09d4), a ld (basescradr + #0c14), a ld a, 1 ld hl, basescradr + #0d2c ld (hl), a inc h ld (hl), a inc h ld (hl), a ld (basescradr + #080d), a ld (basescradr + #084c), a ld (basescradr + #088c), a ld (basescradr + #098c), a ld (basescradr + #0aef), a ld (basescradr + #0e6c), a ld (basescradr + #0ece), a ld (basescradr + #0f6c), a ld (basescradr + #0fad), a ld a, 255 ld hl, basescradr + #084d ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a ld hl, basescradr + #086d ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a ld hl, basescradr + #088d ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a ld hl, basescradr + #08f0 ld (hl), a inc h ld (hl), a inc h ld (hl), a ld hl, basescradr + #09ae ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a ld hl, basescradr + #0acf ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a ld hl, basescradr + #0af1 ld (hl), a inc h ld (hl), a inc h ld (hl), a ld hl, basescradr + #0b2d ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a inc h ld (hl), a ld (basescradr + #080e), a ld (basescradr + #08ce), a ld (basescradr + #090e), a ld (basescradr + #0af2), a ld (basescradr + #0bf2), a ld (basescradr + #0fd0), a ld a, 224 ld (basescradr + #0814), a ld (basescradr + #0a35), a ld (basescradr + #0af3), a ld (basescradr + #0bb5), a ld (basescradr + #0cb5), a ld (basescradr + #0dd4), a ld a, 15 ld (basescradr + #09ef), a ld (basescradr + #0bad), a ld (basescradr + #0c0d), a ld (basescradr + #0cce), a ret
17.173529
28
0.528515
229b63790fe2cf5088f3a22a2c7a2ab46423979d
176
html
HTML
WorkTimeTravelApp/www/templates/addHours.html
lopezoscar/WorkTimeTravel
eb5ebe74f01377fa33b49fb0ec2f9861accaa07b
[ "Unlicense" ]
null
null
null
WorkTimeTravelApp/www/templates/addHours.html
lopezoscar/WorkTimeTravel
eb5ebe74f01377fa33b49fb0ec2f9861accaa07b
[ "Unlicense" ]
null
null
null
WorkTimeTravelApp/www/templates/addHours.html
lopezoscar/WorkTimeTravel
eb5ebe74f01377fa33b49fb0ec2f9861accaa07b
[ "Unlicense" ]
null
null
null
<ion-view view-title="Add"> <ion-content class="background" scroll="false" > <hours-details hours-data="hoursData"></hours-details> </ion-content> </ion-view>
25.142857
62
0.647727
f73762a69dbb481fd2da7d2c4a5321b50ed73dd3
308
c
C
c/nxu/nxu.c
newnix/Forge
6d18105460fabc20592ed3c29813173cdb57d512
[ "BSD-3-Clause-Clear" ]
null
null
null
c/nxu/nxu.c
newnix/Forge
6d18105460fabc20592ed3c29813173cdb57d512
[ "BSD-3-Clause-Clear" ]
null
null
null
c/nxu/nxu.c
newnix/Forge
6d18105460fabc20592ed3c29813173cdb57d512
[ "BSD-3-Clause-Clear" ]
null
null
null
/* * nxu, by Newnix of Exile Heavy Industries * meant to be a minimalistic statically compiled * multi-call binary like busybox or toybox. * * It will not be compatible with any other binary utilities * but will have similar commands and flags with similar * utility, if not compatible utility. */
30.8
60
0.743506
4c3a8e12f81a87939674668405b64e1795d43de9
530
php
PHP
src/FondOfOryx/Zed/ReturnLabelsRestApiCompanyUnitAddressConnector/Persistence/ReturnLabelsRestApiCompanyUnitAddressConnectorRepositoryInterface.php
fond-of-oryx/return-labels-rest-api-company-unit-address-connector
fb9a5e17b76138958b0d333e4adfffdd53f7022c
[ "MIT" ]
null
null
null
src/FondOfOryx/Zed/ReturnLabelsRestApiCompanyUnitAddressConnector/Persistence/ReturnLabelsRestApiCompanyUnitAddressConnectorRepositoryInterface.php
fond-of-oryx/return-labels-rest-api-company-unit-address-connector
fb9a5e17b76138958b0d333e4adfffdd53f7022c
[ "MIT" ]
9
2021-03-01T16:12:46.000Z
2022-03-11T09:55:36.000Z
bundles/return-labels-rest-api-company-unit-address-connector/src/FondOfOryx/Zed/ReturnLabelsRestApiCompanyUnitAddressConnector/Persistence/ReturnLabelsRestApiCompanyUnitAddressConnectorRepositoryInterface.php
fond-of-oryx/fond-of-oryx
dd1d5d794f4984fc0038aaf30392694cb4d9fa8c
[ "MIT" ]
null
null
null
<?php namespace FondOfOryx\Zed\ReturnLabelsRestApiCompanyUnitAddressConnector\Persistence; use Generated\Shared\Transfer\CompanyUnitAddressTransfer; interface ReturnLabelsRestApiCompanyUnitAddressConnectorRepositoryInterface { /** * @param string $uuid * @param int $idCustomer * * @return \Generated\Shared\Transfer\CompanyUnitAddressTransfer|null */ public function getCompanyUnitAddressByUuidAndIdCustomer( string $uuid, int $idCustomer ): ?CompanyUnitAddressTransfer; }
26.5
84
0.760377
4a45445ae7dcbf71877937c07d1b29e1a0addd94
1,195
js
JavaScript
test/sankey/layout-nest-graph-test.js
sinstar2000/d3-sankey-diagram
f6a1ac6f8007421f95b5f4d69a851a71d9b4717c
[ "MIT" ]
86
2016-06-16T16:34:45.000Z
2022-03-25T18:12:35.000Z
test/sankey/layout-nest-graph-test.js
sinstar2000/d3-sankey-diagram
f6a1ac6f8007421f95b5f4d69a851a71d9b4717c
[ "MIT" ]
28
2016-10-21T14:06:28.000Z
2021-03-10T23:35:49.000Z
test/sankey/layout-nest-graph-test.js
sinstar2000/d3-sankey-diagram
f6a1ac6f8007421f95b5f4d69a851a71d9b4717c
[ "MIT" ]
25
2017-07-26T20:14:51.000Z
2022-01-19T04:40:59.000Z
import nestGraph from '../../src/sankeyLayout/nest-graph.js' import tape from 'tape' tape('nestGraph()', test => { // 0|---\ // \ // 1|-\ -| // \---|4 // 2|------| // ,-| // 3|---/ // const nodes = [ {id: '0', rank: 0, band: 0, depth: 0}, {id: '1', rank: 0, band: 1, depth: 0}, {id: '2', rank: 0, band: 1, depth: 2}, {id: '3', rank: 0, band: 1, depth: 1}, {id: '4', rank: 1, band: 1, depth: 0} ] const nested = nestGraph(nodes) test.deepEqual(ids(nested), [ [ ['0'], ['1', '3', '2'] ], [ [], ['4'] ] ]) test.end() }) tape('nestGraph() calculates band values', test => { // 0 -- 2 : band x // // 1 -- 3 : band y // `- 4 : // const nodes = [ {id: '0', rank: 0, band: 0, depth: 0, value: 5}, {id: '1', rank: 1, band: 1, depth: 0, value: 25}, {id: '2', rank: 1, band: 0, depth: 0, value: 5}, {id: '3', rank: 2, band: 1, depth: 0, value: 10}, {id: '4', rank: 2, band: 1, depth: 1, value: 15} ] test.deepEqual(nestGraph(nodes).bandValues, [5, 25]) test.end() }) function ids (layers) { return layers.map(bands => bands.map(nodes => nodes.map(d => d.id))) }
24.387755
70
0.458577
39b85113d20330e2a716927abd1d5e6301334424
313
js
JavaScript
final/project/handlers/index.js
faiyazbits/hapi_sequelize_training
c7fd6de828f22182158de36bd281efa53f5d9e40
[ "MIT" ]
null
null
null
final/project/handlers/index.js
faiyazbits/hapi_sequelize_training
c7fd6de828f22182158de36bd281efa53f5d9e40
[ "MIT" ]
1
2021-05-11T17:20:15.000Z
2021-05-11T17:20:15.000Z
final/project/handlers/index.js
faiyazbits/hapi_sequelize_training
c7fd6de828f22182158de36bd281efa53f5d9e40
[ "MIT" ]
1
2020-06-11T16:58:10.000Z
2020-06-11T16:58:10.000Z
const UserHandler = require('./user.handler'); const UserProfileHandler = require('./user-profile.handler'); const UserAddressHandler = require('./user-address.handler'); module.exports = { UserHandler : UserHandler, UserProfileHandler : UserProfileHandler, UserAddressHandler : UserAddressHandler };
34.777778
61
0.757188
24cbce52e95fdb15bd5ab5eeca74e671b7e420b4
1,701
go
Go
private/services/ufs/describe_ufsvolume.go
yangyimincn/ucloud-sdk-go
687ef8cec28fbcfb9e69f1efb580c937ee363ac4
[ "Apache-2.0" ]
73
2016-04-08T01:29:08.000Z
2022-01-20T10:48:59.000Z
private/services/ufs/describe_ufsvolume.go
yangyimincn/ucloud-sdk-go
687ef8cec28fbcfb9e69f1efb580c937ee363ac4
[ "Apache-2.0" ]
146
2016-05-05T07:24:06.000Z
2022-03-30T10:59:54.000Z
private/services/ufs/describe_ufsvolume.go
yangyimincn/ucloud-sdk-go
687ef8cec28fbcfb9e69f1efb580c937ee363ac4
[ "Apache-2.0" ]
45
2016-04-18T11:24:10.000Z
2021-12-16T03:58:08.000Z
//Code is generated by ucloud code generator, don't modify it by hand, it will cause undefined behaviors. //go:generate ucloud-gen-go-api UFS DescribeUFSVolume package ufs import ( "github.com/ucloud/ucloud-sdk-go/ucloud/request" "github.com/ucloud/ucloud-sdk-go/ucloud/response" ) // DescribeUFSVolumeRequest is request schema for DescribeUFSVolume action type DescribeUFSVolumeRequest struct { request.CommonBase // [公共参数] 地域。 参见 [地域和可用区列表](../summary/regionlist.html) // Region *string `required:"true"` // [公共参数] 项目ID。不填写为默认项目,子帐号必须填写。 请参考[GetProjectList接口](../summary/get_project_list.html) // ProjectId *string `required:"false"` // 文件系统ID VolumeId *string `required:"false"` // 文件列表起始 Offset *int `required:"false"` // 文件列表长度 Limit *int `required:"false"` } // DescribeUFSVolumeResponse is response schema for DescribeUFSVolume action type DescribeUFSVolumeResponse struct { response.CommonBase // 文件系统总数 TotalCount int // 文件系统详细信息列表 DataSet []UFSVolumeInfo } // NewDescribeUFSVolumeRequest will create request of DescribeUFSVolume action. func (c *UFSClient) NewDescribeUFSVolumeRequest() *DescribeUFSVolumeRequest { req := &DescribeUFSVolumeRequest{} // setup request with client config c.Client.SetupRequest(req) // setup retryable with default retry policy (retry for non-create action and common error) req.SetRetryable(true) return req } // DescribeUFSVolume - 获取文件系统列表 func (c *UFSClient) DescribeUFSVolume(req *DescribeUFSVolumeRequest) (*DescribeUFSVolumeResponse, error) { var err error var res DescribeUFSVolumeResponse err = c.Client.InvokeAction("DescribeUFSVolume", req, &res) if err != nil { return &res, err } return &res, nil }
25.772727
106
0.762493
745d88a60735ad5960616b8751de0bdc1a365b23
602
h
C
Modules/Mipf_Module_TubularTracking/CQF_TubularTrackingCom.h
linson7017/MIPF
adf982ae5de69fca9d6599fbbbd4ca30f4ae9767
[ "ECL-2.0", "Apache-2.0" ]
4
2017-04-13T06:01:49.000Z
2019-12-04T07:23:53.000Z
Modules/Mipf_Module_TubularTracking/CQF_TubularTrackingCom.h
linson7017/MIPF
adf982ae5de69fca9d6599fbbbd4ca30f4ae9767
[ "ECL-2.0", "Apache-2.0" ]
1
2017-10-27T02:00:44.000Z
2017-10-27T02:00:44.000Z
Modules/Mipf_Module_TubularTracking/CQF_TubularTrackingCom.h
linson7017/MIPF
adf982ae5de69fca9d6599fbbbd4ca30f4ae9767
[ "ECL-2.0", "Apache-2.0" ]
2
2017-09-06T01:59:07.000Z
2019-12-04T07:23:54.000Z
#ifndef CQF_TubularTrackingCom_h__ #define CQF_TubularTrackingCom_h__ #include "iqf_component.h" class TubularTracking; class CQF_TubularTrackingCom :public QF::IQF_Component { public: CQF_TubularTrackingCom(); ~CQF_TubularTrackingCom(); virtual void Release(); virtual bool Init(); virtual void* GetInterfacePtr(const char* szInterfaceID); const char* GetComponentID() { return "QF_Component_TububarTracking"; } int GetInterfaceCount(); const char* GetInterfaceID(int iID); private: TubularTracking* m_pTubularTracing; }; #endif // CQF_TubularTrackingCom_h__
23.153846
75
0.76412
2f5439923623a5eb298209840782a6e09c715653
6,272
php
PHP
resources/views/Layout/Nav.blade.php
NuwanTheekshana/Location
d255276f37160fad76371ff3f6ed3aaaaf3bdb74
[ "MIT" ]
null
null
null
resources/views/Layout/Nav.blade.php
NuwanTheekshana/Location
d255276f37160fad76371ff3f6ed3aaaaf3bdb74
[ "MIT" ]
3
2021-03-10T12:56:28.000Z
2022-02-27T02:12:30.000Z
resources/views/Layout/Nav.blade.php
NuwanTheekshana/Location
d255276f37160fad76371ff3f6ed3aaaaf3bdb74
[ "MIT" ]
null
null
null
<div class="wrapper"> <!-- Sidebar --> @if(Auth::user()->permission == "1") <nav id="sidebar"> <div class="sidebar-header"> <h3>Branch Location</h3> <strong><i class="fa fa-map-marker" aria-hidden="true"></i><i class="fas fa-map"></i></strong> </div> <ul class="list-unstyled components"> <li class="active"> <a href="{{ url('/home') }}"> <i class="fa fa-map-marker"></i> Branch Map </a> <a href="#homeSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle"> <i class="fa fa-edit" aria-hidden="true"></i> Update Location </a> <ul class="collapse list-unstyled" id="homeSubmenu"> <li> <a href="{{ url('/newbranch') }}">New Branch</a> </li> <li> <a href="{{ url('/all_branch') }}">Update & Find Branch</a> </li> </ul> </li> <li> <a href="#pageSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle"> <i class="fa fa-user" aria-hidden="true"></i> User Details </a> <ul class="collapse list-unstyled" id="pageSubmenu"> <li> <a href="{{ url('/register') }}">User Registration</a> </li> <li> <a href="{{ url('/all_users') }}">All User Details</a> </li> </ul> </li> </ul> <ul class="list-unstyled CTAs"> <a href="https://www.google.com/maps/d/u/2/edit?mid=1U7lxGpoHzTOVmeTk6c0w4KcUoFLq67Tr&ll=7.761859730021721%2C79.49156306445536&z=7" style="background-color:red;"> Assurance Branch Map </a> <a href="https://www.google.com/maps/d/u/2/edit?mid=1nlOSb5RNKwLrotr2bOr9WPic3gCCZczR&ll=8.579979002554259%2C79.76307225202561&z=7" style="background-color:#FFC300;"> General Branch Map </a> </ul> </nav> @else <nav id="sidebar"> <div class="sidebar-header"> <h3>Branch Location</h3> <strong><i class="fa fa-map-marker" aria-hidden="true"></i><i class="fas fa-map"></i></strong> </div> <ul class="list-unstyled components"> <li class="active"> <a href="{{ url('/home') }}"> <i class="fa fa-map-marker"></i> Branch Map </a> <a href="#homeSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle"> <i class="fa fa-edit" aria-hidden="true"></i> Update Location </a> <ul class="collapse list-unstyled" id="homeSubmenu"> <li> <a href="{{ url('/newbranch') }}">New Branch</a> </li> <li> <a href="{{ url('/all_branch') }}">Update & Find Branch</a> </li> </ul> </li> </ul> <ul class="list-unstyled CTAs"> </ul> </nav> @endif <!-- Page Content --> <div id="content"> <nav class="navbar navbar-expand-lg navbar-light bg-light"> <div class="container-fluid"> <button type="button" id="sidebarCollapse" class="btn btn-dark"> <i class="fas fa-align-left"></i> <span></span> </button> <button class="btn btn-dark d-inline-block d-lg-none ml-auto" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <i class="fas fa-align-justify"></i> </button> <div class="collapse navbar-collapse" id="navbarSupportedContent"> <ul class="nav navbar-nav ml-auto"> <li class="nav-item active"> </li> <li class="nav-item"> </li> <li class="nav-item"> </li> <li class="nav-item"> <a class="nav-link" href="#">{{ Auth::user()->name }}</a> <a class="dropdown-item" href="{{ route('logout') }}" onclick="event.preventDefault(); document.getElementById('logout-form').submit();" style = "text-align:center;color:red;"> {{ __('Logout') }} </a> <form id="logout-form" action="{{ route('logout') }}" method="POST" style="display: none;"> @csrf </form> </li> </ul> </div> </div> </nav>
33.902703
249
0.362245
2f4953dc6d487d9168d1fdf676508fa08ff44c77
1,297
php
PHP
application/views/login-form.php
hrishikesh214/Blog
4e6db1ece36434100a208bcaf7127a45b55ef842
[ "MIT" ]
2
2021-01-25T04:10:57.000Z
2021-12-02T14:11:03.000Z
application/views/login-form.php
hrishikesh214/Blog
4e6db1ece36434100a208bcaf7127a45b55ef842
[ "MIT" ]
null
null
null
application/views/login-form.php
hrishikesh214/Blog
4e6db1ece36434100a208bcaf7127a45b55ef842
[ "MIT" ]
null
null
null
<?php require 'header.php'; ?> <div class="row"> <div class="col-lg-6"> <span class="text-danger"> <?php echo validation_errors(); ?> </span> <span class="text-danger"> <?php echo isset($error)? $error :"" ; ?> </span> </div> <div class="col-lg-6"> <div class="card border border"> <div class="card-header bg-dark text-white h2">Login</div> <div class="card-body"> <form method="post" action="<?=base_url().'Login/verify'?>" class="form"> <div class="form-group"> <legend for="username">Username</legend> <input class="form-control" value="<?php if(isset($username)){echo $username;}?>" type="text" name="username"> </div> <div class="form-group"> <legend for="password">Password</legend> <input class="form-control" type="password" name="password"> </div> <center> <div class="form-group"> <a class="link" href="<?=base_url('/Signup')?>">Dont Have Account?</a> </div> <div class="form-group"> <input type="submit" name="submit" class="btn btn-success" value="Login"> </div> </center> </form> </div> <div class="card-footer bg-dark text-white"></div> </div> </div> </div> <?php require 'footer.php'; ?>
27.595745
80
0.560524
6e34b8e0534f44906c8b1076f7ce055aefb562f2
5,284
html
HTML
examples/microdataTemplater/templaterTest.html
termi/Microdata-JS
17a928f0a1d6509d28c4008e67332c81514f1bfe
[ "MIT" ]
16
2015-02-25T19:47:31.000Z
2021-01-10T18:02:29.000Z
examples/microdataTemplater/templaterTest.html
termi/Microdata-JS
17a928f0a1d6509d28c4008e67332c81514f1bfe
[ "MIT" ]
null
null
null
examples/microdataTemplater/templaterTest.html
termi/Microdata-JS
17a928f0a1d6509d28c4008e67332c81514f1bfe
[ "MIT" ]
3
2016-05-05T12:05:59.000Z
2017-06-22T10:44:27.000Z
<!DOCTYPE html> <html> <head> <style> </style> <!--[if IE 8]> <script src="http://h123.ru/js/a.ie8.js"></script> <![endif]--> <script src="http://h123.ru/js/a.js"></script> <script src=../../__SRC/microdata-js.js></script> <script src="Date.prototype.format.js"></script> <!--script src=../../__SRC/microdata-js.js></script--> <script src=microdataTemplater.js?4></script> <script> window.addEventListener("load", function() { var global = this; function _isEmptyElement(element) { var isEmpty = !element.firstChild, i = 0; if(!isEmpty) { isEmpty = true; while((el = element.childNodes[i++]) && isEmpty) isEmpty = el.nodeType === 3 && el.nodeValue.trim() === ""; } return isEmpty; } var data = { account : { id : 15654, name : "George Nikolaev", nick : "termi" }, messages : [ { from : { id : 42134, name : "Yusupov Andry", nick : "sidor" }, body : "Hi to <b>all</b>!!!" }, { from : { id : 325, name : "Yusupov Andry", nick : "sidor" }, body : "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat." }, { from : { id : 512351, name : "Vasa Shtovich", nick : "vazelin" }, body : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." }, { from : { id : 51234151, name : "Chpreha Ugorgy", nick : "sochfgy" }, body : "Quis autem vel eum iure reprehenderit, qui in ea voluptate velit esse, quam nihil molestiae consequatur, vel illum, qui dolorem eum fugiat, quo voluptas nulla pariatur?" }, { from : { id : 95679, name : "Tyhon Gurgen", nick : "gora" }, body : "Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio, cumque nihil impedit, quo minus id, quod maxime placeat, facere possimus, omnis voluptas assumenda est, omnis dolor repellendus." } ] } global.microdataTemplate.init(); var /** @type {Node} */ chatTemplate = document.getItems("myschema.com/Chat"), curData = data; if(chatTemplate) Array.from(chatTemplate).forEach(function(itt) { if(!(_isEmptyElement(itt))) global.microdataTemplate.setItem(itt, curData); else { var btn = document.createElement("button"); btn.innerHTML = "Parse Remote teamplate"; btn.onclick = function() { itt.innerHTML = ""; global.microdataTemplate.setItem(itt, curData); } itt.appendChild(btn); } }); }, false); </script> </head> <body> <object id="djfghskjdfhgkjshkdfgh" CLASSID="clsid:028E47E6-47F6-4a47-9BAA-D5C81759C64C" width="0" height="0" data="http://static.onlf.ru/js/test.htc"></object> <section itemscope itemtype="myschema.com/Chat" id=test> <header> <img itemprop=account.avatar data-tmpl-options='{"itemprop":"account.id GLOBAL.date?format=HHMMss","source":"data-src"}' data-src="i/av/#account.id#.jpg?#GLOBAL.date#" alt=Аватара> <p><span itemprop=account.name></span> (<span itemprop=account.nick></span>) <p itemprop=create_date data-tmpl-options='{"itemprop":"GLOBAL.date?format=dd_mm_yy_HH:MM:ss&update=1000"}'> </header> <ul class="data"> <li itemprop=messages itemscope itemtype="myschema.com/ChatMessage" itemid="uuid:#from.id#:chat:message?datestamp=#GLOBAL.date#" data-tmpl-options='{"itemprop":"from.id GLOBAL.date?format=dd_mm.yyyy_HHMMss","source":"itemid","target":"itemid"}'> <span itemprop=from.name> Message from #from.name# (<span itemprop="from.nick"></span>) </span> <div itemprop=body> </ul> </section> Remote teamplate test (<b style="color:red">put files for you server for work</b>): <section itemscope itemtype="myschema.com/Chat" itemid="http://localhost/Microdata-JS/examples/microdataTemplater/tmpl.txt#testRemoteSection"> </section> <p> </p> <section itemscope itemtype="myschema.com/Chat" id="test_ppp"> <header> ID:<p itemprop=account.id[]>#account.id#<span>|</span></p> <img itemprop=account.avatar data-tmpl-options='{"itemprop":"account.id","source":"data-src"}' data-src="i/av/#account.id#.jpg" alt=Аватара> <p><span itemprop=account.name>Name is #account.name# nick is(<b itemprop=account.nick></b>)</span> <p itemprop="account.name account.nick">TEST:Name: #account.name# | Nick:(#account.nick#) </header> <ul class="data"> <li itemprop=messages itemscope itemtype="myschema.com/ChatMessage" id=kkkk> <span itemprop=from.name> TODO:: <x-if itemprop=from.name expression="from.name.length>6"> STATE 1 !!! :: Message from #from.name# (<span itemprop="from.nick"></span>) </x-if> <x-else> OLOLO STATE 2 !!! :: <span itemprop="from.nick"></span> - #from.name# </x-else> </span> <div itemprop=body> </li> <x-if id=ttt2 itemprop=messages expression="messages.iteration==2"> <div>2</div> </x-if> <x-elseif itemprop=messages expression="messages.iteration%3==0"> <hr /> </x-elseif> <x-else> <span>|</span> </x-else> </ul> <footer> <p>New message:</p> <textarea></textarea> <div class="btns"> <p data-action=send>Send <p data-action=attch_file>Attache file<!-- TODO --> <p data-action=smiles>:)
29.032967
256
0.647994
11ec76ad9d33f96f4c688cb9ba75e1f58b5ca886
3,577
rs
Rust
openfmb-messages-ext/src/generation/status.rs
openenergysolutions/openfmb-rs
ffe79b2bc68afb9b59abfce74265ec1a4e6b8087
[ "Apache-2.0", "BSD-3-Clause" ]
2
2021-08-20T12:14:08.000Z
2021-12-30T16:16:43.000Z
openfmb-messages-ext/src/generation/status.rs
openenergysolutions/openfmb-rs
ffe79b2bc68afb9b59abfce74265ec1a4e6b8087
[ "Apache-2.0", "BSD-3-Clause" ]
3
2021-07-29T21:18:29.000Z
2021-08-20T16:55:57.000Z
openfmb-messages-ext/src/generation/status.rs
openenergysolutions/openfmb-rs
ffe79b2bc68afb9b59abfce74265ec1a4e6b8087
[ "Apache-2.0", "BSD-3-Clause" ]
null
null
null
// SPDX-FileCopyrightText: 2021 Open Energy Solutions Inc // // SPDX-License-Identifier: Apache-2.0 use crate::StatusProfileExt; use std::str::FromStr; use generationmodule::GenerationStatusProfile; use openfmb_messages::{ commonmodule::{MessageInfo, StatusMessageInfo}, *, }; use snafu::{OptionExt, ResultExt}; use uuid::Uuid; use crate::{error::*, OpenFMBExt, OpenFMBExtStatus}; use openfmb_messages::commonmodule::StateKind; impl OpenFMBExt for GenerationStatusProfile { fn device_state(&self) -> OpenFMBResult<String> { match self .generation_status .as_ref() .context(NoGenerationStatus)? .generation_status_zgen .as_ref() .context(NoGenerationStatusZGen)? .generation_event_and_status_zgen .as_ref() .context(NoGenerationEventAndStatusZGen)? .point_status .as_ref() .context(NoPointStatus)? .state .as_ref() .context(NoState) { Ok(state) => match state.value { 0 => Ok("Undefined".into()), 1 => Ok("Off".into()), 2 => Ok("On".into()), 3 => Ok("StandBy".into()), _ => Err(OpenFMBError::InvalidValue), }, Err(_) => Err(OpenFMBError::InvalidOpenFMBMessage), } } fn message_info(&self) -> OpenFMBResult<&MessageInfo> { Ok(self .status_message_info .as_ref() .context(NoStatusMessageInfo)? .message_info .as_ref() .context(NoMessageInfo)?) } fn message_type(&self) -> OpenFMBResult<String> { Ok("GenerationStatusProfile".to_string()) } fn device_mrid(&self) -> OpenFMBResult<Uuid> { Ok(Uuid::from_str( &self .generating_unit .as_ref() .context(NoGeneratingUnit)? .conducting_equipment .as_ref() .context(NoConductingEquipment)? .m_rid, ) .context(UuidError)?) } fn device_name(&self) -> OpenFMBResult<String> { Ok(self .generating_unit .as_ref() .context(NoGeneratingUnit)? .conducting_equipment .as_ref() .context(NoConductingEquipment)? .named_object .as_ref() .context(NoNamedObject)? .name .clone() .context(NoName)?) } } impl OpenFMBExtStatus for GenerationStatusProfile { fn status_message_info(&self) -> OpenFMBResult<&StatusMessageInfo> { Ok(self .status_message_info .as_ref() .context(NoStatusMessageInfo)?) } } pub trait GenerationStatusExt: StatusProfileExt { fn generation_status(&self) -> OpenFMBResult<StateKind>; } impl GenerationStatusExt for GenerationStatusProfile { fn generation_status(&self) -> OpenFMBResult<StateKind> { { Ok(self .generation_status .clone() .context(NoGenerationStatus)? .generation_status_zgen .context(NoGenerationStatusZGen)? .generation_event_and_status_zgen .unwrap() .point_status .unwrap() .state .unwrap() .value()) } } } impl StatusProfileExt for GenerationStatusProfile {}
27.945313
72
0.542913
99513bd8b7e902a6cac976a882c23d1b9a41a61e
673
h
C
Frameworks/LinkPresentation.framework/Headers/LPYouTubePlayerScriptMessageHandler.h
CarlAmbroselli/barcelona
9bd087575935485a4c26674c2414d7ef20d7e168
[ "Apache-2.0" ]
13
2021-08-12T22:57:13.000Z
2022-03-09T16:45:52.000Z
Frameworks/LinkPresentation.framework/Headers/LPYouTubePlayerScriptMessageHandler.h
CarlAmbroselli/barcelona
9bd087575935485a4c26674c2414d7ef20d7e168
[ "Apache-2.0" ]
20
2021-09-03T13:38:34.000Z
2022-03-17T13:24:39.000Z
Frameworks/LinkPresentation.framework/Headers/LPYouTubePlayerScriptMessageHandler.h
CarlAmbroselli/barcelona
9bd087575935485a4c26674c2414d7ef20d7e168
[ "Apache-2.0" ]
2
2022-02-13T08:35:11.000Z
2022-03-17T01:56:47.000Z
// // Generated by class-dump 3.5 (64 bit). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. // #import <Foundation/Foundation.h> #import "WKScriptMessageHandler.h" @class LPYouTubePlayerView, NSString; @interface LPYouTubePlayerScriptMessageHandler : NSObject { LPYouTubePlayerView *_playerView; } - (void)userContentController:(id)arg1 didReceiveScriptMessage:(id)arg2; - (id)initWithPlayerView:(id)arg1; // Remaining properties @property(readonly, copy) NSString *debugDescription; @property(readonly, copy) NSString *description; @property(readonly) unsigned long hash; @property(readonly) Class superclass; @end
21.709677
83
0.756315
dcb8e444d9427d1e6bb27328592233177d408a03
4,166
lua
Lua
Creativity App/Client/login_check.lua
bodily11/personal_projects
f2aa4214773f3876d63f23923d867d71093801ec
[ "MIT" ]
1
2018-06-15T12:20:03.000Z
2018-06-15T12:20:03.000Z
Creativity App/Client/login_check.lua
bodily11/personal_projects
f2aa4214773f3876d63f23923d867d71093801ec
[ "MIT" ]
null
null
null
Creativity App/Client/login_check.lua
bodily11/personal_projects
f2aa4214773f3876d63f23923d867d71093801ec
[ "MIT" ]
null
null
null
local composer = require( "composer" ) local mui = require( "materialui.mui" ) local scene = composer.newScene() local loadsave = require( "loadsave" ) local json = require( "json" ) -- ----------------------------------------------------------------------------------- -- Code outside of the scene event functions below will only be executed ONCE unless -- the scene is removed entirely (not recycled) via "composer.removeScene()" -- ----------------------------------------------------------------------------------- -- ----------------------------------------------------------------------------------- -- Scene event functions -- ----------------------------------------------------------------------------------- -- create() function scene:create( event ) local sceneGroup = self.view mui.init() display.setDefault("background", 0,0,0) background = display.newRect( 0, 0, display.contentWidth, display.contentHeight) background.anchorX = 0 background.anchorY = 0 background.x, background.y = 0, 0 background:setFillColor( 0,0.6,1,1 ) sceneGroup:insert( background ) function string.urlEncode( str ) if ( str ) then str = string.gsub( str, "\n", "\r\n" ) str = string.gsub( str, "([^%w ])", function (c) return string.format( "%%%02X", string.byte(c) ) end ) str = string.gsub( str, " ", "+" ) end return str end function checkLocalSession() if loadsave.loadTable("userSession.json") then error() end end if not pcall(checkLocalSession) then userSession = loadsave.loadTable("userSession.json") local function networkListener23( event ) if ( event.isError ) then print( "Network error: ", event.response ) elseif ( json.decode(event.response)['responseMessage'] ) == "Session Check Successful" then composer.gotoScene("menu", { effect = "crossFade", time = 500 } ) end end local headers = {} headers["Content-Type"] = "application/x-www-form-urlencoded" headers["Accept-Language"] = "en-US" print(userSession.username) print(userSession.apiKey) local body = "username=" .. userSession.username:urlEncode() .. "&apiKey=" .. userSession.apiKey:urlEncode() local params = {} params.headers = headers params.body = body network.request( "https://yourcreativitygym.com/checksession", "POST", networkListener23, params ) else composer.gotoScene("login", { effect = "crossFade", time = 500 } ) end end -- show() function scene:show( event ) local sceneGroup = self.view local phase = event.phase local params = event.params if ( phase == "will" ) then -- Code here runs when the scene is still off screen (but is about to come on screen) elseif ( phase == "did" ) then -- Code here runs when the scene is entirely on screen end end -- hide() function scene:hide( event ) local sceneGroup = self.view local phase = event.phase if ( phase == "will" ) then -- Code here runs when the scene is on screen (but is about to go off screen) elseif ( phase == "did" ) then -- Code here runs immediately after the scene goes entirely off screen end end -- destroy() function scene:destroy( event ) local sceneGroup = self.view composer.removeScene("login_check") mui.destroy() -- Code here runs prior to the removal of scene's view end -- ----------------------------------------------------------------------------------- -- Scene event function listeners -- ----------------------------------------------------------------------------------- scene:addEventListener( "create", scene ) scene:addEventListener( "show", scene ) scene:addEventListener( "hide", scene ) scene:addEventListener( "destroy", scene ) -- ----------------------------------------------------------------------------------- return scene
31.323308
116
0.524004
bf317230841dd27d9fb5119cc916fdcf23974cd3
2,905
rs
Rust
rust/opendp/src/trans/sum.rs
ChristianLebeda/opendp
7550cab363797163816ece07aafebeb5a4f54269
[ "MIT" ]
null
null
null
rust/opendp/src/trans/sum.rs
ChristianLebeda/opendp
7550cab363797163816ece07aafebeb5a4f54269
[ "MIT" ]
null
null
null
rust/opendp/src/trans/sum.rs
ChristianLebeda/opendp
7550cab363797163816ece07aafebeb5a4f54269
[ "MIT" ]
null
null
null
use std::cmp::Ordering; use std::collections::Bound; use std::iter::Sum; use std::ops::Sub; use crate::core::{Function, StabilityRelation, Transformation}; use crate::dist::{SymmetricDistance, AbsoluteDistance}; use crate::dom::{AllDomain, IntervalDomain, SizedDomain, VectorDomain}; use crate::error::*; use crate::traits::{Abs, DistanceConstant}; fn max<T: PartialOrd>(a: T, b: T) -> Option<T> { a.partial_cmp(&b).map(|o| if let Ordering::Less = o {b} else {a}) } pub fn make_bounded_sum<T>( lower: T, upper: T ) -> Fallible<Transformation<VectorDomain<IntervalDomain<T>>, AllDomain<T>, SymmetricDistance, AbsoluteDistance<T>>> where T: DistanceConstant + Sub<Output=T> + Abs, for <'a> T: Sum<&'a T> { Ok(Transformation::new( VectorDomain::new(IntervalDomain::new( Bound::Included(lower.clone()), Bound::Included(upper.clone()))?), AllDomain::new(), Function::new(|arg: &Vec<T>| arg.iter().sum()), SymmetricDistance::default(), AbsoluteDistance::default(), StabilityRelation::new_from_constant(max(lower.abs(), upper.abs()) .ok_or_else(|| err!(InvalidDistance, "lower and upper must be comparable"))?))) } pub fn make_bounded_sum_n<T>( lower: T, upper: T, length: usize ) -> Fallible<Transformation<SizedDomain<VectorDomain<IntervalDomain<T>>>, AllDomain<T>, SymmetricDistance, AbsoluteDistance<T>>> where T: DistanceConstant + Sub<Output=T>, for <'a> T: Sum<&'a T> { Ok(Transformation::new( SizedDomain::new(VectorDomain::new(IntervalDomain::new( Bound::Included(lower.clone()), Bound::Included(upper.clone()))?), length), AllDomain::new(), Function::new(|arg: &Vec<T>| arg.iter().sum()), SymmetricDistance::default(), AbsoluteDistance::default(), // d_out >= d_in * (M - m) / 2 StabilityRelation::new_from_constant((upper - lower) / T::distance_cast(2)?))) } #[cfg(test)] mod tests { use super::*; #[test] fn test_make_bounded_sum_l1() { let transformation = make_bounded_sum::<i32>(0, 10).unwrap_test(); let arg = vec![1, 2, 3, 4, 5]; let ret = transformation.function.eval(&arg).unwrap_test(); let expected = 15; assert_eq!(ret, expected); } #[test] fn test_make_bounded_sum_l2() { let transformation = make_bounded_sum::<i32>(0, 10).unwrap_test(); let arg = vec![1, 2, 3, 4, 5]; let ret = transformation.function.eval(&arg).unwrap_test(); let expected = 15; assert_eq!(ret, expected); } #[test] fn test_make_bounded_sum_n() { let transformation = make_bounded_sum_n::<i32>(0, 10, 5).unwrap_test(); let arg = vec![1, 2, 3, 4, 5]; let ret = transformation.function.eval(&arg).unwrap_test(); let expected = 15; assert_eq!(ret, expected); } }
35.426829
129
0.622719
5c0dff429a6f6b43b02189da6f3894c10005c6a6
69,955
asm
Assembly
ffmpeg.js/libavcodec/x86/h264_intrapred.asm
vivekjishtu/audioconverter.js
803d516a1238dd1ad7738c851a99737007f95cb5
[ "BSD-3-Clause" ]
82
2015-01-18T08:41:47.000Z
2022-02-08T19:23:19.000Z
FFmpeg-build/ffmpeg/libavcodec/x86/h264_intrapred.asm
hetissimpel/radioformac
af3145d12d88b925892937ecdac95d12b6439fda
[ "MIT" ]
5
2015-01-24T13:07:23.000Z
2021-03-19T13:37:17.000Z
FFmpeg-build/ffmpeg/libavcodec/x86/h264_intrapred.asm
hetissimpel/radioformac
af3145d12d88b925892937ecdac95d12b6439fda
[ "MIT" ]
25
2015-01-25T14:52:03.000Z
2021-09-05T23:59:49.000Z
;****************************************************************************** ;* H.264 intra prediction asm optimizations ;* Copyright (c) 2010 Jason Garrett-Glaser ;* Copyright (c) 2010 Holger Lubitz ;* Copyright (c) 2010 Loren Merritt ;* Copyright (c) 2010 Ronald S. Bultje ;* ;* This file is part of FFmpeg. ;* ;* FFmpeg is free software; you can redistribute it and/or ;* modify it under the terms of the GNU Lesser General Public ;* License as published by the Free Software Foundation; either ;* version 2.1 of the License, or (at your option) any later version. ;* ;* FFmpeg 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 ;* Lesser General Public License for more details. ;* ;* You should have received a copy of the GNU Lesser General Public ;* License along with FFmpeg; if not, write to the Free Software ;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ;****************************************************************************** %include "libavutil/x86/x86util.asm" SECTION_RODATA tm_shuf: times 8 db 0x03, 0x80 pw_ff00: times 8 dw 0xff00 plane_shuf: db -8, -7, -6, -5, -4, -3, -2, -1 db 1, 2, 3, 4, 5, 6, 7, 8 plane8_shuf: db -4, -3, -2, -1, 0, 0, 0, 0 db 1, 2, 3, 4, 0, 0, 0, 0 pw_0to7: dw 0, 1, 2, 3, 4, 5, 6, 7 pw_1to8: dw 1, 2, 3, 4, 5, 6, 7, 8 pw_m8tom1: dw -8, -7, -6, -5, -4, -3, -2, -1 pw_m4to4: dw -4, -3, -2, -1, 1, 2, 3, 4 SECTION .text cextern pb_1 cextern pb_3 cextern pw_4 cextern pw_5 cextern pw_8 cextern pw_16 cextern pw_17 cextern pw_32 ;----------------------------------------------------------------------------- ; void pred16x16_vertical_8(uint8_t *src, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmx cglobal pred16x16_vertical_8, 2,3 sub r0, r1 mov r2, 8 movq mm0, [r0+0] movq mm1, [r0+8] .loop: movq [r0+r1*1+0], mm0 movq [r0+r1*1+8], mm1 movq [r0+r1*2+0], mm0 movq [r0+r1*2+8], mm1 lea r0, [r0+r1*2] dec r2 jg .loop REP_RET INIT_XMM sse cglobal pred16x16_vertical_8, 2,3 sub r0, r1 mov r2, 4 movaps xmm0, [r0] .loop: movaps [r0+r1*1], xmm0 movaps [r0+r1*2], xmm0 lea r0, [r0+r1*2] movaps [r0+r1*1], xmm0 movaps [r0+r1*2], xmm0 lea r0, [r0+r1*2] dec r2 jg .loop REP_RET ;----------------------------------------------------------------------------- ; void pred16x16_horizontal_8(uint8_t *src, int stride) ;----------------------------------------------------------------------------- %macro PRED16x16_H 0 cglobal pred16x16_horizontal_8, 2,3 mov r2, 8 %if cpuflag(ssse3) mova m2, [pb_3] %endif .loop: movd m0, [r0+r1*0-4] movd m1, [r0+r1*1-4] %if cpuflag(ssse3) pshufb m0, m2 pshufb m1, m2 %else punpcklbw m0, m0 punpcklbw m1, m1 SPLATW m0, m0, 3 SPLATW m1, m1, 3 mova [r0+r1*0+8], m0 mova [r0+r1*1+8], m1 %endif mova [r0+r1*0], m0 mova [r0+r1*1], m1 lea r0, [r0+r1*2] dec r2 jg .loop REP_RET %endmacro INIT_MMX mmx PRED16x16_H INIT_MMX mmxext PRED16x16_H INIT_XMM ssse3 PRED16x16_H ;----------------------------------------------------------------------------- ; void pred16x16_dc_8(uint8_t *src, int stride) ;----------------------------------------------------------------------------- %macro PRED16x16_DC 0 cglobal pred16x16_dc_8, 2,7 mov r4, r0 sub r0, r1 pxor mm0, mm0 pxor mm1, mm1 psadbw mm0, [r0+0] psadbw mm1, [r0+8] dec r0 movzx r5d, byte [r0+r1*1] paddw mm0, mm1 movd r6d, mm0 lea r0, [r0+r1*2] %rep 7 movzx r2d, byte [r0+r1*0] movzx r3d, byte [r0+r1*1] add r5d, r2d add r6d, r3d lea r0, [r0+r1*2] %endrep movzx r2d, byte [r0+r1*0] add r5d, r6d lea r2d, [r2+r5+16] shr r2d, 5 %if cpuflag(ssse3) pxor m1, m1 %endif SPLATB_REG m0, r2, m1 %if mmsize==8 mov r3d, 8 .loop: mova [r4+r1*0+0], m0 mova [r4+r1*0+8], m0 mova [r4+r1*1+0], m0 mova [r4+r1*1+8], m0 %else mov r3d, 4 .loop: mova [r4+r1*0], m0 mova [r4+r1*1], m0 lea r4, [r4+r1*2] mova [r4+r1*0], m0 mova [r4+r1*1], m0 %endif lea r4, [r4+r1*2] dec r3d jg .loop REP_RET %endmacro INIT_MMX mmxext PRED16x16_DC INIT_XMM sse2 PRED16x16_DC INIT_XMM ssse3 PRED16x16_DC ;----------------------------------------------------------------------------- ; void pred16x16_tm_vp8_8(uint8_t *src, int stride) ;----------------------------------------------------------------------------- %macro PRED16x16_TM 0 cglobal pred16x16_tm_vp8_8, 2,5 sub r0, r1 pxor mm7, mm7 movq mm0, [r0+0] movq mm2, [r0+8] movq mm1, mm0 movq mm3, mm2 punpcklbw mm0, mm7 punpckhbw mm1, mm7 punpcklbw mm2, mm7 punpckhbw mm3, mm7 movzx r3d, byte [r0-1] mov r4d, 16 .loop: movzx r2d, byte [r0+r1-1] sub r2d, r3d movd mm4, r2d SPLATW mm4, mm4, 0 movq mm5, mm4 movq mm6, mm4 movq mm7, mm4 paddw mm4, mm0 paddw mm5, mm1 paddw mm6, mm2 paddw mm7, mm3 packuswb mm4, mm5 packuswb mm6, mm7 movq [r0+r1+0], mm4 movq [r0+r1+8], mm6 add r0, r1 dec r4d jg .loop REP_RET %endmacro INIT_MMX mmx PRED16x16_TM INIT_MMX mmxext PRED16x16_TM INIT_XMM sse2 cglobal pred16x16_tm_vp8_8, 2,6,6 sub r0, r1 pxor xmm2, xmm2 movdqa xmm0, [r0] movdqa xmm1, xmm0 punpcklbw xmm0, xmm2 punpckhbw xmm1, xmm2 movzx r4d, byte [r0-1] mov r5d, 8 .loop: movzx r2d, byte [r0+r1*1-1] movzx r3d, byte [r0+r1*2-1] sub r2d, r4d sub r3d, r4d movd xmm2, r2d movd xmm4, r3d pshuflw xmm2, xmm2, 0 pshuflw xmm4, xmm4, 0 punpcklqdq xmm2, xmm2 punpcklqdq xmm4, xmm4 movdqa xmm3, xmm2 movdqa xmm5, xmm4 paddw xmm2, xmm0 paddw xmm3, xmm1 paddw xmm4, xmm0 paddw xmm5, xmm1 packuswb xmm2, xmm3 packuswb xmm4, xmm5 movdqa [r0+r1*1], xmm2 movdqa [r0+r1*2], xmm4 lea r0, [r0+r1*2] dec r5d jg .loop REP_RET ;----------------------------------------------------------------------------- ; void pred16x16_plane_*_8(uint8_t *src, int stride) ;----------------------------------------------------------------------------- %macro H264_PRED16x16_PLANE 1 cglobal pred16x16_plane_%1_8, 2,9,7 mov r2, r1 ; +stride neg r1 ; -stride movh m0, [r0+r1 -1] %if mmsize == 8 pxor m4, m4 movh m1, [r0+r1 +3 ] movh m2, [r0+r1 +8 ] movh m3, [r0+r1 +12] punpcklbw m0, m4 punpcklbw m1, m4 punpcklbw m2, m4 punpcklbw m3, m4 pmullw m0, [pw_m8tom1 ] pmullw m1, [pw_m8tom1+8] pmullw m2, [pw_1to8 ] pmullw m3, [pw_1to8 +8] paddw m0, m2 paddw m1, m3 %else ; mmsize == 16 %if cpuflag(ssse3) movhps m0, [r0+r1 +8] pmaddubsw m0, [plane_shuf] ; H coefficients %else ; sse2 pxor m2, m2 movh m1, [r0+r1 +8] punpcklbw m0, m2 punpcklbw m1, m2 pmullw m0, [pw_m8tom1] pmullw m1, [pw_1to8] paddw m0, m1 %endif movhlps m1, m0 %endif paddw m0, m1 %if cpuflag(mmxext) PSHUFLW m1, m0, 0xE %elif cpuflag(mmx) mova m1, m0 psrlq m1, 32 %endif paddw m0, m1 %if cpuflag(mmxext) PSHUFLW m1, m0, 0x1 %elif cpuflag(mmx) mova m1, m0 psrlq m1, 16 %endif paddw m0, m1 ; sum of H coefficients lea r4, [r0+r2*8-1] lea r3, [r0+r2*4-1] add r4, r2 %if ARCH_X86_64 %define e_reg r8 %else %define e_reg r0 %endif movzx e_reg, byte [r3+r2*2 ] movzx r5, byte [r4+r1 ] sub r5, e_reg movzx e_reg, byte [r3+r2 ] movzx r6, byte [r4 ] sub r6, e_reg lea r5, [r5+r6*2] movzx e_reg, byte [r3+r1 ] movzx r6, byte [r4+r2*2 ] sub r6, e_reg lea r5, [r5+r6*4] movzx e_reg, byte [r3 ] %if ARCH_X86_64 movzx r7, byte [r4+r2 ] sub r7, e_reg %else movzx r6, byte [r4+r2 ] sub r6, e_reg lea r5, [r5+r6*4] sub r5, r6 %endif lea e_reg, [r3+r1*4] lea r3, [r4+r2*4] movzx r4, byte [e_reg+r2 ] movzx r6, byte [r3 ] sub r6, r4 %if ARCH_X86_64 lea r6, [r7+r6*2] lea r5, [r5+r6*2] add r5, r6 %else lea r5, [r5+r6*4] lea r5, [r5+r6*2] %endif movzx r4, byte [e_reg ] %if ARCH_X86_64 movzx r7, byte [r3 +r2 ] sub r7, r4 sub r5, r7 %else movzx r6, byte [r3 +r2 ] sub r6, r4 lea r5, [r5+r6*8] sub r5, r6 %endif movzx r4, byte [e_reg+r1 ] movzx r6, byte [r3 +r2*2] sub r6, r4 %if ARCH_X86_64 add r6, r7 %endif lea r5, [r5+r6*8] movzx r4, byte [e_reg+r2*2] movzx r6, byte [r3 +r1 ] sub r6, r4 lea r5, [r5+r6*4] add r5, r6 ; sum of V coefficients %if ARCH_X86_64 == 0 mov r0, r0m %endif %ifidn %1, h264 lea r5, [r5*5+32] sar r5, 6 %elifidn %1, rv40 lea r5, [r5*5] sar r5, 6 %elifidn %1, svq3 test r5, r5 lea r6, [r5+3] cmovs r5, r6 sar r5, 2 ; V/4 lea r5, [r5*5] ; 5*(V/4) test r5, r5 lea r6, [r5+15] cmovs r5, r6 sar r5, 4 ; (5*(V/4))/16 %endif movzx r4, byte [r0+r1 +15] movzx r3, byte [r3+r2*2 ] lea r3, [r3+r4+1] shl r3, 4 movd r1d, m0 movsx r1d, r1w %ifnidn %1, svq3 %ifidn %1, h264 lea r1d, [r1d*5+32] %else ; rv40 lea r1d, [r1d*5] %endif sar r1d, 6 %else ; svq3 test r1d, r1d lea r4d, [r1d+3] cmovs r1d, r4d sar r1d, 2 ; H/4 lea r1d, [r1d*5] ; 5*(H/4) test r1d, r1d lea r4d, [r1d+15] cmovs r1d, r4d sar r1d, 4 ; (5*(H/4))/16 %endif movd m0, r1d add r1d, r5d add r3d, r1d shl r1d, 3 sub r3d, r1d ; a movd m1, r5d movd m3, r3d SPLATW m0, m0, 0 ; H SPLATW m1, m1, 0 ; V SPLATW m3, m3, 0 ; a %ifidn %1, svq3 SWAP 0, 1 %endif mova m2, m0 %if mmsize == 8 mova m5, m0 %endif pmullw m0, [pw_0to7] ; 0*H, 1*H, ..., 7*H (words) %if mmsize == 16 psllw m2, 3 %else psllw m5, 3 psllw m2, 2 mova m6, m5 paddw m6, m2 %endif paddw m0, m3 ; a + {0,1,2,3,4,5,6,7}*H paddw m2, m0 ; a + {8,9,10,11,12,13,14,15}*H %if mmsize == 8 paddw m5, m0 ; a + {8,9,10,11}*H paddw m6, m0 ; a + {12,13,14,15}*H %endif mov r4, 8 .loop: mova m3, m0 ; b[0..7] mova m4, m2 ; b[8..15] psraw m3, 5 psraw m4, 5 packuswb m3, m4 mova [r0], m3 %if mmsize == 8 mova m3, m5 ; b[8..11] mova m4, m6 ; b[12..15] psraw m3, 5 psraw m4, 5 packuswb m3, m4 mova [r0+8], m3 %endif paddw m0, m1 paddw m2, m1 %if mmsize == 8 paddw m5, m1 paddw m6, m1 %endif mova m3, m0 ; b[0..7] mova m4, m2 ; b[8..15] psraw m3, 5 psraw m4, 5 packuswb m3, m4 mova [r0+r2], m3 %if mmsize == 8 mova m3, m5 ; b[8..11] mova m4, m6 ; b[12..15] psraw m3, 5 psraw m4, 5 packuswb m3, m4 mova [r0+r2+8], m3 %endif paddw m0, m1 paddw m2, m1 %if mmsize == 8 paddw m5, m1 paddw m6, m1 %endif lea r0, [r0+r2*2] dec r4 jg .loop REP_RET %endmacro INIT_MMX mmx H264_PRED16x16_PLANE h264 H264_PRED16x16_PLANE rv40 H264_PRED16x16_PLANE svq3 INIT_MMX mmxext H264_PRED16x16_PLANE h264 H264_PRED16x16_PLANE rv40 H264_PRED16x16_PLANE svq3 INIT_XMM sse2 H264_PRED16x16_PLANE h264 H264_PRED16x16_PLANE rv40 H264_PRED16x16_PLANE svq3 INIT_XMM ssse3 H264_PRED16x16_PLANE h264 H264_PRED16x16_PLANE rv40 H264_PRED16x16_PLANE svq3 ;----------------------------------------------------------------------------- ; void pred8x8_plane_8(uint8_t *src, int stride) ;----------------------------------------------------------------------------- %macro H264_PRED8x8_PLANE 0 cglobal pred8x8_plane_8, 2,9,7 mov r2, r1 ; +stride neg r1 ; -stride movd m0, [r0+r1 -1] %if mmsize == 8 pxor m2, m2 movh m1, [r0+r1 +4 ] punpcklbw m0, m2 punpcklbw m1, m2 pmullw m0, [pw_m4to4] pmullw m1, [pw_m4to4+8] %else ; mmsize == 16 %if cpuflag(ssse3) movhps m0, [r0+r1 +4] ; this reads 4 bytes more than necessary pmaddubsw m0, [plane8_shuf] ; H coefficients %else ; sse2 pxor m2, m2 movd m1, [r0+r1 +4] punpckldq m0, m1 punpcklbw m0, m2 pmullw m0, [pw_m4to4] %endif movhlps m1, m0 %endif paddw m0, m1 %if notcpuflag(ssse3) %if cpuflag(mmxext) PSHUFLW m1, m0, 0xE %elif cpuflag(mmx) mova m1, m0 psrlq m1, 32 %endif paddw m0, m1 %endif ; !ssse3 %if cpuflag(mmxext) PSHUFLW m1, m0, 0x1 %elif cpuflag(mmx) mova m1, m0 psrlq m1, 16 %endif paddw m0, m1 ; sum of H coefficients lea r4, [r0+r2*4-1] lea r3, [r0 -1] add r4, r2 %if ARCH_X86_64 %define e_reg r8 %else %define e_reg r0 %endif movzx e_reg, byte [r3+r2*2 ] movzx r5, byte [r4+r1 ] sub r5, e_reg movzx e_reg, byte [r3 ] %if ARCH_X86_64 movzx r7, byte [r4+r2 ] sub r7, e_reg sub r5, r7 %else movzx r6, byte [r4+r2 ] sub r6, e_reg lea r5, [r5+r6*4] sub r5, r6 %endif movzx e_reg, byte [r3+r1 ] movzx r6, byte [r4+r2*2 ] sub r6, e_reg %if ARCH_X86_64 add r6, r7 %endif lea r5, [r5+r6*4] movzx e_reg, byte [r3+r2 ] movzx r6, byte [r4 ] sub r6, e_reg lea r6, [r5+r6*2] lea r5, [r6*9+16] lea r5, [r5+r6*8] sar r5, 5 %if ARCH_X86_64 == 0 mov r0, r0m %endif movzx r3, byte [r4+r2*2 ] movzx r4, byte [r0+r1 +7] lea r3, [r3+r4+1] shl r3, 4 movd r1d, m0 movsx r1d, r1w imul r1d, 17 add r1d, 16 sar r1d, 5 movd m0, r1d add r1d, r5d sub r3d, r1d add r1d, r1d sub r3d, r1d ; a movd m1, r5d movd m3, r3d SPLATW m0, m0, 0 ; H SPLATW m1, m1, 0 ; V SPLATW m3, m3, 0 ; a %if mmsize == 8 mova m2, m0 %endif pmullw m0, [pw_0to7] ; 0*H, 1*H, ..., 7*H (words) paddw m0, m3 ; a + {0,1,2,3,4,5,6,7}*H %if mmsize == 8 psllw m2, 2 paddw m2, m0 ; a + {4,5,6,7}*H %endif mov r4, 4 ALIGN 16 .loop: %if mmsize == 16 mova m3, m0 ; b[0..7] paddw m0, m1 psraw m3, 5 mova m4, m0 ; V+b[0..7] paddw m0, m1 psraw m4, 5 packuswb m3, m4 movh [r0], m3 movhps [r0+r2], m3 %else ; mmsize == 8 mova m3, m0 ; b[0..3] mova m4, m2 ; b[4..7] paddw m0, m1 paddw m2, m1 psraw m3, 5 psraw m4, 5 mova m5, m0 ; V+b[0..3] mova m6, m2 ; V+b[4..7] paddw m0, m1 paddw m2, m1 psraw m5, 5 psraw m6, 5 packuswb m3, m4 packuswb m5, m6 mova [r0], m3 mova [r0+r2], m5 %endif lea r0, [r0+r2*2] dec r4 jg .loop REP_RET %endmacro INIT_MMX mmx H264_PRED8x8_PLANE INIT_MMX mmxext H264_PRED8x8_PLANE INIT_XMM sse2 H264_PRED8x8_PLANE INIT_XMM ssse3 H264_PRED8x8_PLANE ;----------------------------------------------------------------------------- ; void pred8x8_vertical_8(uint8_t *src, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmx cglobal pred8x8_vertical_8, 2,2 sub r0, r1 movq mm0, [r0] %rep 3 movq [r0+r1*1], mm0 movq [r0+r1*2], mm0 lea r0, [r0+r1*2] %endrep movq [r0+r1*1], mm0 movq [r0+r1*2], mm0 RET ;----------------------------------------------------------------------------- ; void pred8x8_horizontal_8(uint8_t *src, int stride) ;----------------------------------------------------------------------------- %macro PRED8x8_H 0 cglobal pred8x8_horizontal_8, 2,3 mov r2, 4 %if cpuflag(ssse3) mova m2, [pb_3] %endif .loop: SPLATB_LOAD m0, r0+r1*0-1, m2 SPLATB_LOAD m1, r0+r1*1-1, m2 mova [r0+r1*0], m0 mova [r0+r1*1], m1 lea r0, [r0+r1*2] dec r2 jg .loop REP_RET %endmacro INIT_MMX mmx PRED8x8_H INIT_MMX mmxext PRED8x8_H INIT_MMX ssse3 PRED8x8_H ;----------------------------------------------------------------------------- ; void pred8x8_top_dc_8_mmxext(uint8_t *src, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmxext cglobal pred8x8_top_dc_8, 2,5 sub r0, r1 movq mm0, [r0] pxor mm1, mm1 pxor mm2, mm2 lea r2, [r0+r1*2] punpckhbw mm1, mm0 punpcklbw mm0, mm2 psadbw mm1, mm2 ; s1 lea r3, [r2+r1*2] psadbw mm0, mm2 ; s0 psrlw mm1, 1 psrlw mm0, 1 pavgw mm1, mm2 lea r4, [r3+r1*2] pavgw mm0, mm2 pshufw mm1, mm1, 0 pshufw mm0, mm0, 0 ; dc0 (w) packuswb mm0, mm1 ; dc0,dc1 (b) movq [r0+r1*1], mm0 movq [r0+r1*2], mm0 lea r0, [r3+r1*2] movq [r2+r1*1], mm0 movq [r2+r1*2], mm0 movq [r3+r1*1], mm0 movq [r3+r1*2], mm0 movq [r0+r1*1], mm0 movq [r0+r1*2], mm0 RET ;----------------------------------------------------------------------------- ; void pred8x8_dc_8_mmxext(uint8_t *src, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmxext cglobal pred8x8_dc_8, 2,5 sub r0, r1 pxor m7, m7 movd m0, [r0+0] movd m1, [r0+4] psadbw m0, m7 ; s0 mov r4, r0 psadbw m1, m7 ; s1 movzx r2d, byte [r0+r1*1-1] movzx r3d, byte [r0+r1*2-1] lea r0, [r0+r1*2] add r2d, r3d movzx r3d, byte [r0+r1*1-1] add r2d, r3d movzx r3d, byte [r0+r1*2-1] add r2d, r3d lea r0, [r0+r1*2] movd m2, r2d ; s2 movzx r2d, byte [r0+r1*1-1] movzx r3d, byte [r0+r1*2-1] lea r0, [r0+r1*2] add r2d, r3d movzx r3d, byte [r0+r1*1-1] add r2d, r3d movzx r3d, byte [r0+r1*2-1] add r2d, r3d movd m3, r2d ; s3 punpcklwd m0, m1 mov r0, r4 punpcklwd m2, m3 punpckldq m0, m2 ; s0, s1, s2, s3 pshufw m3, m0, 11110110b ; s2, s1, s3, s3 lea r2, [r0+r1*2] pshufw m0, m0, 01110100b ; s0, s1, s3, s1 paddw m0, m3 lea r3, [r2+r1*2] psrlw m0, 2 pavgw m0, m7 ; s0+s2, s1, s3, s1+s3 lea r4, [r3+r1*2] packuswb m0, m0 punpcklbw m0, m0 movq m1, m0 punpcklbw m0, m0 punpckhbw m1, m1 movq [r0+r1*1], m0 movq [r0+r1*2], m0 movq [r2+r1*1], m0 movq [r2+r1*2], m0 movq [r3+r1*1], m1 movq [r3+r1*2], m1 movq [r4+r1*1], m1 movq [r4+r1*2], m1 RET ;----------------------------------------------------------------------------- ; void pred8x8_dc_rv40_8(uint8_t *src, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmxext cglobal pred8x8_dc_rv40_8, 2,7 mov r4, r0 sub r0, r1 pxor mm0, mm0 psadbw mm0, [r0] dec r0 movzx r5d, byte [r0+r1*1] movd r6d, mm0 lea r0, [r0+r1*2] %rep 3 movzx r2d, byte [r0+r1*0] movzx r3d, byte [r0+r1*1] add r5d, r2d add r6d, r3d lea r0, [r0+r1*2] %endrep movzx r2d, byte [r0+r1*0] add r5d, r6d lea r2d, [r2+r5+8] shr r2d, 4 movd mm0, r2d punpcklbw mm0, mm0 pshufw mm0, mm0, 0 mov r3d, 4 .loop: movq [r4+r1*0], mm0 movq [r4+r1*1], mm0 lea r4, [r4+r1*2] dec r3d jg .loop REP_RET ;----------------------------------------------------------------------------- ; void pred8x8_tm_vp8_8(uint8_t *src, int stride) ;----------------------------------------------------------------------------- %macro PRED8x8_TM 0 cglobal pred8x8_tm_vp8_8, 2,6 sub r0, r1 pxor mm7, mm7 movq mm0, [r0] movq mm1, mm0 punpcklbw mm0, mm7 punpckhbw mm1, mm7 movzx r4d, byte [r0-1] mov r5d, 4 .loop: movzx r2d, byte [r0+r1*1-1] movzx r3d, byte [r0+r1*2-1] sub r2d, r4d sub r3d, r4d movd mm2, r2d movd mm4, r3d SPLATW mm2, mm2, 0 SPLATW mm4, mm4, 0 movq mm3, mm2 movq mm5, mm4 paddw mm2, mm0 paddw mm3, mm1 paddw mm4, mm0 paddw mm5, mm1 packuswb mm2, mm3 packuswb mm4, mm5 movq [r0+r1*1], mm2 movq [r0+r1*2], mm4 lea r0, [r0+r1*2] dec r5d jg .loop REP_RET %endmacro INIT_MMX mmx PRED8x8_TM INIT_MMX mmxext PRED8x8_TM INIT_XMM sse2 cglobal pred8x8_tm_vp8_8, 2,6,4 sub r0, r1 pxor xmm1, xmm1 movq xmm0, [r0] punpcklbw xmm0, xmm1 movzx r4d, byte [r0-1] mov r5d, 4 .loop: movzx r2d, byte [r0+r1*1-1] movzx r3d, byte [r0+r1*2-1] sub r2d, r4d sub r3d, r4d movd xmm2, r2d movd xmm3, r3d pshuflw xmm2, xmm2, 0 pshuflw xmm3, xmm3, 0 punpcklqdq xmm2, xmm2 punpcklqdq xmm3, xmm3 paddw xmm2, xmm0 paddw xmm3, xmm0 packuswb xmm2, xmm3 movq [r0+r1*1], xmm2 movhps [r0+r1*2], xmm2 lea r0, [r0+r1*2] dec r5d jg .loop REP_RET INIT_XMM ssse3 cglobal pred8x8_tm_vp8_8, 2,3,6 sub r0, r1 movdqa xmm4, [tm_shuf] pxor xmm1, xmm1 movq xmm0, [r0] punpcklbw xmm0, xmm1 movd xmm5, [r0-4] pshufb xmm5, xmm4 mov r2d, 4 .loop: movd xmm2, [r0+r1*1-4] movd xmm3, [r0+r1*2-4] pshufb xmm2, xmm4 pshufb xmm3, xmm4 psubw xmm2, xmm5 psubw xmm3, xmm5 paddw xmm2, xmm0 paddw xmm3, xmm0 packuswb xmm2, xmm3 movq [r0+r1*1], xmm2 movhps [r0+r1*2], xmm2 lea r0, [r0+r1*2] dec r2d jg .loop REP_RET ; dest, left, right, src, tmp ; output: %1 = (t[n-1] + t[n]*2 + t[n+1] + 2) >> 2 %macro PRED4x4_LOWPASS 5 mova %5, %2 pavgb %2, %3 pxor %3, %5 mova %1, %4 pand %3, [pb_1] psubusb %2, %3 pavgb %1, %2 %endmacro ;----------------------------------------------------------------------------- ; void pred8x8l_top_dc_8(uint8_t *src, int has_topleft, int has_topright, int stride) ;----------------------------------------------------------------------------- %macro PRED8x8L_TOP_DC 0 cglobal pred8x8l_top_dc_8, 4,4 sub r0, r3 pxor mm7, mm7 movq mm0, [r0-8] movq mm3, [r0] movq mm1, [r0+8] movq mm2, mm3 movq mm4, mm3 PALIGNR mm2, mm0, 7, mm0 PALIGNR mm1, mm4, 1, mm4 test r1, r1 ; top_left jz .fix_lt_2 test r2, r2 ; top_right jz .fix_tr_1 jmp .body .fix_lt_2: movq mm5, mm3 pxor mm5, mm2 psllq mm5, 56 psrlq mm5, 56 pxor mm2, mm5 test r2, r2 ; top_right jnz .body .fix_tr_1: movq mm5, mm3 pxor mm5, mm1 psrlq mm5, 56 psllq mm5, 56 pxor mm1, mm5 .body: PRED4x4_LOWPASS mm0, mm2, mm1, mm3, mm5 psadbw mm7, mm0 paddw mm7, [pw_4] psrlw mm7, 3 pshufw mm7, mm7, 0 packuswb mm7, mm7 %rep 3 movq [r0+r3*1], mm7 movq [r0+r3*2], mm7 lea r0, [r0+r3*2] %endrep movq [r0+r3*1], mm7 movq [r0+r3*2], mm7 RET %endmacro INIT_MMX mmxext PRED8x8L_TOP_DC INIT_MMX ssse3 PRED8x8L_TOP_DC ;----------------------------------------------------------------------------- ;void pred8x8l_dc_8(uint8_t *src, int has_topleft, int has_topright, int stride) ;----------------------------------------------------------------------------- %macro PRED8x8L_DC 0 cglobal pred8x8l_dc_8, 4,5 sub r0, r3 lea r4, [r0+r3*2] movq mm0, [r0+r3*1-8] punpckhbw mm0, [r0+r3*0-8] movq mm1, [r4+r3*1-8] punpckhbw mm1, [r0+r3*2-8] mov r4, r0 punpckhwd mm1, mm0 lea r0, [r0+r3*4] movq mm2, [r0+r3*1-8] punpckhbw mm2, [r0+r3*0-8] lea r0, [r0+r3*2] movq mm3, [r0+r3*1-8] punpckhbw mm3, [r0+r3*0-8] punpckhwd mm3, mm2 punpckhdq mm3, mm1 lea r0, [r0+r3*2] movq mm0, [r0+r3*0-8] movq mm1, [r4] mov r0, r4 movq mm4, mm3 movq mm2, mm3 PALIGNR mm4, mm0, 7, mm0 PALIGNR mm1, mm2, 1, mm2 test r1, r1 jnz .do_left .fix_lt_1: movq mm5, mm3 pxor mm5, mm4 psrlq mm5, 56 psllq mm5, 48 pxor mm1, mm5 jmp .do_left .fix_lt_2: movq mm5, mm3 pxor mm5, mm2 psllq mm5, 56 psrlq mm5, 56 pxor mm2, mm5 test r2, r2 jnz .body .fix_tr_1: movq mm5, mm3 pxor mm5, mm1 psrlq mm5, 56 psllq mm5, 56 pxor mm1, mm5 jmp .body .do_left: movq mm0, mm4 PRED4x4_LOWPASS mm2, mm1, mm4, mm3, mm5 movq mm4, mm0 movq mm7, mm2 PRED4x4_LOWPASS mm1, mm3, mm0, mm4, mm5 psllq mm1, 56 PALIGNR mm7, mm1, 7, mm3 movq mm0, [r0-8] movq mm3, [r0] movq mm1, [r0+8] movq mm2, mm3 movq mm4, mm3 PALIGNR mm2, mm0, 7, mm0 PALIGNR mm1, mm4, 1, mm4 test r1, r1 jz .fix_lt_2 test r2, r2 jz .fix_tr_1 .body: lea r1, [r0+r3*2] PRED4x4_LOWPASS mm6, mm2, mm1, mm3, mm5 pxor mm0, mm0 pxor mm1, mm1 lea r2, [r1+r3*2] psadbw mm0, mm7 psadbw mm1, mm6 paddw mm0, [pw_8] paddw mm0, mm1 lea r4, [r2+r3*2] psrlw mm0, 4 pshufw mm0, mm0, 0 packuswb mm0, mm0 movq [r0+r3*1], mm0 movq [r0+r3*2], mm0 movq [r1+r3*1], mm0 movq [r1+r3*2], mm0 movq [r2+r3*1], mm0 movq [r2+r3*2], mm0 movq [r4+r3*1], mm0 movq [r4+r3*2], mm0 RET %endmacro INIT_MMX mmxext PRED8x8L_DC INIT_MMX ssse3 PRED8x8L_DC ;----------------------------------------------------------------------------- ; void pred8x8l_horizontal_8(uint8_t *src, int has_topleft, int has_topright, int stride) ;----------------------------------------------------------------------------- %macro PRED8x8L_HORIZONTAL 0 cglobal pred8x8l_horizontal_8, 4,4 sub r0, r3 lea r2, [r0+r3*2] movq mm0, [r0+r3*1-8] test r1, r1 lea r1, [r0+r3] cmovnz r1, r0 punpckhbw mm0, [r1+r3*0-8] movq mm1, [r2+r3*1-8] punpckhbw mm1, [r0+r3*2-8] mov r2, r0 punpckhwd mm1, mm0 lea r0, [r0+r3*4] movq mm2, [r0+r3*1-8] punpckhbw mm2, [r0+r3*0-8] lea r0, [r0+r3*2] movq mm3, [r0+r3*1-8] punpckhbw mm3, [r0+r3*0-8] punpckhwd mm3, mm2 punpckhdq mm3, mm1 lea r0, [r0+r3*2] movq mm0, [r0+r3*0-8] movq mm1, [r1+r3*0-8] mov r0, r2 movq mm4, mm3 movq mm2, mm3 PALIGNR mm4, mm0, 7, mm0 PALIGNR mm1, mm2, 1, mm2 movq mm0, mm4 PRED4x4_LOWPASS mm2, mm1, mm4, mm3, mm5 movq mm4, mm0 movq mm7, mm2 PRED4x4_LOWPASS mm1, mm3, mm0, mm4, mm5 psllq mm1, 56 PALIGNR mm7, mm1, 7, mm3 movq mm3, mm7 lea r1, [r0+r3*2] movq mm7, mm3 punpckhbw mm3, mm3 punpcklbw mm7, mm7 pshufw mm0, mm3, 0xff pshufw mm1, mm3, 0xaa lea r2, [r1+r3*2] pshufw mm2, mm3, 0x55 pshufw mm3, mm3, 0x00 pshufw mm4, mm7, 0xff pshufw mm5, mm7, 0xaa pshufw mm6, mm7, 0x55 pshufw mm7, mm7, 0x00 movq [r0+r3*1], mm0 movq [r0+r3*2], mm1 movq [r1+r3*1], mm2 movq [r1+r3*2], mm3 movq [r2+r3*1], mm4 movq [r2+r3*2], mm5 lea r0, [r2+r3*2] movq [r0+r3*1], mm6 movq [r0+r3*2], mm7 RET %endmacro INIT_MMX mmxext PRED8x8L_HORIZONTAL INIT_MMX ssse3 PRED8x8L_HORIZONTAL ;----------------------------------------------------------------------------- ; void pred8x8l_vertical_8(uint8_t *src, int has_topleft, int has_topright, int stride) ;----------------------------------------------------------------------------- %macro PRED8x8L_VERTICAL 0 cglobal pred8x8l_vertical_8, 4,4 sub r0, r3 movq mm0, [r0-8] movq mm3, [r0] movq mm1, [r0+8] movq mm2, mm3 movq mm4, mm3 PALIGNR mm2, mm0, 7, mm0 PALIGNR mm1, mm4, 1, mm4 test r1, r1 ; top_left jz .fix_lt_2 test r2, r2 ; top_right jz .fix_tr_1 jmp .body .fix_lt_2: movq mm5, mm3 pxor mm5, mm2 psllq mm5, 56 psrlq mm5, 56 pxor mm2, mm5 test r2, r2 ; top_right jnz .body .fix_tr_1: movq mm5, mm3 pxor mm5, mm1 psrlq mm5, 56 psllq mm5, 56 pxor mm1, mm5 .body: PRED4x4_LOWPASS mm0, mm2, mm1, mm3, mm5 %rep 3 movq [r0+r3*1], mm0 movq [r0+r3*2], mm0 lea r0, [r0+r3*2] %endrep movq [r0+r3*1], mm0 movq [r0+r3*2], mm0 RET %endmacro INIT_MMX mmxext PRED8x8L_VERTICAL INIT_MMX ssse3 PRED8x8L_VERTICAL ;----------------------------------------------------------------------------- ;void pred8x8l_down_left_8(uint8_t *src, int has_topleft, int has_topright, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmxext cglobal pred8x8l_down_left_8, 4,5 sub r0, r3 movq mm0, [r0-8] movq mm3, [r0] movq mm1, [r0+8] movq mm2, mm3 movq mm4, mm3 PALIGNR mm2, mm0, 7, mm0 PALIGNR mm1, mm4, 1, mm4 test r1, r1 jz .fix_lt_2 test r2, r2 jz .fix_tr_1 jmp .do_top .fix_lt_2: movq mm5, mm3 pxor mm5, mm2 psllq mm5, 56 psrlq mm5, 56 pxor mm2, mm5 test r2, r2 jnz .do_top .fix_tr_1: movq mm5, mm3 pxor mm5, mm1 psrlq mm5, 56 psllq mm5, 56 pxor mm1, mm5 jmp .do_top .fix_tr_2: punpckhbw mm3, mm3 pshufw mm1, mm3, 0xFF jmp .do_topright .do_top: PRED4x4_LOWPASS mm4, mm2, mm1, mm3, mm5 movq mm7, mm4 test r2, r2 jz .fix_tr_2 movq mm0, [r0+8] movq mm5, mm0 movq mm2, mm0 movq mm4, mm0 psrlq mm5, 56 PALIGNR mm2, mm3, 7, mm3 PALIGNR mm5, mm4, 1, mm4 PRED4x4_LOWPASS mm1, mm2, mm5, mm0, mm4 .do_topright: lea r1, [r0+r3*2] movq mm6, mm1 psrlq mm1, 56 movq mm4, mm1 lea r2, [r1+r3*2] movq mm2, mm6 PALIGNR mm2, mm7, 1, mm0 movq mm3, mm6 PALIGNR mm3, mm7, 7, mm0 PALIGNR mm4, mm6, 1, mm0 movq mm5, mm7 movq mm1, mm7 movq mm7, mm6 lea r4, [r2+r3*2] psllq mm1, 8 PRED4x4_LOWPASS mm0, mm1, mm2, mm5, mm6 PRED4x4_LOWPASS mm1, mm3, mm4, mm7, mm6 movq [r4+r3*2], mm1 movq mm2, mm0 psllq mm1, 8 psrlq mm2, 56 psllq mm0, 8 por mm1, mm2 movq [r4+r3*1], mm1 movq mm2, mm0 psllq mm1, 8 psrlq mm2, 56 psllq mm0, 8 por mm1, mm2 movq [r2+r3*2], mm1 movq mm2, mm0 psllq mm1, 8 psrlq mm2, 56 psllq mm0, 8 por mm1, mm2 movq [r2+r3*1], mm1 movq mm2, mm0 psllq mm1, 8 psrlq mm2, 56 psllq mm0, 8 por mm1, mm2 movq [r1+r3*2], mm1 movq mm2, mm0 psllq mm1, 8 psrlq mm2, 56 psllq mm0, 8 por mm1, mm2 movq [r1+r3*1], mm1 movq mm2, mm0 psllq mm1, 8 psrlq mm2, 56 psllq mm0, 8 por mm1, mm2 movq [r0+r3*2], mm1 psllq mm1, 8 psrlq mm0, 56 por mm1, mm0 movq [r0+r3*1], mm1 RET %macro PRED8x8L_DOWN_LEFT 0 cglobal pred8x8l_down_left_8, 4,4 sub r0, r3 movq mm0, [r0-8] movq mm3, [r0] movq mm1, [r0+8] movq mm2, mm3 movq mm4, mm3 PALIGNR mm2, mm0, 7, mm0 PALIGNR mm1, mm4, 1, mm4 test r1, r1 ; top_left jz .fix_lt_2 test r2, r2 ; top_right jz .fix_tr_1 jmp .do_top .fix_lt_2: movq mm5, mm3 pxor mm5, mm2 psllq mm5, 56 psrlq mm5, 56 pxor mm2, mm5 test r2, r2 ; top_right jnz .do_top .fix_tr_1: movq mm5, mm3 pxor mm5, mm1 psrlq mm5, 56 psllq mm5, 56 pxor mm1, mm5 jmp .do_top .fix_tr_2: punpckhbw mm3, mm3 pshufw mm1, mm3, 0xFF jmp .do_topright .do_top: PRED4x4_LOWPASS mm4, mm2, mm1, mm3, mm5 movq2dq xmm3, mm4 test r2, r2 ; top_right jz .fix_tr_2 movq mm0, [r0+8] movq mm5, mm0 movq mm2, mm0 movq mm4, mm0 psrlq mm5, 56 PALIGNR mm2, mm3, 7, mm3 PALIGNR mm5, mm4, 1, mm4 PRED4x4_LOWPASS mm1, mm2, mm5, mm0, mm4 .do_topright: movq2dq xmm4, mm1 psrlq mm1, 56 movq2dq xmm5, mm1 lea r1, [r0+r3*2] pslldq xmm4, 8 por xmm3, xmm4 movdqa xmm2, xmm3 psrldq xmm2, 1 pslldq xmm5, 15 por xmm2, xmm5 lea r2, [r1+r3*2] movdqa xmm1, xmm3 pslldq xmm1, 1 INIT_XMM cpuname PRED4x4_LOWPASS xmm0, xmm1, xmm2, xmm3, xmm4 psrldq xmm0, 1 movq [r0+r3*1], xmm0 psrldq xmm0, 1 movq [r0+r3*2], xmm0 psrldq xmm0, 1 lea r0, [r2+r3*2] movq [r1+r3*1], xmm0 psrldq xmm0, 1 movq [r1+r3*2], xmm0 psrldq xmm0, 1 movq [r2+r3*1], xmm0 psrldq xmm0, 1 movq [r2+r3*2], xmm0 psrldq xmm0, 1 movq [r0+r3*1], xmm0 psrldq xmm0, 1 movq [r0+r3*2], xmm0 RET %endmacro INIT_MMX sse2 PRED8x8L_DOWN_LEFT INIT_MMX ssse3 PRED8x8L_DOWN_LEFT ;----------------------------------------------------------------------------- ;void pred8x8l_down_right_8_mmxext(uint8_t *src, int has_topleft, int has_topright, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmxext cglobal pred8x8l_down_right_8, 4,5 sub r0, r3 lea r4, [r0+r3*2] movq mm0, [r0+r3*1-8] punpckhbw mm0, [r0+r3*0-8] movq mm1, [r4+r3*1-8] punpckhbw mm1, [r0+r3*2-8] mov r4, r0 punpckhwd mm1, mm0 lea r0, [r0+r3*4] movq mm2, [r0+r3*1-8] punpckhbw mm2, [r0+r3*0-8] lea r0, [r0+r3*2] movq mm3, [r0+r3*1-8] punpckhbw mm3, [r0+r3*0-8] punpckhwd mm3, mm2 punpckhdq mm3, mm1 lea r0, [r0+r3*2] movq mm0, [r0+r3*0-8] movq mm1, [r4] mov r0, r4 movq mm4, mm3 movq mm2, mm3 PALIGNR mm4, mm0, 7, mm0 PALIGNR mm1, mm2, 1, mm2 test r1, r1 ; top_left jz .fix_lt_1 .do_left: movq mm0, mm4 PRED4x4_LOWPASS mm2, mm1, mm4, mm3, mm5 movq mm4, mm0 movq mm7, mm2 movq mm6, mm2 PRED4x4_LOWPASS mm1, mm3, mm0, mm4, mm5 psllq mm1, 56 PALIGNR mm7, mm1, 7, mm3 movq mm0, [r0-8] movq mm3, [r0] movq mm1, [r0+8] movq mm2, mm3 movq mm4, mm3 PALIGNR mm2, mm0, 7, mm0 PALIGNR mm1, mm4, 1, mm4 test r1, r1 ; top_left jz .fix_lt_2 test r2, r2 ; top_right jz .fix_tr_1 .do_top: PRED4x4_LOWPASS mm4, mm2, mm1, mm3, mm5 movq mm5, mm4 jmp .body .fix_lt_1: movq mm5, mm3 pxor mm5, mm4 psrlq mm5, 56 psllq mm5, 48 pxor mm1, mm5 jmp .do_left .fix_lt_2: movq mm5, mm3 pxor mm5, mm2 psllq mm5, 56 psrlq mm5, 56 pxor mm2, mm5 test r2, r2 ; top_right jnz .do_top .fix_tr_1: movq mm5, mm3 pxor mm5, mm1 psrlq mm5, 56 psllq mm5, 56 pxor mm1, mm5 jmp .do_top .body: lea r1, [r0+r3*2] movq mm1, mm7 movq mm7, mm5 movq mm5, mm6 movq mm2, mm7 lea r2, [r1+r3*2] PALIGNR mm2, mm6, 1, mm0 movq mm3, mm7 PALIGNR mm3, mm6, 7, mm0 movq mm4, mm7 lea r4, [r2+r3*2] psrlq mm4, 8 PRED4x4_LOWPASS mm0, mm1, mm2, mm5, mm6 PRED4x4_LOWPASS mm1, mm3, mm4, mm7, mm6 movq [r4+r3*2], mm0 movq mm2, mm1 psrlq mm0, 8 psllq mm2, 56 psrlq mm1, 8 por mm0, mm2 movq [r4+r3*1], mm0 movq mm2, mm1 psrlq mm0, 8 psllq mm2, 56 psrlq mm1, 8 por mm0, mm2 movq [r2+r3*2], mm0 movq mm2, mm1 psrlq mm0, 8 psllq mm2, 56 psrlq mm1, 8 por mm0, mm2 movq [r2+r3*1], mm0 movq mm2, mm1 psrlq mm0, 8 psllq mm2, 56 psrlq mm1, 8 por mm0, mm2 movq [r1+r3*2], mm0 movq mm2, mm1 psrlq mm0, 8 psllq mm2, 56 psrlq mm1, 8 por mm0, mm2 movq [r1+r3*1], mm0 movq mm2, mm1 psrlq mm0, 8 psllq mm2, 56 psrlq mm1, 8 por mm0, mm2 movq [r0+r3*2], mm0 psrlq mm0, 8 psllq mm1, 56 por mm0, mm1 movq [r0+r3*1], mm0 RET %macro PRED8x8L_DOWN_RIGHT 0 cglobal pred8x8l_down_right_8, 4,5 sub r0, r3 lea r4, [r0+r3*2] movq mm0, [r0+r3*1-8] punpckhbw mm0, [r0+r3*0-8] movq mm1, [r4+r3*1-8] punpckhbw mm1, [r0+r3*2-8] mov r4, r0 punpckhwd mm1, mm0 lea r0, [r0+r3*4] movq mm2, [r0+r3*1-8] punpckhbw mm2, [r0+r3*0-8] lea r0, [r0+r3*2] movq mm3, [r0+r3*1-8] punpckhbw mm3, [r0+r3*0-8] punpckhwd mm3, mm2 punpckhdq mm3, mm1 lea r0, [r0+r3*2] movq mm0, [r0+r3*0-8] movq mm1, [r4] mov r0, r4 movq mm4, mm3 movq mm2, mm3 PALIGNR mm4, mm0, 7, mm0 PALIGNR mm1, mm2, 1, mm2 test r1, r1 jz .fix_lt_1 jmp .do_left .fix_lt_1: movq mm5, mm3 pxor mm5, mm4 psrlq mm5, 56 psllq mm5, 48 pxor mm1, mm5 jmp .do_left .fix_lt_2: movq mm5, mm3 pxor mm5, mm2 psllq mm5, 56 psrlq mm5, 56 pxor mm2, mm5 test r2, r2 jnz .do_top .fix_tr_1: movq mm5, mm3 pxor mm5, mm1 psrlq mm5, 56 psllq mm5, 56 pxor mm1, mm5 jmp .do_top .do_left: movq mm0, mm4 PRED4x4_LOWPASS mm2, mm1, mm4, mm3, mm5 movq mm4, mm0 movq mm7, mm2 movq2dq xmm3, mm2 PRED4x4_LOWPASS mm1, mm3, mm0, mm4, mm5 psllq mm1, 56 PALIGNR mm7, mm1, 7, mm3 movq2dq xmm1, mm7 movq mm0, [r0-8] movq mm3, [r0] movq mm1, [r0+8] movq mm2, mm3 movq mm4, mm3 PALIGNR mm2, mm0, 7, mm0 PALIGNR mm1, mm4, 1, mm4 test r1, r1 jz .fix_lt_2 test r2, r2 jz .fix_tr_1 .do_top: PRED4x4_LOWPASS mm4, mm2, mm1, mm3, mm5 movq2dq xmm4, mm4 lea r1, [r0+r3*2] movdqa xmm0, xmm3 pslldq xmm4, 8 por xmm3, xmm4 lea r2, [r1+r3*2] pslldq xmm4, 1 por xmm1, xmm4 psrldq xmm0, 7 pslldq xmm0, 15 psrldq xmm0, 7 por xmm1, xmm0 lea r0, [r2+r3*2] movdqa xmm2, xmm3 psrldq xmm2, 1 INIT_XMM cpuname PRED4x4_LOWPASS xmm0, xmm1, xmm2, xmm3, xmm4 movdqa xmm1, xmm0 psrldq xmm1, 1 movq [r0+r3*2], xmm0 movq [r0+r3*1], xmm1 psrldq xmm0, 2 psrldq xmm1, 2 movq [r2+r3*2], xmm0 movq [r2+r3*1], xmm1 psrldq xmm0, 2 psrldq xmm1, 2 movq [r1+r3*2], xmm0 movq [r1+r3*1], xmm1 psrldq xmm0, 2 psrldq xmm1, 2 movq [r4+r3*2], xmm0 movq [r4+r3*1], xmm1 RET %endmacro INIT_MMX sse2 PRED8x8L_DOWN_RIGHT INIT_MMX ssse3 PRED8x8L_DOWN_RIGHT ;----------------------------------------------------------------------------- ; void pred8x8l_vertical_right_8(uint8_t *src, int has_topleft, int has_topright, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmxext cglobal pred8x8l_vertical_right_8, 4,5 sub r0, r3 lea r4, [r0+r3*2] movq mm0, [r0+r3*1-8] punpckhbw mm0, [r0+r3*0-8] movq mm1, [r4+r3*1-8] punpckhbw mm1, [r0+r3*2-8] mov r4, r0 punpckhwd mm1, mm0 lea r0, [r0+r3*4] movq mm2, [r0+r3*1-8] punpckhbw mm2, [r0+r3*0-8] lea r0, [r0+r3*2] movq mm3, [r0+r3*1-8] punpckhbw mm3, [r0+r3*0-8] punpckhwd mm3, mm2 punpckhdq mm3, mm1 lea r0, [r0+r3*2] movq mm0, [r0+r3*0-8] movq mm1, [r4] mov r0, r4 movq mm4, mm3 movq mm2, mm3 PALIGNR mm4, mm0, 7, mm0 PALIGNR mm1, mm2, 1, mm2 test r1, r1 jz .fix_lt_1 jmp .do_left .fix_lt_1: movq mm5, mm3 pxor mm5, mm4 psrlq mm5, 56 psllq mm5, 48 pxor mm1, mm5 jmp .do_left .fix_lt_2: movq mm5, mm3 pxor mm5, mm2 psllq mm5, 56 psrlq mm5, 56 pxor mm2, mm5 test r2, r2 jnz .do_top .fix_tr_1: movq mm5, mm3 pxor mm5, mm1 psrlq mm5, 56 psllq mm5, 56 pxor mm1, mm5 jmp .do_top .do_left: movq mm0, mm4 PRED4x4_LOWPASS mm2, mm1, mm4, mm3, mm5 movq mm7, mm2 movq mm0, [r0-8] movq mm3, [r0] movq mm1, [r0+8] movq mm2, mm3 movq mm4, mm3 PALIGNR mm2, mm0, 7, mm0 PALIGNR mm1, mm4, 1, mm4 test r1, r1 jz .fix_lt_2 test r2, r2 jz .fix_tr_1 .do_top: PRED4x4_LOWPASS mm6, mm2, mm1, mm3, mm5 lea r1, [r0+r3*2] movq mm2, mm6 movq mm3, mm6 PALIGNR mm3, mm7, 7, mm0 PALIGNR mm6, mm7, 6, mm1 movq mm4, mm3 pavgb mm3, mm2 lea r2, [r1+r3*2] PRED4x4_LOWPASS mm0, mm6, mm2, mm4, mm5 movq [r0+r3*1], mm3 movq [r0+r3*2], mm0 movq mm5, mm0 movq mm6, mm3 movq mm1, mm7 movq mm2, mm1 psllq mm2, 8 movq mm3, mm1 psllq mm3, 16 lea r4, [r2+r3*2] PRED4x4_LOWPASS mm0, mm1, mm3, mm2, mm4 PALIGNR mm6, mm0, 7, mm2 movq [r1+r3*1], mm6 psllq mm0, 8 PALIGNR mm5, mm0, 7, mm1 movq [r1+r3*2], mm5 psllq mm0, 8 PALIGNR mm6, mm0, 7, mm2 movq [r2+r3*1], mm6 psllq mm0, 8 PALIGNR mm5, mm0, 7, mm1 movq [r2+r3*2], mm5 psllq mm0, 8 PALIGNR mm6, mm0, 7, mm2 movq [r4+r3*1], mm6 psllq mm0, 8 PALIGNR mm5, mm0, 7, mm1 movq [r4+r3*2], mm5 RET %macro PRED8x8L_VERTICAL_RIGHT 0 cglobal pred8x8l_vertical_right_8, 4,5,7 ; manually spill XMM registers for Win64 because ; the code here is initialized with INIT_MMX WIN64_SPILL_XMM 7 sub r0, r3 lea r4, [r0+r3*2] movq mm0, [r0+r3*1-8] punpckhbw mm0, [r0+r3*0-8] movq mm1, [r4+r3*1-8] punpckhbw mm1, [r0+r3*2-8] mov r4, r0 punpckhwd mm1, mm0 lea r0, [r0+r3*4] movq mm2, [r0+r3*1-8] punpckhbw mm2, [r0+r3*0-8] lea r0, [r0+r3*2] movq mm3, [r0+r3*1-8] punpckhbw mm3, [r0+r3*0-8] punpckhwd mm3, mm2 punpckhdq mm3, mm1 lea r0, [r0+r3*2] movq mm0, [r0+r3*0-8] movq mm1, [r4] mov r0, r4 movq mm4, mm3 movq mm2, mm3 PALIGNR mm4, mm0, 7, mm0 PALIGNR mm1, mm2, 1, mm2 test r1, r1 jnz .do_left .fix_lt_1: movq mm5, mm3 pxor mm5, mm4 psrlq mm5, 56 psllq mm5, 48 pxor mm1, mm5 jmp .do_left .fix_lt_2: movq mm5, mm3 pxor mm5, mm2 psllq mm5, 56 psrlq mm5, 56 pxor mm2, mm5 test r2, r2 jnz .do_top .fix_tr_1: movq mm5, mm3 pxor mm5, mm1 psrlq mm5, 56 psllq mm5, 56 pxor mm1, mm5 jmp .do_top .do_left: movq mm0, mm4 PRED4x4_LOWPASS mm2, mm1, mm4, mm3, mm5 movq2dq xmm0, mm2 movq mm0, [r0-8] movq mm3, [r0] movq mm1, [r0+8] movq mm2, mm3 movq mm4, mm3 PALIGNR mm2, mm0, 7, mm0 PALIGNR mm1, mm4, 1, mm4 test r1, r1 jz .fix_lt_2 test r2, r2 jz .fix_tr_1 .do_top: PRED4x4_LOWPASS mm6, mm2, mm1, mm3, mm5 lea r1, [r0+r3*2] movq2dq xmm4, mm6 pslldq xmm4, 8 por xmm0, xmm4 movdqa xmm6, [pw_ff00] movdqa xmm1, xmm0 lea r2, [r1+r3*2] movdqa xmm2, xmm0 movdqa xmm3, xmm0 pslldq xmm0, 1 pslldq xmm1, 2 pavgb xmm2, xmm0 INIT_XMM cpuname PRED4x4_LOWPASS xmm4, xmm3, xmm1, xmm0, xmm5 pandn xmm6, xmm4 movdqa xmm5, xmm4 psrlw xmm4, 8 packuswb xmm6, xmm4 movhlps xmm4, xmm6 movhps [r0+r3*2], xmm5 movhps [r0+r3*1], xmm2 psrldq xmm5, 4 movss xmm5, xmm6 psrldq xmm2, 4 movss xmm2, xmm4 lea r0, [r2+r3*2] psrldq xmm5, 1 psrldq xmm2, 1 movq [r0+r3*2], xmm5 movq [r0+r3*1], xmm2 psrldq xmm5, 1 psrldq xmm2, 1 movq [r2+r3*2], xmm5 movq [r2+r3*1], xmm2 psrldq xmm5, 1 psrldq xmm2, 1 movq [r1+r3*2], xmm5 movq [r1+r3*1], xmm2 RET %endmacro INIT_MMX sse2 PRED8x8L_VERTICAL_RIGHT INIT_MMX ssse3 PRED8x8L_VERTICAL_RIGHT ;----------------------------------------------------------------------------- ;void pred8x8l_vertical_left_8(uint8_t *src, int has_topleft, int has_topright, int stride) ;----------------------------------------------------------------------------- %macro PRED8x8L_VERTICAL_LEFT 0 cglobal pred8x8l_vertical_left_8, 4,4 sub r0, r3 movq mm0, [r0-8] movq mm3, [r0] movq mm1, [r0+8] movq mm2, mm3 movq mm4, mm3 PALIGNR mm2, mm0, 7, mm0 PALIGNR mm1, mm4, 1, mm4 test r1, r1 jz .fix_lt_2 test r2, r2 jz .fix_tr_1 jmp .do_top .fix_lt_2: movq mm5, mm3 pxor mm5, mm2 psllq mm5, 56 psrlq mm5, 56 pxor mm2, mm5 test r2, r2 jnz .do_top .fix_tr_1: movq mm5, mm3 pxor mm5, mm1 psrlq mm5, 56 psllq mm5, 56 pxor mm1, mm5 jmp .do_top .fix_tr_2: punpckhbw mm3, mm3 pshufw mm1, mm3, 0xFF jmp .do_topright .do_top: PRED4x4_LOWPASS mm4, mm2, mm1, mm3, mm5 movq2dq xmm4, mm4 test r2, r2 jz .fix_tr_2 movq mm0, [r0+8] movq mm5, mm0 movq mm2, mm0 movq mm4, mm0 psrlq mm5, 56 PALIGNR mm2, mm3, 7, mm3 PALIGNR mm5, mm4, 1, mm4 PRED4x4_LOWPASS mm1, mm2, mm5, mm0, mm4 .do_topright: movq2dq xmm3, mm1 lea r1, [r0+r3*2] pslldq xmm3, 8 por xmm4, xmm3 movdqa xmm2, xmm4 movdqa xmm1, xmm4 movdqa xmm3, xmm4 psrldq xmm2, 1 pslldq xmm1, 1 pavgb xmm3, xmm2 lea r2, [r1+r3*2] INIT_XMM cpuname PRED4x4_LOWPASS xmm0, xmm1, xmm2, xmm4, xmm5 psrldq xmm0, 1 movq [r0+r3*1], xmm3 movq [r0+r3*2], xmm0 lea r0, [r2+r3*2] psrldq xmm3, 1 psrldq xmm0, 1 movq [r1+r3*1], xmm3 movq [r1+r3*2], xmm0 psrldq xmm3, 1 psrldq xmm0, 1 movq [r2+r3*1], xmm3 movq [r2+r3*2], xmm0 psrldq xmm3, 1 psrldq xmm0, 1 movq [r0+r3*1], xmm3 movq [r0+r3*2], xmm0 RET %endmacro INIT_MMX sse2 PRED8x8L_VERTICAL_LEFT INIT_MMX ssse3 PRED8x8L_VERTICAL_LEFT ;----------------------------------------------------------------------------- ; void pred8x8l_horizontal_up_8(uint8_t *src, int has_topleft, int has_topright, int stride) ;----------------------------------------------------------------------------- %macro PRED8x8L_HORIZONTAL_UP 0 cglobal pred8x8l_horizontal_up_8, 4,4 sub r0, r3 lea r2, [r0+r3*2] movq mm0, [r0+r3*1-8] test r1, r1 lea r1, [r0+r3] cmovnz r1, r0 punpckhbw mm0, [r1+r3*0-8] movq mm1, [r2+r3*1-8] punpckhbw mm1, [r0+r3*2-8] mov r2, r0 punpckhwd mm1, mm0 lea r0, [r0+r3*4] movq mm2, [r0+r3*1-8] punpckhbw mm2, [r0+r3*0-8] lea r0, [r0+r3*2] movq mm3, [r0+r3*1-8] punpckhbw mm3, [r0+r3*0-8] punpckhwd mm3, mm2 punpckhdq mm3, mm1 lea r0, [r0+r3*2] movq mm0, [r0+r3*0-8] movq mm1, [r1+r3*0-8] mov r0, r2 movq mm4, mm3 movq mm2, mm3 PALIGNR mm4, mm0, 7, mm0 PALIGNR mm1, mm2, 1, mm2 movq mm0, mm4 PRED4x4_LOWPASS mm2, mm1, mm4, mm3, mm5 movq mm4, mm0 movq mm7, mm2 PRED4x4_LOWPASS mm1, mm3, mm0, mm4, mm5 psllq mm1, 56 PALIGNR mm7, mm1, 7, mm3 lea r1, [r0+r3*2] pshufw mm0, mm7, 00011011b ; l6 l7 l4 l5 l2 l3 l0 l1 psllq mm7, 56 ; l7 .. .. .. .. .. .. .. movq mm2, mm0 psllw mm0, 8 psrlw mm2, 8 por mm2, mm0 ; l7 l6 l5 l4 l3 l2 l1 l0 movq mm3, mm2 movq mm4, mm2 movq mm5, mm2 psrlq mm2, 8 psrlq mm3, 16 lea r2, [r1+r3*2] por mm2, mm7 ; l7 l7 l6 l5 l4 l3 l2 l1 punpckhbw mm7, mm7 por mm3, mm7 ; l7 l7 l7 l6 l5 l4 l3 l2 pavgb mm4, mm2 PRED4x4_LOWPASS mm1, mm3, mm5, mm2, mm6 movq mm5, mm4 punpcklbw mm4, mm1 ; p4 p3 p2 p1 punpckhbw mm5, mm1 ; p8 p7 p6 p5 movq mm6, mm5 movq mm7, mm5 movq mm0, mm5 PALIGNR mm5, mm4, 2, mm1 pshufw mm1, mm6, 11111001b PALIGNR mm6, mm4, 4, mm2 pshufw mm2, mm7, 11111110b PALIGNR mm7, mm4, 6, mm3 pshufw mm3, mm0, 11111111b movq [r0+r3*1], mm4 movq [r0+r3*2], mm5 lea r0, [r2+r3*2] movq [r1+r3*1], mm6 movq [r1+r3*2], mm7 movq [r2+r3*1], mm0 movq [r2+r3*2], mm1 movq [r0+r3*1], mm2 movq [r0+r3*2], mm3 RET %endmacro INIT_MMX mmxext PRED8x8L_HORIZONTAL_UP INIT_MMX ssse3 PRED8x8L_HORIZONTAL_UP ;----------------------------------------------------------------------------- ;void pred8x8l_horizontal_down_8(uint8_t *src, int has_topleft, int has_topright, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmxext cglobal pred8x8l_horizontal_down_8, 4,5 sub r0, r3 lea r4, [r0+r3*2] movq mm0, [r0+r3*1-8] punpckhbw mm0, [r0+r3*0-8] movq mm1, [r4+r3*1-8] punpckhbw mm1, [r0+r3*2-8] mov r4, r0 punpckhwd mm1, mm0 lea r0, [r0+r3*4] movq mm2, [r0+r3*1-8] punpckhbw mm2, [r0+r3*0-8] lea r0, [r0+r3*2] movq mm3, [r0+r3*1-8] punpckhbw mm3, [r0+r3*0-8] punpckhwd mm3, mm2 punpckhdq mm3, mm1 lea r0, [r0+r3*2] movq mm0, [r0+r3*0-8] movq mm1, [r4] mov r0, r4 movq mm4, mm3 movq mm2, mm3 PALIGNR mm4, mm0, 7, mm0 PALIGNR mm1, mm2, 1, mm2 test r1, r1 jnz .do_left .fix_lt_1: movq mm5, mm3 pxor mm5, mm4 psrlq mm5, 56 psllq mm5, 48 pxor mm1, mm5 jmp .do_left .fix_lt_2: movq mm5, mm3 pxor mm5, mm2 psllq mm5, 56 psrlq mm5, 56 pxor mm2, mm5 test r2, r2 jnz .do_top .fix_tr_1: movq mm5, mm3 pxor mm5, mm1 psrlq mm5, 56 psllq mm5, 56 pxor mm1, mm5 jmp .do_top .do_left: movq mm0, mm4 PRED4x4_LOWPASS mm2, mm1, mm4, mm3, mm5 movq mm4, mm0 movq mm7, mm2 movq mm6, mm2 PRED4x4_LOWPASS mm1, mm3, mm0, mm4, mm5 psllq mm1, 56 PALIGNR mm7, mm1, 7, mm3 movq mm0, [r0-8] movq mm3, [r0] movq mm1, [r0+8] movq mm2, mm3 movq mm4, mm3 PALIGNR mm2, mm0, 7, mm0 PALIGNR mm1, mm4, 1, mm4 test r1, r1 jz .fix_lt_2 test r2, r2 jz .fix_tr_1 .do_top: PRED4x4_LOWPASS mm4, mm2, mm1, mm3, mm5 movq mm5, mm4 lea r1, [r0+r3*2] psllq mm7, 56 movq mm2, mm5 movq mm3, mm6 movq mm4, mm2 PALIGNR mm2, mm6, 7, mm5 PALIGNR mm6, mm7, 7, mm0 lea r2, [r1+r3*2] PALIGNR mm4, mm3, 1, mm7 movq mm5, mm3 pavgb mm3, mm6 PRED4x4_LOWPASS mm0, mm4, mm6, mm5, mm7 movq mm4, mm2 movq mm1, mm2 lea r4, [r2+r3*2] psrlq mm4, 16 psrlq mm1, 8 PRED4x4_LOWPASS mm6, mm4, mm2, mm1, mm5 movq mm7, mm3 punpcklbw mm3, mm0 punpckhbw mm7, mm0 movq mm1, mm7 movq mm0, mm7 movq mm4, mm7 movq [r4+r3*2], mm3 PALIGNR mm7, mm3, 2, mm5 movq [r4+r3*1], mm7 PALIGNR mm1, mm3, 4, mm5 movq [r2+r3*2], mm1 PALIGNR mm0, mm3, 6, mm3 movq [r2+r3*1], mm0 movq mm2, mm6 movq mm3, mm6 movq [r1+r3*2], mm4 PALIGNR mm6, mm4, 2, mm5 movq [r1+r3*1], mm6 PALIGNR mm2, mm4, 4, mm5 movq [r0+r3*2], mm2 PALIGNR mm3, mm4, 6, mm4 movq [r0+r3*1], mm3 RET %macro PRED8x8L_HORIZONTAL_DOWN 0 cglobal pred8x8l_horizontal_down_8, 4,5 sub r0, r3 lea r4, [r0+r3*2] movq mm0, [r0+r3*1-8] punpckhbw mm0, [r0+r3*0-8] movq mm1, [r4+r3*1-8] punpckhbw mm1, [r0+r3*2-8] mov r4, r0 punpckhwd mm1, mm0 lea r0, [r0+r3*4] movq mm2, [r0+r3*1-8] punpckhbw mm2, [r0+r3*0-8] lea r0, [r0+r3*2] movq mm3, [r0+r3*1-8] punpckhbw mm3, [r0+r3*0-8] punpckhwd mm3, mm2 punpckhdq mm3, mm1 lea r0, [r0+r3*2] movq mm0, [r0+r3*0-8] movq mm1, [r4] mov r0, r4 movq mm4, mm3 movq mm2, mm3 PALIGNR mm4, mm0, 7, mm0 PALIGNR mm1, mm2, 1, mm2 test r1, r1 jnz .do_left .fix_lt_1: movq mm5, mm3 pxor mm5, mm4 psrlq mm5, 56 psllq mm5, 48 pxor mm1, mm5 jmp .do_left .fix_lt_2: movq mm5, mm3 pxor mm5, mm2 psllq mm5, 56 psrlq mm5, 56 pxor mm2, mm5 test r2, r2 jnz .do_top .fix_tr_1: movq mm5, mm3 pxor mm5, mm1 psrlq mm5, 56 psllq mm5, 56 pxor mm1, mm5 jmp .do_top .fix_tr_2: punpckhbw mm3, mm3 pshufw mm1, mm3, 0xFF jmp .do_topright .do_left: movq mm0, mm4 PRED4x4_LOWPASS mm2, mm1, mm4, mm3, mm5 movq2dq xmm0, mm2 pslldq xmm0, 8 movq mm4, mm0 PRED4x4_LOWPASS mm1, mm3, mm0, mm4, mm5 movq2dq xmm2, mm1 pslldq xmm2, 15 psrldq xmm2, 8 por xmm0, xmm2 movq mm0, [r0-8] movq mm3, [r0] movq mm1, [r0+8] movq mm2, mm3 movq mm4, mm3 PALIGNR mm2, mm0, 7, mm0 PALIGNR mm1, mm4, 1, mm4 test r1, r1 jz .fix_lt_2 test r2, r2 jz .fix_tr_1 .do_top: PRED4x4_LOWPASS mm4, mm2, mm1, mm3, mm5 movq2dq xmm1, mm4 test r2, r2 jz .fix_tr_2 movq mm0, [r0+8] movq mm5, mm0 movq mm2, mm0 movq mm4, mm0 psrlq mm5, 56 PALIGNR mm2, mm3, 7, mm3 PALIGNR mm5, mm4, 1, mm4 PRED4x4_LOWPASS mm1, mm2, mm5, mm0, mm4 .do_topright: movq2dq xmm5, mm1 pslldq xmm5, 8 por xmm1, xmm5 INIT_XMM cpuname lea r2, [r4+r3*2] movdqa xmm2, xmm1 movdqa xmm3, xmm1 PALIGNR xmm1, xmm0, 7, xmm4 PALIGNR xmm2, xmm0, 9, xmm5 lea r1, [r2+r3*2] PALIGNR xmm3, xmm0, 8, xmm0 movdqa xmm4, xmm1 pavgb xmm4, xmm3 lea r0, [r1+r3*2] PRED4x4_LOWPASS xmm0, xmm1, xmm2, xmm3, xmm5 punpcklbw xmm4, xmm0 movhlps xmm0, xmm4 movq [r0+r3*2], xmm4 movq [r2+r3*2], xmm0 psrldq xmm4, 2 psrldq xmm0, 2 movq [r0+r3*1], xmm4 movq [r2+r3*1], xmm0 psrldq xmm4, 2 psrldq xmm0, 2 movq [r1+r3*2], xmm4 movq [r4+r3*2], xmm0 psrldq xmm4, 2 psrldq xmm0, 2 movq [r1+r3*1], xmm4 movq [r4+r3*1], xmm0 RET %endmacro INIT_MMX sse2 PRED8x8L_HORIZONTAL_DOWN INIT_MMX ssse3 PRED8x8L_HORIZONTAL_DOWN ;----------------------------------------------------------------------------- ; void pred4x4_dc_8_mmxext(uint8_t *src, const uint8_t *topright, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmxext cglobal pred4x4_dc_8, 3,5 pxor mm7, mm7 mov r4, r0 sub r0, r2 movd mm0, [r0] psadbw mm0, mm7 movzx r1d, byte [r0+r2*1-1] movd r3d, mm0 add r3d, r1d movzx r1d, byte [r0+r2*2-1] lea r0, [r0+r2*2] add r3d, r1d movzx r1d, byte [r0+r2*1-1] add r3d, r1d movzx r1d, byte [r0+r2*2-1] add r3d, r1d add r3d, 4 shr r3d, 3 imul r3d, 0x01010101 mov [r4+r2*0], r3d mov [r0+r2*0], r3d mov [r0+r2*1], r3d mov [r0+r2*2], r3d RET ;----------------------------------------------------------------------------- ; void pred4x4_tm_vp8_8_mmxext(uint8_t *src, const uint8_t *topright, int stride) ;----------------------------------------------------------------------------- %macro PRED4x4_TM 0 cglobal pred4x4_tm_vp8_8, 3,6 sub r0, r2 pxor mm7, mm7 movd mm0, [r0] punpcklbw mm0, mm7 movzx r4d, byte [r0-1] mov r5d, 2 .loop: movzx r1d, byte [r0+r2*1-1] movzx r3d, byte [r0+r2*2-1] sub r1d, r4d sub r3d, r4d movd mm2, r1d movd mm4, r3d %if cpuflag(mmxext) pshufw mm2, mm2, 0 pshufw mm4, mm4, 0 %else punpcklwd mm2, mm2 punpcklwd mm4, mm4 punpckldq mm2, mm2 punpckldq mm4, mm4 %endif paddw mm2, mm0 paddw mm4, mm0 packuswb mm2, mm2 packuswb mm4, mm4 movd [r0+r2*1], mm2 movd [r0+r2*2], mm4 lea r0, [r0+r2*2] dec r5d jg .loop REP_RET %endmacro INIT_MMX mmx PRED4x4_TM INIT_MMX mmxext PRED4x4_TM INIT_XMM ssse3 cglobal pred4x4_tm_vp8_8, 3,3 sub r0, r2 movq mm6, [tm_shuf] pxor mm1, mm1 movd mm0, [r0] punpcklbw mm0, mm1 movd mm7, [r0-4] pshufb mm7, mm6 lea r1, [r0+r2*2] movd mm2, [r0+r2*1-4] movd mm3, [r0+r2*2-4] movd mm4, [r1+r2*1-4] movd mm5, [r1+r2*2-4] pshufb mm2, mm6 pshufb mm3, mm6 pshufb mm4, mm6 pshufb mm5, mm6 psubw mm2, mm7 psubw mm3, mm7 psubw mm4, mm7 psubw mm5, mm7 paddw mm2, mm0 paddw mm3, mm0 paddw mm4, mm0 paddw mm5, mm0 packuswb mm2, mm2 packuswb mm3, mm3 packuswb mm4, mm4 packuswb mm5, mm5 movd [r0+r2*1], mm2 movd [r0+r2*2], mm3 movd [r1+r2*1], mm4 movd [r1+r2*2], mm5 RET ;----------------------------------------------------------------------------- ; void pred4x4_vertical_vp8_8_mmxext(uint8_t *src, const uint8_t *topright, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmxext cglobal pred4x4_vertical_vp8_8, 3,3 sub r0, r2 movd m1, [r0-1] movd m0, [r0] mova m2, m0 ;t0 t1 t2 t3 punpckldq m0, [r1] ;t0 t1 t2 t3 t4 t5 t6 t7 lea r1, [r0+r2*2] psrlq m0, 8 ;t1 t2 t3 t4 PRED4x4_LOWPASS m3, m1, m0, m2, m4 movd [r0+r2*1], m3 movd [r0+r2*2], m3 movd [r1+r2*1], m3 movd [r1+r2*2], m3 RET ;----------------------------------------------------------------------------- ; void pred4x4_down_left_8_mmxext(uint8_t *src, const uint8_t *topright, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmxext cglobal pred4x4_down_left_8, 3,3 sub r0, r2 movq m1, [r0] punpckldq m1, [r1] movq m2, m1 movq m3, m1 psllq m1, 8 pxor m2, m1 psrlq m2, 8 pxor m2, m3 PRED4x4_LOWPASS m0, m1, m2, m3, m4 lea r1, [r0+r2*2] psrlq m0, 8 movd [r0+r2*1], m0 psrlq m0, 8 movd [r0+r2*2], m0 psrlq m0, 8 movd [r1+r2*1], m0 psrlq m0, 8 movd [r1+r2*2], m0 RET ;----------------------------------------------------------------------------- ; void pred4x4_vertical_left_8_mmxext(uint8_t *src, const uint8_t *topright, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmxext cglobal pred4x4_vertical_left_8, 3,3 sub r0, r2 movq m1, [r0] punpckldq m1, [r1] movq m3, m1 movq m2, m1 psrlq m3, 8 psrlq m2, 16 movq m4, m3 pavgb m4, m1 PRED4x4_LOWPASS m0, m1, m2, m3, m5 lea r1, [r0+r2*2] movh [r0+r2*1], m4 movh [r0+r2*2], m0 psrlq m4, 8 psrlq m0, 8 movh [r1+r2*1], m4 movh [r1+r2*2], m0 RET ;----------------------------------------------------------------------------- ; void pred4x4_horizontal_up_8_mmxext(uint8_t *src, const uint8_t *topright, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmxext cglobal pred4x4_horizontal_up_8, 3,3 sub r0, r2 lea r1, [r0+r2*2] movd m0, [r0+r2*1-4] punpcklbw m0, [r0+r2*2-4] movd m1, [r1+r2*1-4] punpcklbw m1, [r1+r2*2-4] punpckhwd m0, m1 movq m1, m0 punpckhbw m1, m1 pshufw m1, m1, 0xFF punpckhdq m0, m1 movq m2, m0 movq m3, m0 movq m7, m0 psrlq m2, 16 psrlq m3, 8 pavgb m7, m3 PRED4x4_LOWPASS m4, m0, m2, m3, m5 punpcklbw m7, m4 movd [r0+r2*1], m7 psrlq m7, 16 movd [r0+r2*2], m7 psrlq m7, 16 movd [r1+r2*1], m7 movd [r1+r2*2], m1 RET ;----------------------------------------------------------------------------- ; void pred4x4_horizontal_down_8_mmxext(uint8_t *src, const uint8_t *topright, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmxext cglobal pred4x4_horizontal_down_8, 3,3 sub r0, r2 lea r1, [r0+r2*2] movh m0, [r0-4] ; lt .. punpckldq m0, [r0] ; t3 t2 t1 t0 lt .. .. .. psllq m0, 8 ; t2 t1 t0 lt .. .. .. .. movd m1, [r1+r2*2-4] ; l3 punpcklbw m1, [r1+r2*1-4] ; l2 l3 movd m2, [r0+r2*2-4] ; l1 punpcklbw m2, [r0+r2*1-4] ; l0 l1 punpckhwd m1, m2 ; l0 l1 l2 l3 punpckhdq m1, m0 ; t2 t1 t0 lt l0 l1 l2 l3 movq m0, m1 movq m2, m1 movq m5, m1 psrlq m0, 16 ; .. .. t2 t1 t0 lt l0 l1 psrlq m2, 8 ; .. t2 t1 t0 lt l0 l1 l2 pavgb m5, m2 PRED4x4_LOWPASS m3, m1, m0, m2, m4 punpcklbw m5, m3 psrlq m3, 32 PALIGNR m3, m5, 6, m4 movh [r1+r2*2], m5 psrlq m5, 16 movh [r1+r2*1], m5 psrlq m5, 16 movh [r0+r2*2], m5 movh [r0+r2*1], m3 RET ;----------------------------------------------------------------------------- ; void pred4x4_vertical_right_8_mmxext(uint8_t *src, const uint8_t *topright, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmxext cglobal pred4x4_vertical_right_8, 3,3 sub r0, r2 lea r1, [r0+r2*2] movh m0, [r0] ; ........t3t2t1t0 movq m5, m0 PALIGNR m0, [r0-8], 7, m1 ; ......t3t2t1t0lt pavgb m5, m0 PALIGNR m0, [r0+r2*1-8], 7, m1 ; ....t3t2t1t0ltl0 movq m1, m0 PALIGNR m0, [r0+r2*2-8], 7, m2 ; ..t3t2t1t0ltl0l1 movq m2, m0 PALIGNR m0, [r1+r2*1-8], 7, m3 ; t3t2t1t0ltl0l1l2 PRED4x4_LOWPASS m3, m1, m0, m2, m4 movq m1, m3 psrlq m3, 16 psllq m1, 48 movh [r0+r2*1], m5 movh [r0+r2*2], m3 PALIGNR m5, m1, 7, m2 psllq m1, 8 movh [r1+r2*1], m5 PALIGNR m3, m1, 7, m1 movh [r1+r2*2], m3 RET ;----------------------------------------------------------------------------- ; void pred4x4_down_right_8_mmxext(uint8_t *src, const uint8_t *topright, int stride) ;----------------------------------------------------------------------------- INIT_MMX mmxext cglobal pred4x4_down_right_8, 3,3 sub r0, r2 lea r1, [r0+r2*2] movq m1, [r1-8] movq m2, [r0+r2*1-8] punpckhbw m2, [r0-8] movh m3, [r0] punpckhwd m1, m2 PALIGNR m3, m1, 5, m1 movq m1, m3 PALIGNR m3, [r1+r2*1-8], 7, m4 movq m2, m3 PALIGNR m3, [r1+r2*2-8], 7, m4 PRED4x4_LOWPASS m0, m3, m1, m2, m4 movh [r1+r2*2], m0 psrlq m0, 8 movh [r1+r2*1], m0 psrlq m0, 8 movh [r0+r2*2], m0 psrlq m0, 8 movh [r0+r2*1], m0 RET
25.880503
95
0.460553
723ec9e999e8ca72af50831699a50e8e7ce8d559
6,739
rs
Rust
consensus/src/chained_bft/chained_bft_consensus_provider.rs
metajack/diem
2cffd4fae6e2bfb233b30b4948ed05a6e2bf7f93
[ "Apache-2.0" ]
1
2019-08-07T20:34:16.000Z
2019-08-07T20:34:16.000Z
consensus/src/chained_bft/chained_bft_consensus_provider.rs
metajack/diem
2cffd4fae6e2bfb233b30b4948ed05a6e2bf7f93
[ "Apache-2.0" ]
1
2019-08-07T23:37:24.000Z
2019-08-08T17:11:51.000Z
consensus/src/chained_bft/chained_bft_consensus_provider.rs
metajack/diem
2cffd4fae6e2bfb233b30b4948ed05a6e2bf7f93
[ "Apache-2.0" ]
1
2019-08-07T20:18:58.000Z
2019-08-07T20:18:58.000Z
// Copyright (c) The Libra Core Contributors // SPDX-License-Identifier: Apache-2.0 use crate::{ chained_bft::{ chained_bft_smr::ChainedBftSMR, network::ConsensusNetworkImpl, persistent_storage::PersistentStorage, }, consensus_provider::ConsensusProvider, counters, state_computer::ExecutionProxy, state_replication::StateMachineReplication, txn_manager::MempoolProxy, }; use network::validator_network::{ConsensusNetworkEvents, ConsensusNetworkSender}; use nextgen_crypto::ed25519::*; use crate::{ chained_bft::{ chained_bft_smr::ChainedBftSMRConfig, common::Author, persistent_storage::StorageWriteProxy, }, state_synchronizer::{setup_state_synchronizer, StateSynchronizer}, }; use config::config::{ConsensusProposerType::FixedProposer, NodeConfig}; use execution_proto::proto::execution_grpc::ExecutionClient; use failure::prelude::*; use logger::prelude::*; use mempool::proto::mempool_grpc::MempoolClient; use std::{convert::TryFrom, sync::Arc}; use tokio::runtime; use types::{ account_address::AccountAddress, transaction::SignedTransaction, validator_signer::ValidatorSigner, validator_verifier::ValidatorVerifier, }; struct InitialSetup { author: Author, signer: ValidatorSigner<Ed25519PrivateKey>, quorum_size: usize, peers: Arc<Vec<Author>>, validator: Arc<ValidatorVerifier<Ed25519PublicKey>>, } /// Supports the implementation of ConsensusProvider using LibraBFT. pub struct ChainedBftProvider { smr: ChainedBftSMR<Vec<SignedTransaction>, Author>, mempool_client: Arc<MempoolClient>, execution_client: Arc<ExecutionClient>, synchronizer_client: Arc<StateSynchronizer>, } impl ChainedBftProvider { pub fn new( node_config: &mut NodeConfig, network_sender: ConsensusNetworkSender, network_events: ConsensusNetworkEvents, mempool_client: Arc<MempoolClient>, execution_client: Arc<ExecutionClient>, ) -> Self { let runtime = runtime::Builder::new() .name_prefix("consensus-") .build() .expect("Failed to create Tokio runtime!"); let initial_setup = Self::initialize_setup(node_config); let network = ConsensusNetworkImpl::new( initial_setup.author, network_sender.clone(), network_events, Arc::clone(&initial_setup.peers), Arc::clone(&initial_setup.validator), ); let synchronizer = setup_state_synchronizer(network_sender, runtime.executor(), node_config); let proposer = { if node_config.consensus.get_proposer_type() == FixedProposer { vec![Self::choose_leader(&initial_setup)] } else { initial_setup.validator.get_ordered_account_addresses() } }; debug!("[Consensus] My peer: {:?}", initial_setup.author); debug!("[Consensus] Chosen proposer: {:?}", proposer); let config = ChainedBftSMRConfig::from_node_config(&node_config.consensus); let (storage, initial_data) = StorageWriteProxy::start(node_config); info!( "Starting up the consensus state machine with recovery data - {:?}, {:?}", initial_data.state(), initial_data.highest_timeout_certificates() ); let smr = ChainedBftSMR::new( initial_setup.author, initial_setup.quorum_size, initial_setup.signer, proposer, network, runtime, config, storage, initial_data, ); Self { smr, mempool_client, execution_client, synchronizer_client: Arc::new(synchronizer), } } /// Retrieve the initial "state" for consensus. This function is synchronous and returns after /// reading the local persistent store and retrieving the initial state from the executor. fn initialize_setup(node_config: &mut NodeConfig) -> InitialSetup { // Keeping the initial set of validators in a node config is embarrassing and we should // all feel bad about it. let peer_id_str = node_config.base.peer_id.clone(); let author = AccountAddress::try_from(peer_id_str).expect("Failed to parse peer id of a validator"); let private_key = node_config .base .peer_keypairs .take_consensus_private() .expect( "Failed to move a Consensus private key from a NodeConfig, key absent or already read", ); let signer = ValidatorSigner::new(author, private_key); let peers_with_public_keys = node_config.base.trusted_peers.get_trusted_consensus_peers(); let peers_with_nextgen_public_keys = peers_with_public_keys .clone() .into_iter() .map(|(k, v)| (AccountAddress::clone(&k), v)) .collect(); let peers = Arc::new( peers_with_public_keys .keys() .map(AccountAddress::clone) .collect(), ); let validator = Arc::new(ValidatorVerifier::new(peers_with_nextgen_public_keys)); counters::EPOCH_NUM.set(0); // No reconfiguration yet, so it is always zero counters::CURRENT_EPOCH_NUM_VALIDATORS.set(validator.len() as i64); counters::CURRENT_EPOCH_QUORUM_SIZE.set(validator.quorum_size() as i64); debug!("[Consensus]: quorum_size = {:?}", validator.quorum_size()); InitialSetup { author, signer, quorum_size: validator.quorum_size(), peers, validator, } } /// Choose a proposer that is going to be the single leader (relevant for a mock fixed proposer /// election only). fn choose_leader(initial_setup: &InitialSetup) -> Author { // As it is just a tmp hack function, pick the max PeerId to be a proposer. // TODO: VRF will be integrated later. *initial_setup .peers .iter() .max() .expect("No trusted peers found!") } } impl ConsensusProvider for ChainedBftProvider { fn start(&mut self) -> Result<()> { let txn_manager = Arc::new(MempoolProxy::new(self.mempool_client.clone())); let state_computer = Arc::new(ExecutionProxy::new( self.execution_client.clone(), self.synchronizer_client.clone(), )); debug!("Starting consensus provider."); self.smr.start(txn_manager, state_computer) } fn stop(&mut self) { self.smr.stop(); debug!("Consensus provider stopped."); } }
37.027473
100
0.637335
cb4e01eee479064a38c97350c1c7d4bf605de258
294
h
C
Brown/BLYSearchSongResultProtocol.h
jeremylevy/brown-ios
7457c1172c2b8417ad6bc68ac957d9b5ca4a508a
[ "MIT" ]
1
2018-04-18T05:28:33.000Z
2018-04-18T05:28:33.000Z
Brown/BLYSearchSongResultProtocol.h
jeremylevy/brown-ios
7457c1172c2b8417ad6bc68ac957d9b5ca4a508a
[ "MIT" ]
null
null
null
Brown/BLYSearchSongResultProtocol.h
jeremylevy/brown-ios
7457c1172c2b8417ad6bc68ac957d9b5ca4a508a
[ "MIT" ]
null
null
null
// // BLYSearchSongResultProtocol.h // Brown // // Created by Jeremy Levy on 28/11/2013. // Copyright (c) 2013 Jeremy Levy. All rights reserved. // #import <Foundation/Foundation.h> @protocol BLYSearchSongResultProtocol <NSObject> @property (strong, nonatomic) NSString * content; @end
18.375
56
0.727891
dfbcbc76c9158f21cae77fa729c937d087868aeb
19,256
ts
TypeScript
repos/fdbt-site/tests/pages/api/managePassengerGroup.test.ts
fares-data-build-tool/create-data
d4e73228e76a4c6dc24ef8ed78c73cc62cf45c77
[ "MIT" ]
6
2021-06-22T09:01:17.000Z
2022-03-04T12:48:25.000Z
repos/fdbt-site/tests/pages/api/managePassengerGroup.test.ts
fares-data-build-tool/create-data
d4e73228e76a4c6dc24ef8ed78c73cc62cf45c77
[ "MIT" ]
18
2021-08-04T09:23:10.000Z
2022-02-18T10:07:18.000Z
repos/fdbt-site/tests/pages/api/managePassengerGroup.test.ts
fares-data-build-tool/create-data
d4e73228e76a4c6dc24ef8ed78c73cc62cf45c77
[ "MIT" ]
1
2021-06-30T16:27:27.000Z
2021-06-30T16:27:27.000Z
import managePassengerGroup from '../../../src/pages/api/managePassengerGroup'; import { getMockRequestAndResponse } from '../../testData/mockData'; import * as session from '../../../src/utils/sessions'; import * as aurora from '../../../src/data/auroradb'; import { GS_PASSENGER_GROUP_ATTRIBUTE } from '../../../src/constants/attributes'; import { FullGroupPassengerType } from 'src/interfaces'; const updateSessionAttributeSpy = jest.spyOn(session, 'updateSessionAttribute'); const getGroupPassengerTypesFromGlobalSettingsSpy = jest.spyOn(aurora, 'getGroupPassengerTypesFromGlobalSettings'); const convertToFullPassengerTypeSpy = jest.spyOn(aurora, 'convertToFullPassengerType'); const insertGroupPassengerTypeSpy = jest.spyOn(aurora, 'insertGroupPassengerType'); const updateGroupPassengerTypeSpy = jest.spyOn(aurora, 'updateGroupPassengerType'); insertGroupPassengerTypeSpy.mockResolvedValue(); updateGroupPassengerTypeSpy.mockResolvedValue(); afterEach(() => { jest.resetAllMocks(); }); describe('managePassengerGroup', () => { it('should return 302 redirect to /managePassengerGroup when there have been no user inputs and update session with errors', async () => { const writeHeadMock = jest.fn(); getGroupPassengerTypesFromGlobalSettingsSpy.mockResolvedValueOnce([]); const { req, res } = getMockRequestAndResponse({ cookieValues: {}, body: { maxGroupSize: '', ['minimumPassengers12']: '', ['maximumPassengers12']: '', ['minimumPassengers43']: '', ['maximumPassengers43']: '', passengerGroupName: '', }, uuid: {}, mockWriteHeadFn: writeHeadMock, }); await managePassengerGroup(req, res); expect(writeHeadMock).toBeCalledWith(302, { Location: '/managePassengerGroup', }); expect(updateSessionAttributeSpy).toBeCalledWith(req, GS_PASSENGER_GROUP_ATTRIBUTE, { errors: [ { errorMessage: 'Maximum group size cannot be empty', id: 'max-group-size', userInput: '' }, { errorMessage: 'Select at least one passenger type', id: 'passenger-type-0' }, { errorMessage: 'Enter a group name of up to 50 characters', id: 'passenger-group-name', userInput: '', }, ], inputs: { groupPassengerType: { companions: [], maxGroupSize: '', name: '' }, id: undefined, name: '' }, }); }); it('should return 302 redirect to /managePassengerGroup when there have been incorrect user inputs and update session with errors and inputs', async () => { const writeHeadMock = jest.fn(); getGroupPassengerTypesFromGlobalSettingsSpy.mockResolvedValueOnce([]); const fullGroupPassengerType: FullGroupPassengerType = { id: 2, name: 'Family5', groupPassengerType: { name: 'adult', maxGroupSize: '5', companions: [ { id: 12, name: 'adult', passengerType: 'adult', minNumber: '1', maxNumber: '2', ageRangeMin: '18', ageRangeMax: '65', proofDocuments: [], }, ], }, }; convertToFullPassengerTypeSpy.mockResolvedValueOnce(fullGroupPassengerType); const { req, res } = getMockRequestAndResponse({ cookieValues: {}, body: { maxGroupSize: 'seven', passengerTypes: ['12', '43'], ['minimumPassengers12']: 'one', ['maximumPassengers12']: 'three', ['minimumPassengers43']: '1', ['maximumPassengers43']: '2', passengerGroupName: '', }, uuid: {}, mockWriteHeadFn: writeHeadMock, }); await managePassengerGroup(req, res); expect(writeHeadMock).toBeCalledWith(302, { Location: '/managePassengerGroup', }); expect(updateSessionAttributeSpy).toBeCalledWith(req, GS_PASSENGER_GROUP_ATTRIBUTE, { errors: [ { errorMessage: 'Maximum group size must be a whole, positive number', id: 'max-group-size', userInput: 'seven', }, { errorMessage: 'Minimum amount must be a whole, positive number', id: 'minimum-passengers-12', userInput: 'one', }, { errorMessage: 'Maximum amount must be a whole, positive number', id: 'maximum-passengers-12', userInput: 'three', }, { errorMessage: 'Enter a group name of up to 50 characters', id: 'passenger-group-name', userInput: '', }, ], inputs: { groupPassengerType: { companions: [ { id: 12, maxNumber: 'three', minNumber: 'one', }, { id: 43, maxNumber: '2', minNumber: '1', }, ], maxGroupSize: 'seven', name: '', }, id: undefined, name: '', }, }); }); it('should return 302 redirect to /viewPassengerTypes when group has two of the same passenger types and allow creation', async () => { const writeHeadMock = jest.fn(); getGroupPassengerTypesFromGlobalSettingsSpy.mockResolvedValueOnce([]); const fullGroupPassengerType: FullGroupPassengerType = { id: 2, name: 'Family5', groupPassengerType: { name: 'Family5', maxGroupSize: '5', companions: [ { id: 12, name: 'regular adult', passengerType: 'adult', minNumber: '1', maxNumber: '2', ageRangeMin: '18', ageRangeMax: '65', proofDocuments: [], }, { id: 43, name: 'adults', passengerType: 'adult', minNumber: '1', maxNumber: '2', ageRangeMin: '18', ageRangeMax: '65', proofDocuments: [], }, ], }, }; convertToFullPassengerTypeSpy.mockResolvedValueOnce(fullGroupPassengerType); const { req, res } = getMockRequestAndResponse({ cookieValues: {}, body: { maxGroupSize: '5', passengerTypes: ['12', '43'], ['minimumPassengers12']: '1', ['maximumPassengers12']: '2', ['minimumPassengers43']: '1', ['maximumPassengers43']: '2', passengerGroupName: 'Family5', }, uuid: {}, mockWriteHeadFn: writeHeadMock, }); await managePassengerGroup(req, res); expect(writeHeadMock).toBeCalledWith(302, { Location: '/viewPassengerTypes', }); expect(updateSessionAttributeSpy).toBeCalledWith(req, GS_PASSENGER_GROUP_ATTRIBUTE, undefined); expect(insertGroupPassengerTypeSpy).toBeCalledWith( 'TEST', { companions: [ { id: 12, maxNumber: '2', minNumber: '1', }, { id: 43, maxNumber: '2', minNumber: '1', }, ], maxGroupSize: '5', name: 'Family5', }, 'Family5', ); }); it('should return 302 redirect to /managePassengerGroup when there have been correct user inputs but there is a group with the same name', async () => { const writeHeadMock = jest.fn(); getGroupPassengerTypesFromGlobalSettingsSpy.mockResolvedValueOnce([ { id: 2, name: 'My duplicate group', groupPassengerType: { name: 'adult', maxGroupSize: '3', companions: [ { id: 1, name: 'adult', passengerType: 'adult', minNumber: '2', maxNumber: '3', ageRangeMin: '18', ageRangeMax: '79', proofDocuments: [], }, ], }, }, ]); const { req, res } = getMockRequestAndResponse({ cookieValues: {}, body: { maxGroupSize: '7', passengerTypes: ['12', '43'], ['minimumPassengers12']: '2', ['maximumPassengers12']: '3', ['minimumPassengers43']: '1', ['maximumPassengers43']: '2', passengerGroupName: 'My duplicate group', }, uuid: {}, mockWriteHeadFn: writeHeadMock, }); await managePassengerGroup(req, res); expect(writeHeadMock).toBeCalledWith(302, { Location: '/managePassengerGroup', }); expect(updateSessionAttributeSpy).toBeCalledWith(req, GS_PASSENGER_GROUP_ATTRIBUTE, { errors: [ { errorMessage: 'There is already a group with this name. Choose another', id: 'passenger-group-name', userInput: 'My duplicate group', }, ], inputs: { groupPassengerType: { companions: [ { id: 12, maxNumber: '3', minNumber: '2', }, { id: 43, maxNumber: '2', minNumber: '1', }, ], maxGroupSize: '7', name: 'My duplicate group', }, name: 'My duplicate group', id: undefined, }, }); }); it('should return 302 redirect to /viewPassengerTypes when there have been correct user inputs and the group is saved to the db ', async () => { const writeHeadMock = jest.fn(); getGroupPassengerTypesFromGlobalSettingsSpy.mockResolvedValueOnce([]); const fullGroupPassengerType: FullGroupPassengerType = { id: 2, name: 'Family5', groupPassengerType: { name: 'adult', maxGroupSize: '5', companions: [ { id: 12, name: 'adult', passengerType: 'adult', minNumber: '1', maxNumber: '2', ageRangeMin: '18', ageRangeMax: '65', proofDocuments: [], }, ], }, }; convertToFullPassengerTypeSpy.mockResolvedValueOnce(fullGroupPassengerType); const { req, res } = getMockRequestAndResponse({ cookieValues: {}, body: { maxGroupSize: '5', passengerTypes: ['12', '43'], ['minimumPassengers12']: '1', ['maximumPassengers12']: '2', ['minimumPassengers43']: '1', ['maximumPassengers43']: '3', passengerGroupName: 'My group', }, uuid: {}, mockWriteHeadFn: writeHeadMock, }); await managePassengerGroup(req, res); expect(writeHeadMock).toBeCalledWith(302, { Location: '/viewPassengerTypes', }); expect(updateSessionAttributeSpy).toBeCalledWith(req, GS_PASSENGER_GROUP_ATTRIBUTE, undefined); expect(insertGroupPassengerTypeSpy).toBeCalledWith( 'TEST', { companions: [ { id: 12, maxNumber: '2', minNumber: '1', }, { id: 43, maxNumber: '3', minNumber: '1', }, ], maxGroupSize: '5', name: 'My group', }, 'My group', ); }); it('should return 302 redirect to /viewPassengerTypes when there has been a correct edit made and the group is updated in the db', async () => { const writeHeadMock = jest.fn(); getGroupPassengerTypesFromGlobalSettingsSpy.mockResolvedValueOnce([ { id: 2, name: 'Family5', groupPassengerType: { name: 'adult', maxGroupSize: '5', companions: [ { id: 12, name: 'adult', passengerType: 'adult', minNumber: '1', maxNumber: '2', ageRangeMin: '18', ageRangeMax: '65', proofDocuments: [], }, ], }, }, ]); const fullGroupPassengerType: FullGroupPassengerType = { id: 2, name: 'Family5', groupPassengerType: { name: 'adult', maxGroupSize: '5', companions: [ { id: 12, name: 'adult', passengerType: 'adult', minNumber: '1', maxNumber: '2', ageRangeMin: '18', ageRangeMax: '65', proofDocuments: [], }, ], }, }; convertToFullPassengerTypeSpy.mockResolvedValueOnce(fullGroupPassengerType); const { req, res } = getMockRequestAndResponse({ cookieValues: {}, body: { groupId: '2', maxGroupSize: '5', passengerTypes: ['12', '43'], ['minimumPassengers12']: '1', ['maximumPassengers12']: '2', ['minimumPassengers43']: '1', ['maximumPassengers43']: '3', passengerGroupName: 'Five Family', }, uuid: {}, mockWriteHeadFn: writeHeadMock, }); await managePassengerGroup(req, res); expect(writeHeadMock).toBeCalledWith(302, { Location: '/viewPassengerTypes', }); expect(updateSessionAttributeSpy).toBeCalledWith(req, GS_PASSENGER_GROUP_ATTRIBUTE, undefined); expect(updateGroupPassengerTypeSpy).toBeCalledWith('TEST', { groupPassengerType: { companions: [ { id: 12, maxNumber: '2', minNumber: '1' }, { id: 43, maxNumber: '3', minNumber: '1' }, ], maxGroupSize: '5', name: 'Five Family', }, id: 2, name: 'Five Family', }); }); it('should return 302 redirect to /managePassengerGroup?id=2 with errors when the group name is already in use by another group in edit mode', async () => { const writeHeadMock = jest.fn(); getGroupPassengerTypesFromGlobalSettingsSpy.mockResolvedValueOnce([ { id: 3, name: 'group', groupPassengerType: { name: 'adult', maxGroupSize: '3', companions: [ { id: 1, name: 'adult', passengerType: 'adult', minNumber: '2', maxNumber: '3', ageRangeMin: '18', ageRangeMax: '79', proofDocuments: [], }, ], }, }, ]); const { req, res } = getMockRequestAndResponse({ cookieValues: {}, body: { groupId: '2', maxGroupSize: '7', passengerTypes: ['12', '43'], ['minimumPassengers12']: '2', ['maximumPassengers12']: '3', ['minimumPassengers43']: '1', ['maximumPassengers43']: '2', passengerGroupName: 'group', }, uuid: {}, mockWriteHeadFn: writeHeadMock, }); await managePassengerGroup(req, res); expect(writeHeadMock).toBeCalledWith(302, { Location: '/managePassengerGroup?id=2', }); expect(updateSessionAttributeSpy).toBeCalledWith(req, GS_PASSENGER_GROUP_ATTRIBUTE, { errors: [ { errorMessage: 'There is already a group with this name. Choose another', id: 'passenger-group-name', userInput: 'group', }, ], inputs: { groupPassengerType: { companions: [ { id: 12, maxNumber: '3', minNumber: '2' }, { id: 43, maxNumber: '2', minNumber: '1' }, ], maxGroupSize: '7', name: 'group', }, id: 2, name: 'group', }, }); expect(updateGroupPassengerTypeSpy).toBeCalledTimes(0); }); });
36.12758
160
0.433268
cdfe0793a6d21aec2e7316e18ba718ac3bdc290e
2,592
rs
Rust
src/math/newlib/hypotf.rs
burrbull/libm
eaada24dd49bfd50fa04a21c09e67532d45b661d
[ "Apache-2.0", "MIT" ]
null
null
null
src/math/newlib/hypotf.rs
burrbull/libm
eaada24dd49bfd50fa04a21c09e67532d45b661d
[ "Apache-2.0", "MIT" ]
null
null
null
src/math/newlib/hypotf.rs
burrbull/libm
eaada24dd49bfd50fa04a21c09e67532d45b661d
[ "Apache-2.0", "MIT" ]
null
null
null
/* ef_hypot.c -- float version of e_hypot.c. * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com. */ /* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. * * Developed at SunPro, a Sun Microsystems, Inc. business. * Permission to use, copy, modify, and distribute this * software is freely granted, provided that this notice * is preserved. * ==================================================== */ use crate::math::consts::*; use crate::math::sqrtf; #[inline] pub fn hypotf(x: f32, y: f32) -> f32 { let mut ha = (x.to_bits() as i32) & IF_ABS; let mut hb = (y.to_bits() as i32) & IF_ABS; if hb > ha { core::mem::swap(&mut ha, &mut hb); } let mut a = f32::from_bits(ha as u32); /* a <- |a| */ let mut b = f32::from_bits(hb as u32); /* b <- |b| */ if (ha - hb) > 0x_0f00_0000 { /* x/y > 2**30 */ return a + b; } let mut k = 0i32; if ha > 0x_5880_0000 { /* a>2**50 */ if ha >= IF_INF { /* Inf or NaN */ return if ha == IF_INF { a } else if hb == IF_INF { b } else { a + b /* for sNaN */ }; } /* scale a and b by 2**-68 */ ha -= 0x_2200_0000; hb -= 0x_2200_0000; k += 68; a = f32::from_bits(ha as u32); b = f32::from_bits(hb as u32); } if hb < 0x_2680_0000 { /* b < 2**-50 */ if hb == 0 { return a; } else if hb < IF_MIN { let t1 = f32::from_bits(0x_7e80_0000); /* t1=2^126 */ b *= t1; a *= t1; k -= 126; } else { /* scale a and b by 2^68 */ ha += 0x_2200_0000; /* a *= 2^68 */ hb += 0x_2200_0000; /* b *= 2^68 */ k -= 68; a = f32::from_bits(ha as u32); b = f32::from_bits(hb as u32); } } /* medium size a and b */ let w = a - b; let w = if w > b { let t1 = f32::from_bits((ha as u32) & 0x_ffff_f000); let t2 = a - t1; sqrtf(t1 * t1 - (b * (-b) - t2 * (a + t1))) } else { a += a; let y1 = f32::from_bits((hb as u32) & 0x_ffff_f000); let y2 = b - y1; let t1 = f32::from_bits((ha as u32) + UF_MIN); let t2 = a - t1; sqrtf(t1 * y1 - (w * (-w) - (t1 * y2 + t2 * b))) }; if k != 0 { w * f32::from_bits(UF_1 + ((k as u32) << 23)) } else { w } }
28.8
75
0.428627
a113f82ffca239d18a08b7eeaa91745ca6fec1c4
282
go
Go
model/product.go
sudheerj/go-products-rest-demo
7ed0ad4a2227254b4df9af0595a4d15a635dfad0
[ "MIT" ]
5
2020-10-22T06:28:30.000Z
2021-06-15T09:45:51.000Z
model/product.go
sudheerj/go-products-rest-demo
7ed0ad4a2227254b4df9af0595a4d15a635dfad0
[ "MIT" ]
null
null
null
model/product.go
sudheerj/go-products-rest-demo
7ed0ad4a2227254b4df9af0595a4d15a635dfad0
[ "MIT" ]
3
2020-10-22T06:28:31.000Z
2021-07-21T12:40:29.000Z
package model import "gorm.io/gorm" type Product struct { gorm.Model Name string `json:"name" gorm:"unique"` ModelType string `json:"modelType"` Price uint32 `json:"price"` Color string `json:"color"` Reviews []Review `gorm:"ForeignKey:ProductID" json:"reviews"` }
18.8
65
0.698582
dd907b25e36d7e41b4766371cd9e5777b45509e9
4,339
php
PHP
application/controllers/dashboard.php
sanjaykumar27/expense_manager
6febc40560d5c91ccc884b0959eb2485ba93a171
[ "MIT" ]
null
null
null
application/controllers/dashboard.php
sanjaykumar27/expense_manager
6febc40560d5c91ccc884b0959eb2485ba93a171
[ "MIT" ]
null
null
null
application/controllers/dashboard.php
sanjaykumar27/expense_manager
6febc40560d5c91ccc884b0959eb2485ba93a171
[ "MIT" ]
null
null
null
<?php /* index -> go to dashboard view * categories() * */ defined('BASEPATH') OR exit('No direct script access allowed'); class Dashboard extends CI_Controller { function __construct() { parent::__construct(); $this->load->model('User_model'); $this->load->model('Dashboard_model'); } /* go to dashboard */ public function index() { if (strlen($this->session->userdata('is_logged_in')) and $this->session->userdata('is_logged_in') == 1) { $data['page_name'] = 'dashboard'; $this->load->view('dashboard', $data); } else { redirect('/'); } } /* get the data of categories and subcategories join */ public function categories() { if (strlen($this->session->userdata('is_logged_in')) and $this->session->userdata('is_logged_in') == 1) { $data['page_name'] = 'category_master'; /* categories list */ $data['categories'] = $this->Dashboard_model->getCategories(0); /* categories joined subcatogies */ $data['categories_list'] = $this->Dashboard_model->getCategoriesList(); $this->load->view('masters/categories', $data); } else { redirect('/'); } } /* this function will create category */ public function addCategory() { if (strlen($this->session->userdata('is_logged_in')) and $this->session->userdata('is_logged_in') == 1) { $param = array( 'category_name' => $this->input->POST('category_name') ); $insertId = $this->Dashboard_model->createCategory($param); if ($insertId > 0) { $data = array('code' => 1, 'response' => 'Category Succesfully Created'); } else { $data = array('code' => 0, 'response' => 'Something went Wrong! Please try again later.'); } echo json_encode($data); } else { redirect('/'); } } public function addSubCategory() { if (strlen($this->session->userdata('is_logged_in')) and $this->session->userdata('is_logged_in') == 1) { $param = array( 'category_id' => $this->input->POST('category_id'), 'subcategory_name' => $this->input->POST('subcategory_name') ); $insertId = $this->Dashboard_model->createSubCategory($param); if ($insertId > 0) { $data = array('code' => 1, 'response' => 'Subcategory Succesfully Created'); } else { $data = array('code' => 0, 'response' => 'Something went Wrong! Please try again later.'); } echo json_encode($data); } else { redirect('/'); } } public function accounts() { if (strlen($this->session->userdata('is_logged_in')) and $this->session->userdata('is_logged_in') == 1) { $data['page_name'] = 'Accounts'; $data['accounts'] = $this->Dashboard_model->getAccounts(); $data['account_owner'] = $this->Dashboard_model->getAccountOwner(); $data['payment_type'] = $this->Dashboard_model->getTypeList(3); $this->load->view('accounts/viewAccounts',$data); //$this->echoThis($data);die; } else { redirect('/'); } } public function accountDetails() { if (strlen($this->session->userdata('is_logged_in')) and $this->session->userdata('is_logged_in') == 1) { $data['page_name'] = 'Account Detail'; $accid = $this->uri->segment(3); $data['account_details'] = $this->Dashboard_model->getAccountDetail($accid); //$this->echoThis($data['account_details']);die; $this->load->view('accounts/accountDetails',$data); } else { redirect('/'); } } /* this function used to print the data */ public function echoThis($array) { echo '<pre>'; print_r($array); echo '</pre>'; } }
29.924138
111
0.506338
01e8305cd6ef6407c51e807c34871e4944153c3e
506
asm
Assembly
demo/kitchen-sink/docs/assembly_x86.asm
websharks/ace-builds
423f576e59173fc866189da37f9c15458082a740
[ "BSD-3-Clause" ]
17,323
2015-01-01T05:03:21.000Z
2022-03-31T13:20:54.000Z
demo/kitchen-sink/docs/assembly_x86.asm
websharks/ace-builds
423f576e59173fc866189da37f9c15458082a740
[ "BSD-3-Clause" ]
2,307
2015-01-02T21:18:24.000Z
2022-03-31T23:32:25.000Z
demo/kitchen-sink/docs/assembly_x86.asm
websharks/ace-builds
423f576e59173fc866189da37f9c15458082a740
[ "BSD-3-Clause" ]
4,603
2015-01-01T18:41:52.000Z
2022-03-30T14:00:59.000Z
section .text global main ;must be declared for using gcc main: ;tell linker entry point mov edx, len ;message length mov ecx, msg ;message to write mov ebx, 1 ;file descriptor (stdout) mov eax, 4 ;system call number (sys_write) int 0x80 ;call kernel mov eax, 1 ;system call number (sys_exit) int 0x80 ;call kernel section .data msg db 'Hello, world!',0xa ;our dear string len equ $ - msg ;length of our dear string
26.631579
55
0.614625
485b1310bd3325095ebd9c7dc13b18fcf5aa6e0b
252
swift
Swift
Foodly/Foodly/OrderHistory/OrderHistoryModel/OrdersHistoryModels.swift
geniusjames/Foodly
0997fe007077b85e601033b3724792693a9a8301
[ "Apache-2.0" ]
null
null
null
Foodly/Foodly/OrderHistory/OrderHistoryModel/OrdersHistoryModels.swift
geniusjames/Foodly
0997fe007077b85e601033b3724792693a9a8301
[ "Apache-2.0" ]
null
null
null
Foodly/Foodly/OrderHistory/OrderHistoryModel/OrdersHistoryModels.swift
geniusjames/Foodly
0997fe007077b85e601033b3724792693a9a8301
[ "Apache-2.0" ]
null
null
null
// // OrdersHistoryModels.swift // Foodly // // Created by Geniusjames on 6/23/21. // import UIKit struct OrderHistoryModel { let restaurantName: String let totalPrice: String let restaurantImage: String let itemQuantity: String }
15.75
38
0.706349
5086a6fbd869302b68fd3e065d36916f6342b95b
1,658
go
Go
src/golang/practice/example37.go
youngzil/quickstart-golang
eee2e36cf61835d73b41e03464e0f40afc0c31af
[ "Apache-2.0" ]
1
2021-04-26T15:28:10.000Z
2021-04-26T15:28:10.000Z
src/golang/practice/example37.go
youngzil/quickstart-golang
eee2e36cf61835d73b41e03464e0f40afc0c31af
[ "Apache-2.0" ]
null
null
null
src/golang/practice/example37.go
youngzil/quickstart-golang
eee2e36cf61835d73b41e03464e0f40afc0c31af
[ "Apache-2.0" ]
null
null
null
package main import "fmt" func sum3(s []int, c chan int) { sum := 0 for _, v := range s { sum += v } c <- sum // 把 sum 发送到通道 c } func main() { //以下实例通过两个 goroutine 来计算数字之和,在 goroutine 完成计算后,它会计算两个结果的和: s := []int{7, 2, 8, -9, 4, 0} c := make(chan int) go sum3(s[:len(s)/2], c) go sum3(s[len(s)/2:], c) x, y := <-c, <-c // 从通道 c 中接收 fmt.Println(x, y, x+y) // 这里我们定义了一个可以存储整数类型的带缓冲通道 // 缓冲区大小为2 ch := make(chan int, 2) // 因为 ch 是带缓冲的通道,我们可以同时发送两个数据 // 而不用立刻需要去同步读取数据 ch <- 1 ch <- 2 // 获取这两个数据 fmt.Println(<-ch) fmt.Println(<-ch) //Go 遍历通道与关闭通道 //Go 通过 range 关键字来实现遍历读取到的数据,类似于与数组或切片。格式如下: //v, ok := <-ch //如果通道接收不到数据后 ok 就为 false,这时通道就可以使用 close() 函数来关闭。 c2 := make(chan int, 10) go fibonacci5(cap(c2), c2) // range 函数遍历每个从通道接收到的数据,因为 c 在发送完 10 个 数据之后就关闭了通道 // 所以这里我们 range 函数在接收到 10 个数据 之后就结束了。 // 如果上面的 c 通道不关闭,那么 range 函数就不 会结束,从而在接收第 11 个数据的时候就阻塞了。 for i := range c { fmt.Println(i) } } func fibonacci5(n int, c chan int) { x, y := 0, 1 for i := 0; i < n; i++ { c <- x x, y = y, x+y } close(c) } /*通道(channel)是用来传递数据的一个数据结构。 通道可用于两个 goroutine 之间通过传递一个指定类型的值来同步运行和通讯。操作符 <- 用于指定通道的方向,发送或接收。如果未指定方向,则为双向通道。 ch <- v // 把 v 发送到通道 ch v := <-ch // 从 ch 接收数据 ,并把值赋给 v 声明一个通道很简单,我们使用chan关键字即可,通道在使用前必须先创建: ch := make(chan int) 注意:默认情况下,通道是不带缓冲区的。发送端发送数据,同时必须又接收端相应的接收数据。 通道缓冲区 通道可以设置缓冲区,通过 make 的第二个参数指定缓冲区大小: ch := make(chan int, 100) 带缓冲区的通道允许发送端的数据发送和接收端的数据获取处于异步状态,就是说发送端发送的数据可以放在缓冲区里面,可以等待接收端去获取数据,而不是立刻需要接收端去获取数据。 不过由于缓冲区的大小是有限的,所以还是必须有接收端来接收数据的,否则缓冲区一满,数据发送端就无法再发送数据了。 注意:如果通道不带缓冲,发送方会阻塞直到接收方从通道中接收了值。 如果通道带缓冲,发送方则会阻塞直到发送的值被拷贝到缓冲区内; 如果缓冲区已满,则意味着需要等待直到某个接收方获取到一个值。接收方在有值可以接收之前会一直阻塞。*/
19.057471
83
0.671291
1c704e5679326667c41ee387820be67c5cc6d61b
6,239
css
CSS
http/webroot/study/css/index.css
dingguanglei/nodejs-web-
4a1dc4237fe8454cb06be62f8944a1d6ab85f6d4
[ "MIT" ]
null
null
null
http/webroot/study/css/index.css
dingguanglei/nodejs-web-
4a1dc4237fe8454cb06be62f8944a1d6ab85f6d4
[ "MIT" ]
null
null
null
http/webroot/study/css/index.css
dingguanglei/nodejs-web-
4a1dc4237fe8454cb06be62f8944a1d6ab85f6d4
[ "MIT" ]
null
null
null
* { padding: 0; margin: 0; } body { margin: auto; position: relative; background-color: #f4f4f4; max-width: 1280px; min-height:100%; } a:hover, a:visited, a:link { text-decoration: none; -webkit-transition: color 0.2s; -moz-transition: color 0.2s; -ms-transition: color 0.2s; -o-transition: color 0.2s; transition: color 0.2s; } h1 { font-size: 3em; } p { letter-spacing: 2px; line-height: 1.5em; } a:visited, a:link { color: #4C4C4C; } .box{ box-shadow: 3px 3px 3px rgba(255, 0, 0, 1); } li { list-style-type: none; display: inline-block; padding: 0 0 0 10px; } header { padding-top: 50px; background: linear-gradient(-135deg,#FFFFFF 0,#F4F4F4 20%,#46B8DA 60%,#FFFFFF 100%); } nav { display: inline-block; float: right; } .wrapper, .container { width: 90%; margin: auto; padding: 0 20px; } .wrapper::after { content: ""; clear: both; } .logo { display: inline-block; -webkit-transition: color 0.8s; -moz-transition: color 0.8s; -ms-transition: color 0.8s; -o-transition: color 0.8s; transition: color 0.8s; } .logo a { display: inline-block; } .logo a div { display: inline-block; float: left; } nav { display: inline-block; float: right; } nav ul li { line-height: 70px; } ul{ margin: 0; } nav ul li a { display: inline-block; line-height: 50px; padding: 10px 10px 5px 10px; margin-bottom: 5px; border-radius: 3px 3px; } .col-navbar { display: none; } .row-navbar { display: inline-block; } .designer { line-height: 70px; } .designer>h1{ } .content-box a { box-shadow: 3px 3px 3px #AEA5A5; } .content-box { -webkit-transition: opacity 0.3s; -moz-transition: opacity 0.3s; -ms-transition: opacity 0.3s; -o-transition: opacity 0.3s; transition: opacity 0.3s; } .study, .study:link, .study:visited { background: #46b8da; color: white; } .study:hover { background: #46b8da; color: white; } .blog, .blog:link, .blog:visited { color: #67b168; } .blog:hover { background: #67b168; color: white; } .about, .about:link, .about:visited { color: orchid; } .about:hover { background: orchid; color: white; } .about,.blog,.study{ width:8.5em; text-align: center; } .fa { color: inherit; } .navbar-section { float: right; width: auto; } .navbar-section div { background-color: white; border-radius: 5px 5px; text-align: center; } .column { padding-top: 15px; border-bottom: 1px black solid; } .column ul { float: right; margin: 0; } .column ul li { padding: 0; } .column ul li a { font-size: 20px; display: block; line-height: 50px; padding: 0 10px 0 15px; border-radius: 50% 50% 0 0; border: 1px transparent solid; } a.color-study { color: #46b8da; } a.color-journal { color: rgb(255, 121, 244); } a.color-music { color: red; } a.color-process { color: green; } .column ul li a.color-total:hover { background-color: lightgoldenrodyellow; } .column ul li a.color-total.classify-active { background-color: lightgoldenrodyellow; } .column ul li a.color-music:hover { color: white; background-color: red; } .column ul li a.color-music.classify-active { color: white; background-color: red; } .column ul li a.color-journal:hover { color: white; background-color: rgb(255, 121, 244); } .column ul li a.color-journal.classify-active { color: white; background-color: rgb(255, 121, 244); } .column ul li a.color-study:hover { color: white; background-color: #46b8da; } .column ul li a.color-study.classify-active { color: white; background-color: #46b8da; } .column ul li a.color-process:hover { color: white; background-color: #67b168; } .column ul li a.color-process.classify-active { color: white; background-color: #67b168; } .content-box a { background-color: #fff; padding: 0 20px; display: block; margin: 0 10px; border: 1px whitesmoke solid; } .box{ background-color: #34343F; color:gainsboro; } .content-box{ width:100%; margin-top: 25px; } .content-box a:hover { color: #6DCE9A; } .content-box h1 { color: inherit; } .content-box p, .content-footer { color: #4C4C4C; } .content-box img { width: 100%; } .content-box:nth-child(3n+1) { clear: both; } .pic-wrapper { margin: 0 -20px; } .navbar-section div { padding: 0 12px; } #icon-menu-list li, #icon-menu-list li a { display: block; width: 100%; text-align: center; } #icon-menu-list { width: 100%; text-align: center; height:0px; overflow: hidden; -webkit-transition: height 0.4s; -moz-transition: height 0.4s; -ms-transition: height 0.4s; -o-transition: height 0.4s; transition: height 0.4s; } #icon-menu-list li a { padding:10px 0; border-radius: 5px 5px; font-size: 2em; } #icon-menu-list li { padding: 0; background-color: #d9edf7; border-radius: 5px 5px; } .logo ul li a { background-color: white; } .footer{ margin-top: 10px; background-color: #D6D6D6; } .footer .container div{ font-size: 1.5em; text-align: center; margin: 0.5em auto; } @media only screen and (max-width: 1280px) { .col-navbar { display: none; } .row-navbar { display: inline-block; } } @media only screen and (max-width: 950px) { .column { display: none; } .col-navbar { display: inline-block; } .row-navbar { display: none; } .wrapper { padding-right: 20px; margin: 10px; width: 100%; } } @media only screen and (max-width: 520px) { .column { display: none; } .content { margin: 0; padding: 0; width: 100%; } .logo { display: inline-block; } li { display: block; } .col-navbar { display: inline-block; } .row-navbar { display: none; } .wrapper { padding-right: 20px; margin: 10px; width: 100%; } }
15.143204
88
0.5908
bb01488a0012162b4d7735a28387084d6ff44343
2,294
rs
Rust
src/gdma/dma_outfifo_status_ch2.rs
ducktec/esp32c3
64b9547e200a3ee7e6587d81178be8732e99bee9
[ "Apache-2.0", "MIT" ]
null
null
null
src/gdma/dma_outfifo_status_ch2.rs
ducktec/esp32c3
64b9547e200a3ee7e6587d81178be8732e99bee9
[ "Apache-2.0", "MIT" ]
null
null
null
src/gdma/dma_outfifo_status_ch2.rs
ducktec/esp32c3
64b9547e200a3ee7e6587d81178be8732e99bee9
[ "Apache-2.0", "MIT" ]
null
null
null
#[doc = "Reader of register DMA_OUTFIFO_STATUS_CH2"] pub type R = crate::R<u32, super::DMA_OUTFIFO_STATUS_CH2>; #[doc = "Reader of field `DMA_OUT_REMAIN_UNDER_4B_CH2`"] pub type DMA_OUT_REMAIN_UNDER_4B_CH2_R = crate::R<bool, bool>; #[doc = "Reader of field `DMA_OUT_REMAIN_UNDER_3B_CH2`"] pub type DMA_OUT_REMAIN_UNDER_3B_CH2_R = crate::R<bool, bool>; #[doc = "Reader of field `DMA_OUT_REMAIN_UNDER_2B_CH2`"] pub type DMA_OUT_REMAIN_UNDER_2B_CH2_R = crate::R<bool, bool>; #[doc = "Reader of field `DMA_OUT_REMAIN_UNDER_1B_CH2`"] pub type DMA_OUT_REMAIN_UNDER_1B_CH2_R = crate::R<bool, bool>; #[doc = "Reader of field `DMA_OUTFIFO_CNT_CH2`"] pub type DMA_OUTFIFO_CNT_CH2_R = crate::R<u8, u8>; #[doc = "Reader of field `DMA_OUTFIFO_EMPTY_CH2`"] pub type DMA_OUTFIFO_EMPTY_CH2_R = crate::R<bool, bool>; #[doc = "Reader of field `DMA_OUTFIFO_FULL_CH2`"] pub type DMA_OUTFIFO_FULL_CH2_R = crate::R<bool, bool>; impl R { #[doc = "Bit 26"] #[inline(always)] pub fn dma_out_remain_under_4b_ch2(&self) -> DMA_OUT_REMAIN_UNDER_4B_CH2_R { DMA_OUT_REMAIN_UNDER_4B_CH2_R::new(((self.bits >> 26) & 0x01) != 0) } #[doc = "Bit 25"] #[inline(always)] pub fn dma_out_remain_under_3b_ch2(&self) -> DMA_OUT_REMAIN_UNDER_3B_CH2_R { DMA_OUT_REMAIN_UNDER_3B_CH2_R::new(((self.bits >> 25) & 0x01) != 0) } #[doc = "Bit 24"] #[inline(always)] pub fn dma_out_remain_under_2b_ch2(&self) -> DMA_OUT_REMAIN_UNDER_2B_CH2_R { DMA_OUT_REMAIN_UNDER_2B_CH2_R::new(((self.bits >> 24) & 0x01) != 0) } #[doc = "Bit 23"] #[inline(always)] pub fn dma_out_remain_under_1b_ch2(&self) -> DMA_OUT_REMAIN_UNDER_1B_CH2_R { DMA_OUT_REMAIN_UNDER_1B_CH2_R::new(((self.bits >> 23) & 0x01) != 0) } #[doc = "Bits 2:7"] #[inline(always)] pub fn dma_outfifo_cnt_ch2(&self) -> DMA_OUTFIFO_CNT_CH2_R { DMA_OUTFIFO_CNT_CH2_R::new(((self.bits >> 2) & 0x3f) as u8) } #[doc = "Bit 1"] #[inline(always)] pub fn dma_outfifo_empty_ch2(&self) -> DMA_OUTFIFO_EMPTY_CH2_R { DMA_OUTFIFO_EMPTY_CH2_R::new(((self.bits >> 1) & 0x01) != 0) } #[doc = "Bit 0"] #[inline(always)] pub fn dma_outfifo_full_ch2(&self) -> DMA_OUTFIFO_FULL_CH2_R { DMA_OUTFIFO_FULL_CH2_R::new((self.bits & 0x01) != 0) } }
42.481481
80
0.677419
0bdf994132d7df75ba397a047b0319969b455e90
1,699
js
JavaScript
Log In Form Designs/ReactLoginForm/src/view/connect.js
dyjf97/DevHelpBox
e82dddfc6f23954ff02b0da7e83b07ca60b9d757
[ "MIT" ]
35
2019-10-12T16:46:44.000Z
2022-03-17T09:10:00.000Z
Log In Form Designs/ReactLoginForm/src/view/connect.js
dyjf97/DevHelpBox
e82dddfc6f23954ff02b0da7e83b07ca60b9d757
[ "MIT" ]
110
2019-10-12T13:03:27.000Z
2022-02-28T01:36:39.000Z
Log In Form Designs/ReactLoginForm/src/view/connect.js
dyjf97/DevHelpBox
e82dddfc6f23954ff02b0da7e83b07ca60b9d757
[ "MIT" ]
103
2019-10-12T10:23:50.000Z
2021-09-21T05:50:47.000Z
import {connect} from 'react-redux' import {IsArray} from '../global/utility' import {Map} from 'immutable' function GetDeep(paths) { return (state) => { const pathsSplitted = paths.split('/') return pathsSplitted.reduce((obj, path) => { if (path in obj) return obj[path] if (typeof obj.get !== "function") return Map() return obj.get(path, Map()) }, state) } } function Subs(subscription) { const module = subscription.split('/')[0] const child = subscription.split('/').slice(1).join('/') if (module === "") { return GetDeep(child) } return () => {} } function RecursiveDispatcher(dispatch) { function Rec(specs) { if (typeof specs === "function") { return (...args) => (Rec(specs(...args))) } return dispatch(specs) } return (initialSpecs) => { if(IsArray(initialSpecs)) { return () => Rec(initialSpecs) } return Rec(initialSpecs) } } export default (selectors = {}, specs = {}) => { function StateAccumulator(state, props) { const temp = Object.keys(selectors).reduce((accum, name) => { accum[name] = Subs(selectors[name])(state, props) return accum }, {}) return temp } function DispatchAccumulator(dispatch) { const Dispatcher = RecursiveDispatcher(dispatch) return Object.keys(specs).reduce((accum, name) => { accum[name] = Dispatcher(specs[name]) return accum }, {}) } return connect(StateAccumulator, DispatchAccumulator) }
28.316667
70
0.545026
9ad570a48a2d9674b0d459a52dab8dd3353ba7d4
1,004
sql
SQL
application/migrations/20171004151516_woocommerce_sync_variations.sql
arianvaldivieso/pos
dcd2a807108f1e5f913c90185e0d52512eeb3828
[ "MIT" ]
null
null
null
application/migrations/20171004151516_woocommerce_sync_variations.sql
arianvaldivieso/pos
dcd2a807108f1e5f913c90185e0d52512eeb3828
[ "MIT" ]
null
null
null
application/migrations/20171004151516_woocommerce_sync_variations.sql
arianvaldivieso/pos
dcd2a807108f1e5f913c90185e0d52512eeb3828
[ "MIT" ]
1
2022-01-11T11:46:46.000Z
2022-01-11T11:46:46.000Z
-- woocommerce_sync_variations -- CREATE TABLE `phppos_ecommerce_product_variations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `variation_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `product_quantity` VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci, UNIQUE KEY `product_variation` (`variation_id`), PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; ALTER TABLE `phppos_attributes` ADD `ecommerce_attribute_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL AFTER `id`; ALTER TABLE `phppos_attribute_values` ADD `ecommerce_attribute_term_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL AFTER `id`; ALTER TABLE `phppos_item_variations` ADD `ecommerce_variation_id` VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL AFTER `id`, ADD CONSTRAINT `phppos_item_variations_ibfk_2` FOREIGN KEY (`ecommerce_variation_id`) REFERENCES `phppos_ecommerce_product_variations` (`variation_id`);
62.75
152
0.816733
165a656b33de257820be07ccd1c1c5cb7cb08569
3,577
h
C
examples/spi_flash_filesystem/FileSystem/fs_priv.h
liamw9534/Jumper-nRF52-CppUTest
876eb77bf84a7b14970e41b9d626641bc1148192
[ "Apache-2.0" ]
1
2020-10-21T12:19:16.000Z
2020-10-21T12:19:16.000Z
examples/spi_flash_filesystem/FileSystem/fs_priv.h
liamw9534/Jumper-nRF52-CppUTest
876eb77bf84a7b14970e41b9d626641bc1148192
[ "Apache-2.0" ]
null
null
null
examples/spi_flash_filesystem/FileSystem/fs_priv.h
liamw9534/Jumper-nRF52-CppUTest
876eb77bf84a7b14970e41b9d626641bc1148192
[ "Apache-2.0" ]
1
2020-10-21T12:19:18.000Z
2020-10-21T12:19:18.000Z
/* Copyright 2018 Arribada * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef _FS_PRIV_H_ #define _FS_PRIV_H_ #include <stdint.h> /* Constants */ #define FS_PRIV_NOT_ALLOCATED -1 #ifndef FS_PRIV_MAX_DEVICES #define FS_PRIV_MAX_DEVICES 1 #endif #ifndef FS_PRIV_MAX_HANDLES #define FS_PRIV_MAX_HANDLES 1 #endif /* This defines the maximum number of sectors supported * by the implementation. */ #ifndef FS_PRIV_MAX_SECTORS #define FS_PRIV_MAX_SECTORS 64 #endif #ifndef FS_PRIV_SECTOR_SIZE #define FS_PRIV_SECTOR_SIZE (256 * 1024) #endif #define FS_PRIV_USABLE_SIZE (FS_PRIV_SECTOR_SIZE - FS_PRIV_ALLOC_UNIT_SIZE) #ifndef FS_PRIV_PAGE_SIZE #define FS_PRIV_PAGE_SIZE 512 #endif #define FS_PRIV_SECTOR_ADDR(s) (s * FS_PRIV_SECTOR_SIZE) /* Relative addresses to sector boundary for data structures */ #define FS_PRIV_ALLOC_UNIT_HEADER_REL_ADDRESS 0x00000000 #define FS_PRIV_ALLOC_UNIT_SIZE FS_PRIV_PAGE_SIZE #define FS_PRIV_FILE_DATA_REL_ADDRESS \ (FS_PRIV_ALLOC_UNIT_HEADER_REL_ADDRESS + FS_PRIV_ALLOC_UNIT_SIZE) #define FS_PRIV_NUM_WRITE_SESSIONS 126 /* Address offsets in allocation unit */ #define FS_PRIV_FILE_ID_OFFSET 0 #define FS_PRIV_FILE_PROTECT_OFFSET 1 #define FS_PRIV_NEXT_ALLOC_UNIT_OFFSET 2 #define FS_PRIV_FLAGS_OFFSET 3 #define FS_PRIV_ALLOC_COUNTER_OFFSET 4 #define FS_PRIV_SESSION_OFFSET 8 /* Macros */ /* Types */ typedef union { uint8_t flags; struct { uint8_t mode_flags:4; uint8_t user_flags:4; }; } fs_priv_flags_t; typedef struct { uint8_t file_id; uint8_t file_protect; uint8_t next_allocation_unit; fs_priv_flags_t file_flags; } fs_priv_file_info_t; typedef struct { fs_priv_file_info_t file_info; uint32_t alloc_counter; } fs_priv_alloc_unit_header_t; typedef struct { fs_priv_alloc_unit_header_t header; uint32_t write_offset[FS_PRIV_NUM_WRITE_SESSIONS]; } fs_priv_alloc_unit_t; typedef struct { void *device; fs_priv_alloc_unit_header_t alloc_unit_list[FS_PRIV_MAX_SECTORS]; } fs_priv_t; typedef struct { fs_priv_t *fs_priv; /*!< File system pointer */ fs_priv_flags_t flags; /*!< File open mode flags */ uint8_t file_id; /*!< File identifier for this file */ uint8_t root_allocation_unit; /*!< Root sector of file */ uint8_t curr_allocation_unit; /*!< Current accessed sector of file */ uint8_t curr_session_offset; /*!< Session offset to use */ uint32_t curr_session_value; /*!< Session offset value */ uint32_t last_data_offset; /*!< Read: last readable offset, Write: last flash write position */ uint32_t curr_data_offset; /*!< Current read/write data offset in sector */ uint8_t page_cache[FS_PRIV_PAGE_SIZE]; /*!< Page align cache */ } fs_priv_handle_t; #endif /* _FS_PRIV_H_ */
28.846774
110
0.700308
50a6539b661c77e3c19e2af818dc506360cf0307
389
go
Go
routers/router.go
Fsero/sinker_registry_api
c758c4ffee52afa05d1f47ec52f527aef95a35ea
[ "Apache-2.0" ]
null
null
null
routers/router.go
Fsero/sinker_registry_api
c758c4ffee52afa05d1f47ec52f527aef95a35ea
[ "Apache-2.0" ]
null
null
null
routers/router.go
Fsero/sinker_registry_api
c758c4ffee52afa05d1f47ec52f527aef95a35ea
[ "Apache-2.0" ]
null
null
null
// @APIVersion 1.0.0 // @Title probe API // @Description A simple probe registry API // @Contact fsero package routers import ( "bitbucket.org/fseros/sinker_registry_api/controllers" "github.com/astaxie/beego" ) func init() { ns := beego.NewNamespace("/v1", beego.NSNamespace("/probe", beego.NSInclude( &controllers.ProbeController{}, ), ), ) beego.AddNamespace(ns) }
17.681818
55
0.694087
f03ff005925224be3fdb7edb21130977774e1f37
14,317
py
Python
acme_compact.py
felixfontein/acme-compact
922df35fc70e6f157a51d572a02c12fa34caaa35
[ "MIT" ]
5
2015-12-19T20:09:53.000Z
2017-02-06T08:13:27.000Z
acme_compact.py
felixfontein/acme-compact
922df35fc70e6f157a51d572a02c12fa34caaa35
[ "MIT" ]
null
null
null
acme_compact.py
felixfontein/acme-compact
922df35fc70e6f157a51d572a02c12fa34caaa35
[ "MIT" ]
null
null
null
#!/usr/bin/env python """Command line interface for the compact ACME library.""" import acme_lib import argparse import sys import textwrap def _gen_account_key(account_key, key_length, algorithm): key = acme_lib.create_key(key_length=key_length, algorithm=algorithm) acme_lib.write_file(account_key, key) def _gen_cert_key(key, key_length, algorithm): the_key = acme_lib.create_key(key_length=key_length, algorithm=algorithm) acme_lib.write_file(key, the_key) def _gen_csr(domains, key, csr, must_staple): if csr.endswith('.csr'): config_filename = csr[:-4] + '.cnf' else: config_filename = csr + '.cnf' sys.stderr.write('Writing OpenSSL config to {0}.\n'.format(config_filename)) the_csr = acme_lib.generate_csr(key, config_filename, domains.split(','), must_staple=must_staple) acme_lib.write_file(csr, the_csr) def _print_csr(csr): sys.stdout.write(acme_lib.get_csr_as_text(csr) + '\n') def _get_root(root_url, cert): ic = acme_lib.download_certificate(root_url) if cert is None: sys.stdout.write(ic + '\n') else: acme_lib.write_file(cert, ic + '\n') sys.stderr.write("Stored root certificate at '{0}'.\n".format(cert)) def _get_intermediate(intermediate_url, cert): ic = acme_lib.download_certificate(intermediate_url) if cert is None: sys.stdout.write(ic + '\n') else: acme_lib.write_file(cert, ic + '\n') sys.stderr.write("Stored intermediate certificate at '{0}'.\n".format(cert)) def _get_certificate(account_key, csr, acme_dir, CA, cert, email): sys.stderr.write("Preparing challenges...") state = acme_lib.get_challenges(account_key, csr, CA, email_address=email) sys.stderr.write(" ok\n") try: sys.stderr.write("Writing and verifying challenges...") acme_lib.write_challenges(state, acme_dir) acme_lib.verify_challenges(state) sys.stderr.write(" ok\n") sys.stderr.write("Notifying CA of challenges...") acme_lib.notify_challenges(state) sys.stderr.write(" ok\n") sys.stderr.write("Verifying domains...\n") result = acme_lib.check_challenges(state, csr, lambda domain: sys.stderr.write("Verified domain {0}!\n".format(domain))) sys.stderr.write("Certificate is signed!\n") if cert is None: sys.stdout.write(result) else: acme_lib.write_file(cert, result) sys.stderr.write("Stored certificate at '{0}'.\n".format(cert)) finally: acme_lib.remove_challenges(state, acme_dir) def _get_certificate_part1(statefile, account_key, csr, acme_dir, CA, email): sys.stderr.write("Preparing challenges...") state = acme_lib.get_challenges(account_key, csr, CA, email_address=email) sys.stderr.write(" ok\n") sys.stderr.write("Writing challenges...") acme_lib.write_challenges(state, acme_dir) sys.stderr.write(" ok\n") sys.stderr.write("Serializing state...") with open(statefile, "w") as sf: sf.write(acme_lib.serialize_state(state)) sys.stderr.write(" ok\n") def _get_certificate_part2(statefile, csr, cert): sys.stderr.write("Deserializing state...") with open(statefile, "r") as sf: state = acme_lib.deserialize_state(sf.read()) sys.stderr.write(" ok\n") sys.stderr.write("Verifying challenges...") acme_lib.verify_challenges(state) sys.stderr.write(" ok\n") sys.stderr.write("Notifying CA of challenges...") acme_lib.notify_challenges(state) sys.stderr.write(" ok\n") sys.stderr.write("Verifying domains...\n") result = acme_lib.check_challenges(state, csr, lambda domain: sys.stderr.write("Verified domain {0}!\n".format(domain))) sys.stderr.write("Certificate is signed!\n") if cert is None: sys.stdout.write(result) else: acme_lib.write_file(cert, result) sys.stderr.write("Stored certificate at '{0}'.\n".format(cert)) if __name__ == "__main__": try: parser = argparse.ArgumentParser( formatter_class=argparse.RawDescriptionHelpFormatter, description=textwrap.dedent("""\ This script automates the process of getting a signed TLS certificate from Let's Encrypt using the ACME protocol. It can both be run from the server and from another machine (when splitting the process up in two steps). The script needs to have access to your private account key, so PLEASE READ THROUGH IT! It's only 265+569 lines (including docstrings), so it won't take too long. ===Example Usage: Creating Letsencrypt account key, private key for certificate and CSR=== python acme_compact.py gen-account-key --account-key /path/to/account.key python acme_compact.py gen-key --key /path/to/domain.key python acme_compact.py gen-csr --key /path/to/domain.key --csr /path/to/domain.csr --domains example.com,www.example.com =================== Note that the email address does not have to be specified. Also note that by default, RSA keys are generated. If you want ECC keys, please specify "--algorithm <alg>" with <alg> being "p-256" or "p-384". ===Example Usage: Creating certifiate from CSR on server=== python acme_compact.py get-certificate --account-key /path/to/account.key --email mail@example.com --csr /path/to/domain.csr --acme-dir /usr/share/nginx/html/.well-known/acme-challenge/ --cert /path/to/signed.crt 2>> /var/log/acme_compact.log =================== ===Example Usage: Creating certifiate from CSR from another machine=== python acme_compact.py get-certificate-part-1 --account-key /path/to/account.key --email mail@example.com --csr /path/to/domain.csr --statefile /path/to/state.json --acme-dir /tmp/acme-challenge/ 2>> /var/log/acme_compact.log ... copy files from /tmp/acme-challenge/ into /usr/share/nginx/html/.well-known/acme-challenge/ on the web server ... python acme_compact.py get-certificate-part-2 --csr /path/to/domain.csr --statefile /path/to/state.json --cert /path/to/signed.crt 2>> /var/log/acme_compact.log =================== ===Example Usage: Combining signed certificate with intermediate certificate=== python acme_compact.py get-intermediate --cert /path/to/domain-intermediate.crt cat /path/to/signed.crt /path/to/domain-intermediate.crt > /path/to/signed-with-intermediate.crt =================== """) ) commands = { 'gen-account-key': { 'help': 'Generates an account key.', 'requires': ["account_key"], 'optional': ["key_length", "algorithm"], 'command': _gen_account_key, }, 'gen-key': { 'help': 'Generates a certificate key.', 'requires': ["key"], 'optional': ["key_length", "algorithm"], 'command': _gen_cert_key, }, 'gen-csr': { 'help': 'Generates a certificate signing request (CSR). Under *nix, use /dev/stdin after --key to provide key via stdin.', 'requires': ["domains", "key", "csr"], 'optional': ["must_staple"], 'command': _gen_csr, }, 'print-csr': { 'help': 'Prints the given certificate signing request (CSR) in human-readable form.', 'requires': ["csr"], 'optional': [], 'command': _print_csr, }, 'get-root': { 'help': 'Retrieves the root certificate from the CA server and prints it to stdout (if --cert is not specified).', 'requires': [], 'optional': ["root_url", "cert"], 'command': _get_root, }, 'get-intermediate': { 'help': 'Retrieves the intermediate certificate from the CA server and prints it to stdout (if --cert is not specified).', 'requires': [], 'optional': ["intermediate_url", "cert"], 'command': _get_intermediate, }, 'get-certificate': { 'help': 'Given a CSR and an account key, retrieves a certificate and prints it to stdout (if --cert is not specified).', 'requires': ["account_key", "csr", "acme_dir"], 'optional': ["CA", "cert", "email"], 'command': _get_certificate, }, 'get-certificate-part-1': { 'help': 'Given a CSR and an account key, prepares retrieving a certificate. The generated challenge files must be manually uploaded to their respective positions.', 'requires': ["account_key", "csr", "acme_dir", "statefile"], 'optional': ["CA", "email"], 'command': _get_certificate_part1, }, 'get-certificate-part-2': { 'help': 'Assuming that get-certificate-part-1 ran through and the challenges were uploaded, retrieves a certificate and prints it to stdout (if --cert is not specified).', 'requires': ["csr", "statefile"], 'optional': ["cert"], 'command': _get_certificate_part2, }, } parser.add_argument("command", type=str, nargs='?', help="must be one of {0}".format(', '.join('"{0}"'.format(command) for command in sorted(commands.keys())))) parser.add_argument("--account-key", required=False, help="path to your Let's Encrypt account private key") parser.add_argument("--algorithm", required=False, default="rsa", help="the algorithm to use (rsa, ...)") # FIXME parser.add_argument("--key-length", type=int, default=4096, required=False, help="key length for private keys") parser.add_argument("--key", required=False, help="path to your certificate's private key") parser.add_argument("--csr", required=False, help="path to your certificate signing request") parser.add_argument("--acme-dir", required=False, help="path to the .well-known/acme-challenge/ directory") parser.add_argument("--CA", required=False, default=None, help="CA to use (default: {0})".format(acme_lib.default_ca)) parser.add_argument("--use-staging-CA", required=False, default=False, action='store_true', help="Use Let's Encrypt staging CA") parser.add_argument("--statefile", required=False, default=None, help="state file for two-part run") parser.add_argument("-d", "--domains", required=False, default=None, help="a comma-separated list of domain names") parser.add_argument("--cert", required=False, help="file name to store certificate into (otherwise it is printed on stdout)") parser.add_argument("--email", required=False, help="email address (will be associated with account)") parser.add_argument("--intermediate-url", required=False, default=acme_lib.default_intermediate_url, help="URL for the intermediate certificate (default: {0})".format(acme_lib.default_intermediate_url)) parser.add_argument("--root-url", required=False, default=acme_lib.default_root_url, help="URL for the root certificate (default: {0})".format(acme_lib.default_root_url)) parser.add_argument("--must-staple", required=False, default=False, action='store_true', help="request must staple extension for certificate") args = parser.parse_args() if args.command is None: sys.stderr.write("Command must be one of {1}. More information on the available commands:\n\n".format(args.command, ', '.join('"{0}"'.format(command) for command in sorted(commands.keys())))) for command in sorted(commands.keys()): cmd = commands[command] sys.stderr.write(' {0}:\n'.format(command)) sys.stderr.write('{0}\n'.format(textwrap.indent(cmd['help'], prefix=' '))) if cmd['requires']: sys.stderr.write(' Mandatory options: {0}\n'.format(', '.join(['--{0}'.format(opt.replace('_', '-')) for opt in cmd['requires']]))) if cmd['optional']: sys.stderr.write(' Optional options: {0}\n'.format(', '.join(['--{0}'.format(opt.replace('_', '-')) for opt in cmd['optional']]))) sys.exit(-1) elif args.command not in commands: sys.stderr.write("Unknown command '{0}'! Command must be one of {1}.\n".format(args.command, ', '.join('"{0}"'.format(command) for command in sorted(commands.keys())))) sys.exit(-1) else: cmd = commands[args.command] accepted = set() values = {} if args.__dict__['use_staging_CA']: if args.__dict__['CA'] is not None: sys.stderr.write("Cannot specify both '--use-staging-CA' and provide '--CA'!\n") sys.exit(-1) args.__dict__['CA'] = acme_lib.staging_ca for req in cmd['requires']: accepted.add(req) if args.__dict__[req] is None: sys.stderr.write("Command '{0}' requires that option '{1}' is set!\n".format(args.command, req)) sys.exit(-1) values[req] = args.__dict__[req] for opt in cmd['optional']: accepted.add(opt) values[opt] = args.__dict__[opt] for opt in args.__dict__: if opt == 'command': continue if args.__dict__[opt] is not parser.get_default(opt): if opt not in accepted: sys.stderr.write("Warning: option '{0}' is ignored for this command.\n".format(opt)) if 'CA' in values and values['CA'] is None: values['CA'] = acme_lib.default_ca cmd['command'](**values) except Exception as e: sys.stderr.write("Error occured: {0}\n".format(str(e))) sys.exit(-2)
53.823308
258
0.605155
b696247b66884f6864ed74a351ff8b9b73c6f1b2
317
rb
Ruby
lib/chimper/models/lists.rb
buren/chimper
59672a070e9175282f0fa56cd4580b0e9fc7af8e
[ "MIT" ]
null
null
null
lib/chimper/models/lists.rb
buren/chimper
59672a070e9175282f0fa56cd4580b0e9fc7af8e
[ "MIT" ]
null
null
null
lib/chimper/models/lists.rb
buren/chimper
59672a070e9175282f0fa56cd4580b0e9fc7af8e
[ "MIT" ]
null
null
null
module Chimper class Lists < BaseModel include Enumerable def initialize(data) @data = AwesomeStruct.new( lists: data['lists'], total_items: data['total_items'] ) end def each(&block) @data.lists.each { |list| block.call(List.new(list)) } end end end
18.647059
60
0.589905
2991527359bfc458acdaf1b1330cd2b923490ccd
5,194
lua
Lua
tools/moonscite/lexers/ragel.lua
pigpigyyy/Dorothy
81dbf800d0e3b15c96d67e1fb72b88d3deae780f
[ "Zlib", "libtiff", "BSD-2-Clause", "Apache-2.0", "MIT", "Libpng", "curl", "BSD-3-Clause" ]
3
2020-01-29T02:22:14.000Z
2022-03-03T08:13:45.000Z
tools/moonscite/lexers/ragel.lua
pigpigyyy/Dorothy
81dbf800d0e3b15c96d67e1fb72b88d3deae780f
[ "Zlib", "libtiff", "BSD-2-Clause", "Apache-2.0", "MIT", "Libpng", "curl", "BSD-3-Clause" ]
null
null
null
tools/moonscite/lexers/ragel.lua
pigpigyyy/Dorothy
81dbf800d0e3b15c96d67e1fb72b88d3deae780f
[ "Zlib", "libtiff", "BSD-2-Clause", "Apache-2.0", "MIT", "Libpng", "curl", "BSD-3-Clause" ]
1
2021-05-20T09:04:32.000Z
2021-05-20T09:04:32.000Z
-- Copyright 2006-2011 Mitchell mitchell<att>caladbolg.net. See LICENSE. -- Ragel LPeg lexer. module(..., package.seeall) local P, R, S = lpeg.P, lpeg.R, lpeg.S local ws = token('ragel_whitespace', space^1) -- Comment. local comment = token(l.COMMENT, '#' * nonnewline^0) -- Strings. local sq_str = delimited_range("'", '\\', true) local dq_str = delimited_range('"', '\\', true) local set = delimited_range('[]', '\\', true) local regex = delimited_range('/', '\\', true) * P('i')^-1 local string = token(l.STRING, sq_str + dq_str + set + regex) -- Numbers. local number = token(l.NUMBER, digit^1) -- Built-in machines. local builtin_machine = word_match(word_list{ 'any', 'ascii', 'extend', 'alpha', 'alnum', 'lower', 'upper', 'digit', 'xdigit', 'cntrl', 'graph', 'print', 'punct', 'space', 'zlen', 'empty' }) builtin_machine = token('ragel_builtin_machine', builtin_machine) -- Keywords. local keyword = word_match(word_list{ 'machine', 'include', 'import', 'action', 'getkey', 'access', 'variable', 'prepush', 'postpop', 'write', 'data', 'init', 'exec', 'exports', 'export' }) keyword = token(l.KEYWORD, keyword) local identifier = word -- Actions. local transition = token('ragel_transition', ((S('>@$%') * S('/!^~*')^-1 + '<' * (S('/!^~*')^-1 + '>' * S('/!^~*')^-1)) + S('-=') * '>' * space^0) * identifier^-1) local action_def = #P('action') * keyword * ws * token('ragel_action', identifier) local action = action_def + transition -- Operators. local operator = token(l.OPERATOR, S(',|&-.<:>*?+!^();')) local cpp = require 'cpp' function LoadTokens() cpp.LoadTokens() local ragel = ragel add_token(ragel, 'ragel_whitespace', ws) add_token(ragel, 'comment', comment) add_token(ragel, 'string', string) add_token(ragel, 'number', number) add_token(ragel, 'ragel_builtin_machine', builtin_machine) add_token(ragel, 'action', action) add_token(ragel, 'keyword', keyword) --add_token(ragel, 'identifier', identifier) add_token(ragel, 'operator', operator) add_token(ragel, 'any_char', token('ragel_default', any - '}%%')) -- Embedding C/C++ in Ragel. ragel.in_cpp = false cpp.TokenPatterns.operator = token(l.OPERATOR, S('+-/*%<>!=&|?:;.()[]') + '{' * P(function(input, index) -- If we're in embedded C/C++ in Ragel, increment the brace_count. if cpp.in_ragel then cpp.brace_count = cpp.brace_count + 1 end return index end) + '}' * P(function(input, index) -- If we're in embedded C/C++ in Ragel and the brace_count is zero, -- this is the end of the embedded C/C++; ignore this bracket so the -- cpp.EmbeddedIn[ragel._NAME].end_token is matched. -- Otherwise decrement the brace_count. if cpp.in_ragel then if cpp.brace_count == 0 then return nil end cpp.brace_count = cpp.brace_count - 1 end return index end)) -- Don't match a closing bracket so cpp.EmbeddedIn[ragel._NAME].end_token can -- be matched. cpp.TokenPatterns.any_char = token('any_char', any - '}') local start_token = token(l.OPERATOR, '{' * P(function(input, index) -- If we're in embedded Ragel in C/C++, and this is the first {, we have -- embedded C/C++ in Ragel; set the flag. if cpp.in_ragel and not ragel.in_cpp then ragel.in_cpp = true return index end end)) local end_token = token(l.OPERATOR, '}' * P(function(input, index) -- If we're in embedded C/C++ in Ragel and the brace_count is zero, this -- is the end of embedded C/C++; unset the flag. if cpp.in_ragel and cpp.brace_count == 0 then ragel.in_cpp = false return index end end)) make_embeddable(cpp, ragel, start_token, end_token) embed_language(ragel, cpp) -- Embedding Ragel in C/C++. cpp.in_ragel = false cpp.brace_count = 0 start_token = token('ragel_tag', '%%{' * P(function(input, index) -- Set the flag for embedded Ragel in C/C++. cpp.in_ragel = true return index end)) end_token = token('ragel_tag', '}%%' * P(function(input, index) -- Unset the flag for embedded Ragel in C/C++. cpp.in_ragel = false return index end)) make_embeddable(ragel, cpp, start_token, end_token) -- Because this is a doubly-embedded language lexer (cpp -> ragel -> cpp), -- we need the structure: -- ragel_start * (cpp_start * cpp_token * cpp_end + ragel_token) * ragel_end + -- cpp_token -- embed_language will not do this, because when rebuild_token is called on -- ragel, the C/C++ embedded tokens are not considered; Ragel is embedded in -- C/C++, but the fact that C/C++ should be embedded in Ragel is forgotten. local ecpp = cpp.EmbeddedIn[ragel._NAME] local eragel = ragel.EmbeddedIn[cpp._NAME] eragel.token = ecpp.start_token * ecpp.token^0 * ecpp.end_token^-1 + eragel.token embed_language(cpp, ragel) UseOtherTokens = cpp.Tokens end function LoadStyles() --cpp.LoadStyles() add_style('ragel_whitespace', style_nothing) add_style('ragel_builtin_machine', style_keyword) add_style('ragel_transition', style_definition) add_style('ragel_action', style_definition) add_style('ragel_default', style_nothing) add_style('ragel_tag', style_embedded) end
35.82069
80
0.660762
698fc60b65d4b3a25846438246249fa930c4a9fc
432
lua
Lua
runtime/plugins/ftoptions/ftoptions.lua
IOAyman/micro
5af5140362e9eb4e2503aba5c1555004890a5226
[ "Apache-2.0", "MIT" ]
1
2021-01-10T15:21:35.000Z
2021-01-10T15:21:35.000Z
runtime/plugins/ftoptions/ftoptions.lua
Jipok/micro
5af5140362e9eb4e2503aba5c1555004890a5226
[ "Apache-2.0", "MIT" ]
null
null
null
runtime/plugins/ftoptions/ftoptions.lua
Jipok/micro
5af5140362e9eb4e2503aba5c1555004890a5226
[ "Apache-2.0", "MIT" ]
null
null
null
if GetOption("ftoptions") == nil then AddOption("ftoptions", true) end function onViewOpen(view) if not GetOption("ftoptions") then return end local ft = view.Buf.Settings["filetype"] if ft == "makefile" or ft == "go" then SetOption("tabstospaces", "off") elseif ft == "python" or ft == "python2" or ft == "python3" or ft == "yaml" then SetOption("tabstospaces", "on") end end
24
84
0.608796
410c8c5808599c2ac71ac00ed000b67498c111f7
6,600
h
C
Code/Framework/AzCore/AzCore/std/typetraits/has_member_function.h
cypherdotXd/o3de
bb90c4ddfe2d495e9c00ebf1e2650c6d603a5676
[ "Apache-2.0", "MIT" ]
11
2021-07-08T09:58:26.000Z
2022-03-17T17:59:26.000Z
Code/Framework/AzCore/AzCore/std/typetraits/has_member_function.h
RoddieKieley/o3de
e804fd2a4241b039a42d9fa54eaae17dc94a7a92
[ "Apache-2.0", "MIT" ]
29
2021-07-06T19:33:52.000Z
2022-03-22T10:27:49.000Z
Code/Framework/AzCore/AzCore/std/typetraits/has_member_function.h
RoddieKieley/o3de
e804fd2a4241b039a42d9fa54eaae17dc94a7a92
[ "Apache-2.0", "MIT" ]
4
2021-07-06T19:24:43.000Z
2022-03-31T12:42:27.000Z
/* * Copyright (c) Contributors to the Open 3D Engine Project. * For complete copyright and license terms please see the LICENSE at the root of this distribution. * * SPDX-License-Identifier: Apache-2.0 OR MIT * */ #ifndef AZSTD_TYPE_TRAITS_HAS_MEMBER_FUNCTION_INCLUDED #define AZSTD_TYPE_TRAITS_HAS_MEMBER_FUNCTION_INCLUDED #include <AzCore/std/typetraits/is_class.h> /** * Helper to create checkers for member function inside a class. * * Ex. AZ_HAS_MEMBER(IsReadyMember,IsReady,void,()) * struct A {}; * struct B * { * void IsReady(); * }; * HasIsReadyMember<A>::value (== false) * HasIsReadyMember<B>::value (== true) */ #define AZ_HAS_MEMBER(_HasName, _FunctionName, _ResultType, _ParamsSignature) \ template<bool V> \ struct _HasName##ResultType { typedef AZStd::true_type type; }; \ template<> \ struct _HasName##ResultType<false> { typedef AZStd::false_type type; }; \ template<class T, bool isClass = AZStd::is_class<T>::value > \ class Has##_HasName { \ typedef char Yes; \ typedef long No; \ template<class U, U> \ struct TypeCheck; \ template<class U> \ struct Helper { typedef _ResultType (U::* mfp) _ParamsSignature; }; \ template<class C> \ static Yes ClassCheck(TypeCheck< typename Helper<C>::mfp, & C::_FunctionName>*); \ template<class C> \ static No ClassCheck(...); \ public: \ static const bool value = (sizeof(ClassCheck< typename AZStd::remove_const<T>::type >(0)) == sizeof(Yes)); \ typedef typename _HasName##ResultType<value>::type type; \ }; \ template<class T > \ struct Has##_HasName<T, false> { \ static const bool value = false; \ typedef AZStd::false_type type; \ }; #define AZ_HAS_STATIC_MEMBER(_HasName, _FunctionName, _ResultType, _ParamsSignature) \ template<bool V, bool dummy = true> \ struct _HasName##ResultType { typedef AZStd::true_type type; }; \ template<bool dummy> \ struct _HasName##ResultType<false, dummy> { typedef AZStd::false_type type; }; \ template<class T, bool isClass = AZStd::is_class<T>::value > \ class Has##_HasName { \ typedef char Yes; \ typedef long No; \ template<class U, U> \ struct TypeCheck; \ template<class U> \ struct Helper { typedef _ResultType (* mfp) _ParamsSignature; }; \ template<class C> \ static Yes ClassCheck(TypeCheck< typename Helper<C>::mfp, & C::_FunctionName>*); \ template<class C> \ static No ClassCheck(...); \ public: \ static const bool value = (sizeof(ClassCheck< typename AZStd::remove_const<T>::type >(0)) == sizeof(Yes)); \ typedef typename _HasName##ResultType<value>::type type; \ }; \ template<class T > \ struct Has##_HasName<T, false> { \ static const bool value = false; \ typedef AZStd::false_type type; \ }; #endif // AZSTD_TYPE_TRAITS_HAS_MEMBER_FUNCTION_INCLUDED #pragma once
81.481481
116
0.295758
29325a76d256ebf20059a60e6cd124418b6f3bb1
506
swift
Swift
20201217/20201217.playground/Pages/drop.xcplaygroundpage/Contents.swift
akio0911/til
fcc264b48905d3e883fc7ba839ac4eb437c877fb
[ "MIT" ]
null
null
null
20201217/20201217.playground/Pages/drop.xcplaygroundpage/Contents.swift
akio0911/til
fcc264b48905d3e883fc7ba839ac4eb437c877fb
[ "MIT" ]
null
null
null
20201217/20201217.playground/Pages/drop.xcplaygroundpage/Contents.swift
akio0911/til
fcc264b48905d3e883fc7ba839ac4eb437c877fb
[ "MIT" ]
null
null
null
//: [Previous](@previous) import Foundation import Combine // drop(untilOutputFrom:) | Apple Developer Documentation // https://developer.apple.com/documentation/combine/publisher/drop(untiloutputfrom:) let upstream = PassthroughSubject<Int,Never>() let second = PassthroughSubject<String,Never>() let cancellable = upstream .drop(untilOutputFrom: second) .sink(receiveValue: {print($0)}) upstream.send(1) upstream.send(2) second.send("A") upstream.send(3) upstream.send(4) //: [Next](@next)
22
85
0.743083
b1d04d61f684c34722172edf091bb5b7fdd91e6c
423
h
C
src/developer/debug/shared/arch.h
allansrc/fuchsia
a2c235b33fc4305044d496354a08775f30cdcf37
[ "BSD-2-Clause" ]
210
2019-02-05T12:45:09.000Z
2022-03-28T07:59:06.000Z
src/developer/debug/shared/arch.h
allansrc/fuchsia
a2c235b33fc4305044d496354a08775f30cdcf37
[ "BSD-2-Clause" ]
5
2019-12-04T15:13:37.000Z
2020-02-19T08:11:38.000Z
src/developer/debug/shared/arch.h
allansrc/fuchsia
a2c235b33fc4305044d496354a08775f30cdcf37
[ "BSD-2-Clause" ]
73
2019-03-06T18:55:23.000Z
2022-03-26T12:04:51.000Z
// Copyright 2021 The Fuchsia Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SRC_DEVELOPER_DEBUG_SHARED_ARCH_H_ #define SRC_DEVELOPER_DEBUG_SHARED_ARCH_H_ #include <inttypes.h> namespace debug { enum class Arch : uint32_t { kUnknown = 0, kX64, kArm64 }; } // namespace debug #endif // SRC_DEVELOPER_DEBUG_SHARED_ARCH_H_
24.882353
73
0.77305
3bf1eca6dc404e6374facadb8fa5c541fd56f20d
1,575
h
C
src/oidc-apis.h
redpesk-common/sec-gate-oidc
d8c611812b286e9736d6816344652999f00c3e50
[ "MIT" ]
null
null
null
src/oidc-apis.h
redpesk-common/sec-gate-oidc
d8c611812b286e9736d6816344652999f00c3e50
[ "MIT" ]
null
null
null
src/oidc-apis.h
redpesk-common/sec-gate-oidc
d8c611812b286e9736d6816344652999f00c3e50
[ "MIT" ]
null
null
null
/* * Copyright (C) 2015-2021 IoT.bzh Company * Author "Fulup Ar Foll" * * $RP_BEGIN_LICENSE$ * Commercial License Usage * Licensees holding valid commercial IoT.bzh licenses may use this file in * accordance with the commercial license agreement provided with the * Software or, alternatively, in accordance with the terms contained in * a written agreement between you and The IoT.bzh Company. For licensing terms * and conditions see https://www.iot.bzh/terms-conditions. For further * information use the contact form at https://www.iot.bzh/contact. * * GNU General Public License Usage * Alternatively, this file may be used under the terms of the GNU General * Public license version 3. This license is as published by the Free Software * Foundation and appearing in the file LICENSE.GPLv3 included in the packaging * of this file. Please review the following information to ensure the GNU * General Public License requirements will be met * https://www.gnu.org/licenses/gpl-3.0.html. * $RP_END_LICENSE$ */ #pragma once #include "oidc-core.h" typedef struct oidcApisS { const char *uid; const char *uri; const char *info; int loa; int lazy; const char **roles; oidcCoreHdlT *oidc; } oidcApisT; oidcApisT *apisParseConfig (oidcCoreHdlT * oidc, json_object * apisJ); int apisRegisterOne (oidcCoreHdlT * oidc, oidcApisT * api, afb_apiset * declare_set, afb_apiset * call_set); int apisCreateSvc (oidcCoreHdlT * oidc, oidcApisT * api, afb_apiset * declare_set, afb_apiset * call_set, afb_verb_v4 * apiVerbs);
37.5
130
0.742857
7f0cfcab32b59b1a01e3bb41e2a4ca5fa05ae269
11,980
rs
Rust
milli/src/update/index_documents/typed_chunk.rs
wave909/milli
ea15ad6c34492b32eb7ac06e69de02b6dc70a707
[ "MIT" ]
null
null
null
milli/src/update/index_documents/typed_chunk.rs
wave909/milli
ea15ad6c34492b32eb7ac06e69de02b6dc70a707
[ "MIT" ]
null
null
null
milli/src/update/index_documents/typed_chunk.rs
wave909/milli
ea15ad6c34492b32eb7ac06e69de02b6dc70a707
[ "MIT" ]
null
null
null
use std::borrow::Cow; use std::convert::TryInto; use std::fs::File; use heed::types::ByteSlice; use heed::{BytesDecode, RwTxn}; use roaring::RoaringBitmap; use super::helpers::{ self, roaring_bitmap_from_u32s_array, serialize_roaring_bitmap, valid_lmdb_key, CursorClonableMmap, }; use crate::heed_codec::facet::{decode_prefix_string, encode_prefix_string}; use crate::update::index_documents::helpers::into_clonable_grenad; use crate::{ lat_lng_to_xyz, BoRoaringBitmapCodec, CboRoaringBitmapCodec, DocumentId, GeoPoint, Index, Result, }; pub(crate) enum TypedChunk { DocidWordPositions(grenad::Reader<CursorClonableMmap>), FieldIdDocidFacetStrings(grenad::Reader<CursorClonableMmap>), FieldIdDocidFacetNumbers(grenad::Reader<CursorClonableMmap>), Documents(grenad::Reader<CursorClonableMmap>), FieldIdWordcountDocids(grenad::Reader<File>), NewDocumentsIds(RoaringBitmap), WordDocids(grenad::Reader<File>), WordPositionDocids(grenad::Reader<File>), WordPairProximityDocids(grenad::Reader<File>), FieldIdFacetStringDocids(grenad::Reader<File>), FieldIdFacetNumberDocids(grenad::Reader<File>), GeoPoints(grenad::Reader<File>), } /// Write typed chunk in the corresponding LMDB database of the provided index. /// Return new documents seen. pub(crate) fn write_typed_chunk_into_index( typed_chunk: TypedChunk, index: &Index, wtxn: &mut RwTxn, index_is_empty: bool, ) -> Result<(RoaringBitmap, bool)> { let mut is_merged_database = false; match typed_chunk { TypedChunk::DocidWordPositions(docid_word_positions_iter) => { write_entries_into_database( docid_word_positions_iter, &index.docid_word_positions, wtxn, index_is_empty, |value, buffer| { // ensure that values are unique and ordered let positions = roaring_bitmap_from_u32s_array(value); BoRoaringBitmapCodec::serialize_into(&positions, buffer); Ok(buffer) }, |new_values, db_values, buffer| { let new_values = roaring_bitmap_from_u32s_array(new_values); let positions = match BoRoaringBitmapCodec::bytes_decode(db_values) { Some(db_values) => new_values | db_values, None => new_values, // should not happen }; BoRoaringBitmapCodec::serialize_into(&positions, buffer); Ok(()) }, )?; } TypedChunk::Documents(mut obkv_documents_iter) => { while let Some((key, value)) = obkv_documents_iter.next()? { index.documents.remap_types::<ByteSlice, ByteSlice>().put(wtxn, key, value)?; } } TypedChunk::FieldIdWordcountDocids(fid_word_count_docids_iter) => { append_entries_into_database( fid_word_count_docids_iter, &index.field_id_word_count_docids, wtxn, index_is_empty, |value, _buffer| Ok(value), merge_cbo_roaring_bitmaps, )?; is_merged_database = true; } TypedChunk::NewDocumentsIds(documents_ids) => { return Ok((documents_ids, is_merged_database)) } TypedChunk::WordDocids(word_docids_iter) => { let mut word_docids_iter = unsafe { into_clonable_grenad(word_docids_iter) }?; append_entries_into_database( word_docids_iter.clone(), &index.word_docids, wtxn, index_is_empty, |value, _buffer| Ok(value), merge_roaring_bitmaps, )?; // create fst from word docids let mut builder = fst::SetBuilder::memory(); while let Some((word, _value)) = word_docids_iter.next()? { // This is a lexicographically ordered word position // we use the key to construct the words fst. builder.insert(word)?; } let fst = builder.into_set().map_data(std::borrow::Cow::Owned)?; let db_fst = index.words_fst(wtxn)?; // merge new fst with database fst let union_stream = fst.op().add(db_fst.stream()).union(); let mut builder = fst::SetBuilder::memory(); builder.extend_stream(union_stream)?; let fst = builder.into_set(); index.put_words_fst(wtxn, &fst)?; is_merged_database = true; } TypedChunk::WordPositionDocids(word_position_docids_iter) => { append_entries_into_database( word_position_docids_iter, &index.word_position_docids, wtxn, index_is_empty, |value, _buffer| Ok(value), merge_cbo_roaring_bitmaps, )?; is_merged_database = true; } TypedChunk::FieldIdFacetNumberDocids(facet_id_f64_docids_iter) => { append_entries_into_database( facet_id_f64_docids_iter, &index.facet_id_f64_docids, wtxn, index_is_empty, |value, _buffer| Ok(value), merge_cbo_roaring_bitmaps, )?; is_merged_database = true; } TypedChunk::WordPairProximityDocids(word_pair_proximity_docids_iter) => { append_entries_into_database( word_pair_proximity_docids_iter, &index.word_pair_proximity_docids, wtxn, index_is_empty, |value, _buffer| Ok(value), merge_cbo_roaring_bitmaps, )?; is_merged_database = true; } TypedChunk::FieldIdDocidFacetNumbers(mut fid_docid_facet_number) => { let index_fid_docid_facet_numbers = index.field_id_docid_facet_f64s.remap_types::<ByteSlice, ByteSlice>(); while let Some((key, value)) = fid_docid_facet_number.next()? { if valid_lmdb_key(key) { index_fid_docid_facet_numbers.put(wtxn, key, &value)?; } } } TypedChunk::FieldIdDocidFacetStrings(mut fid_docid_facet_string) => { let index_fid_docid_facet_strings = index.field_id_docid_facet_strings.remap_types::<ByteSlice, ByteSlice>(); while let Some((key, value)) = fid_docid_facet_string.next()? { if valid_lmdb_key(key) { index_fid_docid_facet_strings.put(wtxn, key, &value)?; } } } TypedChunk::FieldIdFacetStringDocids(facet_id_string_docids) => { append_entries_into_database( facet_id_string_docids, &index.facet_id_string_docids, wtxn, index_is_empty, |value, _buffer| Ok(value), |new_values, db_values, buffer| { let (_, new_values) = decode_prefix_string(new_values).unwrap(); let new_values = RoaringBitmap::deserialize_from(new_values)?; let (db_original, db_values) = decode_prefix_string(db_values).unwrap(); let db_values = RoaringBitmap::deserialize_from(db_values)?; let values = new_values | db_values; encode_prefix_string(db_original, buffer)?; Ok(values.serialize_into(buffer)?) }, )?; is_merged_database = true; } TypedChunk::GeoPoints(mut geo_points) => { let mut rtree = index.geo_rtree(wtxn)?.unwrap_or_default(); let mut geo_faceted_docids = index.geo_faceted_documents_ids(wtxn)?; while let Some((key, value)) = geo_points.next()? { // convert the key back to a u32 (4 bytes) let docid = key.try_into().map(DocumentId::from_be_bytes).unwrap(); // convert the latitude and longitude back to a f64 (8 bytes) let (lat, tail) = helpers::try_split_array_at::<u8, 8>(value).unwrap(); let (lng, _) = helpers::try_split_array_at::<u8, 8>(tail).unwrap(); let point = [f64::from_ne_bytes(lat), f64::from_ne_bytes(lng)]; let xyz_point = lat_lng_to_xyz(&point); rtree.insert(GeoPoint::new(xyz_point, (docid, point))); geo_faceted_docids.insert(docid); } index.put_geo_rtree(wtxn, &rtree)?; index.put_geo_faceted_documents_ids(wtxn, &geo_faceted_docids)?; } } Ok((RoaringBitmap::new(), is_merged_database)) } fn merge_roaring_bitmaps(new_value: &[u8], db_value: &[u8], buffer: &mut Vec<u8>) -> Result<()> { let new_value = RoaringBitmap::deserialize_from(new_value)?; let db_value = RoaringBitmap::deserialize_from(db_value)?; let value = new_value | db_value; Ok(serialize_roaring_bitmap(&value, buffer)?) } fn merge_cbo_roaring_bitmaps( new_value: &[u8], db_value: &[u8], buffer: &mut Vec<u8>, ) -> Result<()> { Ok(CboRoaringBitmapCodec::merge_into( &[Cow::Borrowed(db_value), Cow::Borrowed(new_value)], buffer, )?) } /// Write provided entries in database using serialize_value function. /// merge_values function is used if an entry already exist in the database. fn write_entries_into_database<R, K, V, FS, FM>( mut data: grenad::Reader<R>, database: &heed::Database<K, V>, wtxn: &mut RwTxn, index_is_empty: bool, serialize_value: FS, merge_values: FM, ) -> Result<()> where R: std::io::Read, FS: for<'a> Fn(&'a [u8], &'a mut Vec<u8>) -> Result<&'a [u8]>, FM: Fn(&[u8], &[u8], &mut Vec<u8>) -> Result<()>, { let mut buffer = Vec::new(); let database = database.remap_types::<ByteSlice, ByteSlice>(); while let Some((key, value)) = data.next()? { if valid_lmdb_key(key) { buffer.clear(); let value = if index_is_empty { serialize_value(value, &mut buffer)? } else { match database.get(wtxn, key)? { Some(prev_value) => { merge_values(value, prev_value, &mut buffer)?; &buffer[..] } None => serialize_value(value, &mut buffer)?, } }; database.put(wtxn, key, value)?; } } Ok(()) } /// Write provided entries in database using serialize_value function. /// merge_values function is used if an entry already exist in the database. /// All provided entries must be ordered. /// If the index is not empty, write_entries_into_database is called instead. fn append_entries_into_database<R, K, V, FS, FM>( mut data: grenad::Reader<R>, database: &heed::Database<K, V>, wtxn: &mut RwTxn, index_is_empty: bool, serialize_value: FS, merge_values: FM, ) -> Result<()> where R: std::io::Read, FS: for<'a> Fn(&'a [u8], &'a mut Vec<u8>) -> Result<&'a [u8]>, FM: Fn(&[u8], &[u8], &mut Vec<u8>) -> Result<()>, { if !index_is_empty { return write_entries_into_database( data, database, wtxn, false, serialize_value, merge_values, ); } let mut buffer = Vec::new(); let mut database = database.iter_mut(wtxn)?.remap_types::<ByteSlice, ByteSlice>(); while let Some((key, value)) = data.next()? { if valid_lmdb_key(key) { buffer.clear(); let value = serialize_value(value, &mut buffer)?; unsafe { database.append(key, value)? }; } } Ok(()) }
38.770227
97
0.580634
75f89c0ae76157301fb4a7dbebd04ea63a97113b
3,228
php
PHP
resources/views/front/layouts/rightMenu.blade.php
wangjacsi/opengeek
555e0b52e60ab1e4d105e9a81bfd6f30ea6c361d
[ "MIT" ]
null
null
null
resources/views/front/layouts/rightMenu.blade.php
wangjacsi/opengeek
555e0b52e60ab1e4d105e9a81bfd6f30ea6c361d
[ "MIT" ]
null
null
null
resources/views/front/layouts/rightMenu.blade.php
wangjacsi/opengeek
555e0b52e60ab1e4d105e9a81bfd6f30ea6c361d
[ "MIT" ]
null
null
null
<!-- Right-menu --> <div class="mCustomScrollbar" data-mcs-theme="dark"> <div class="popup right-menu"> <div class="right-menu-wrap"> <div class="user-menu-close js-close-aside"> <a href="#" class="user-menu-content js-clode-aside"> <span></span> <span></span> </a> </div> <div class="logo"> <a href="index.html" class="full-block-link"></a> <img src="img/logo-eye.png" alt="Seosight"> <div class="logo-text"> <div class="logo-title">Seosight</div> </div> </div> <p class="text">Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius est etiam processus dynamicus. </p> </div> <div class="widget login"> <h4 class="login-title">Sign In to Your Account</h4> <input class="email input-standard-grey" placeholder="Username or Email" type="text"> <input class="password input-standard-grey" placeholder="Password" type="password"> <div class="login-btn-wrap"> <div class="btn btn-medium btn--dark btn-hover-shadow"> <span class="text">login now</span> <span class="semicircle"></span> </div> <div class="remember-wrap"> <div class="checkbox"> <input id="remember" type="checkbox" name="remember" value="remember"> <label for="remember">Remember Me</label> </div> </div> </div> <div class="helped">Lost your password?</div> <div class="helped">Register Now</div> </div> <div class="widget contacts"> <h4 class="contacts-title">Get In Touch</h4> <p class="contacts-text">Lorem ipsum dolor sit amet, duis metus ligula amet in purus, vitae donec vestibulum enim, tincidunt massa sit, convallis ipsum. </p> <div class="contacts-item"> <img src="img/contact4.png" alt="phone"> <div class="content"> <a href="#" class="title">8 800 567.890.11</a> <p class="sub-title">Mon-Fri 9am-6pm</p> </div> </div> <div class="contacts-item"> <img src="img/contact5.png" alt="phone"> <div class="content"> <a href="#" class="title">info@seosight.com</a> <p class="sub-title">online support</p> </div> </div> <div class="contacts-item"> <img src="img/contact6.png" alt="phone"> <div class="content"> <a href="#" class="title">Melbourne, Australia</a> <p class="sub-title">795 South Park Avenue</p> </div> </div> </div> </div> </div> <!-- ... End Right-menu -->
32.938776
101
0.462825
190480aa33e34ee94b0ac0008b8f0fa9c1ee4e3a
787
css
CSS
src/css/font-face.css
miquecg/miquecg.github.io
e5fba667b91548af31464971f7cd08855acf5aa3
[ "CC-BY-4.0" ]
1
2015-02-22T13:52:44.000Z
2015-02-22T13:52:44.000Z
src/css/font-face.css
miquecg/miquecg.github.io
e5fba667b91548af31464971f7cd08855acf5aa3
[ "CC-BY-4.0" ]
null
null
null
src/css/font-face.css
miquecg/miquecg.github.io
e5fba667b91548af31464971f7cd08855acf5aa3
[ "CC-BY-4.0" ]
null
null
null
/******************************************************************************* ICONOS *******************************************************************************/ @font-face { /* * http://stackoverflow.com/a/16978219 * * 1. IE9 compat modes * 2. IE6-IE8 * 3. Modern browsers * 4. Safari, Android, iOS * 5. Legacy iOS */ font-family: 'awesome'; src: url('../fuentes/86ff2362.awesome.eot'); src: url('../fuentes/86ff2362.awesome.eot?#iefix') format('embedded-opentype'), url('../fuentes/0cad6bfe.awesome.woff') format('woff'), url('../fuentes/ef30d4a6.awesome.ttf') format('truetype'), url('../fuentes/41209196.awesome.svg#awesome') format('svg'); font-weight: normal; font-style: normal; }
34.217391
83
0.468869
0eb80e9963a56643c32e91e392f9a487910464f0
507
tsx
TypeScript
demo/content/examples/mdx-components/FakeClock.tsx
AleksandrMolchagin/gatsby-project-kb
8221f6f9c67701f04efa576cd180a4b46dc49664
[ "MIT" ]
35
2021-01-29T15:58:12.000Z
2022-03-18T07:46:38.000Z
demo/content/examples/mdx-components/FakeClock.tsx
AleksandrMolchagin/gatsby-project-kb
8221f6f9c67701f04efa576cd180a4b46dc49664
[ "MIT" ]
43
2021-01-31T05:15:26.000Z
2022-03-26T06:13:15.000Z
demo/content/examples/mdx-components/FakeClock.tsx
AleksandrMolchagin/gatsby-project-kb
8221f6f9c67701f04efa576cd180a4b46dc49664
[ "MIT" ]
16
2021-03-04T03:59:00.000Z
2022-03-18T07:48:14.000Z
import React, { useState, useEffect } from 'react' interface DemoProps {} const Demo = ({}: DemoProps) => { const [date, setDate] = useState(new Date()) useEffect(() => { const timerId = setInterval(() => { setDate(new Date()) }, 1000) return () => { window.clearInterval(timerId) } }) return ( <p> <span>A fake clock: </span> <span> {date.getHours()}:{date.getMinutes()}:{date.getSeconds()} </span> </p> ) } export default Demo
17.482759
65
0.546351
85ea371d94b80fd73cbcf9dbfa6e06f07d6051ca
3,011
h
C
code/editors/Oxy.SDK/RenderViewLE.h
Pavel3333/xray-oxygen
42331cd5f30511214c704d6ca9d919c209363eea
[ "Apache-2.0" ]
6
2020-07-06T13:34:28.000Z
2021-07-12T10:36:23.000Z
code/editors/Oxy.SDK/RenderViewLE.h
Pavel3333/xray-oxygen
42331cd5f30511214c704d6ca9d919c209363eea
[ "Apache-2.0" ]
null
null
null
code/editors/Oxy.SDK/RenderViewLE.h
Pavel3333/xray-oxygen
42331cd5f30511214c704d6ca9d919c209363eea
[ "Apache-2.0" ]
5
2020-10-18T11:55:26.000Z
2022-03-28T07:21:35.000Z
/****************************************************************************************************************** ***** Authors: Lord ***** Date of creation: 03.05.2018 ***** Description: File of impelmentation Render of DockPanel's element for integration in Main Form in Level Editor ***** Copyright: GSC, OxyGen Team 2018 (C) ******************************************************************************************************************/ #pragma once namespace OxySDK { /* Reductions: RV -> Render_View MItem -> MenuItem ZExtent -> Zoom Extent FView -> Front View BView -> Back View LView -> Left View RView -> Right View TView -> Top View BView -> Bottom View RView -> Reset View CamLookP -> Perspective, Camera moves very fast but it's hard to move for some detail position like in CamLookF CamLookA -> Aligment, Camera's View centered at center scene and Camera's view is fixed you can only rotate camera, but can't move to forward and another directions CamLookF -> First Look Camera it's like your camera moves very slow, but realistic */ public ref class RenderView : public WeifenLuo::WinFormsUI::DockContent { private: // Context Menu System::Windows::Forms::ContextMenu RV_ContextMenu; System::Windows::Forms::MenuItem RV_MItem_Undo; System::Windows::Forms::MenuItem RV_MItem_Redo; System::Windows::Forms::MenuItem RV_MItem_Cursor; System::Windows::Forms::MenuItem RV_MItem_Add; System::Windows::Forms::MenuItem RV_MItem_Move; System::Windows::Forms::MenuItem RV_MItem_Rotate; System::Windows::Forms::MenuItem RV_MItem_UniformScale; System::Windows::Forms::MenuItem RV_MItem_AxisX; System::Windows::Forms::MenuItem RV_MItem_AxisY; System::Windows::Forms::MenuItem RV_MItem_AxisZ; System::Windows::Forms::MenuItem RV_MItem_AxisZX; System::Windows::Forms::MenuItem RV_MItem_CSToggle; System::Windows::Forms::MenuItem RV_MItem_NonUniformScale; System::Windows::Forms::MenuItem RV_MItem_GridSnap; System::Windows::Forms::MenuItem RV_MItem_ObjectSnap; //@ Moving Snap To Object Toggle System::Windows::Forms::MenuItem RV_MItem_MSTOT; System::Windows::Forms::MenuItem RV_MItem_NormalAlig; System::Windows::Forms::MenuItem RV_MItem_VertexSnap; System::Windows::Forms::MenuItem RV_MItem_AngleSnap; System::Windows::Forms::MenuItem RV_MItem_MovingSnap; System::Windows::Forms::MenuItem RV_MItem_ZExtent; System::Windows::Forms::MenuItem RV_MItem_ZExtents; System::Windows::Forms::MenuItem RV_MItem_FView; System::Windows::Forms::MenuItem RV_MItem_BView; System::Windows::Forms::MenuItem RV_MItem_LView; System::Windows::Forms::MenuItem RV_MItem_RView; System::Windows::Forms::MenuItem RV_MItem_TView; System::Windows::Forms::MenuItem RV_MItem_BView; System::Windows::Forms::MenuItem RV_MItem_RView; System::Windows::Forms::MenuItem RV_MItem_CamLookP; System::Windows::Forms::MenuItem RV_MItem_CamLookA; System::Windows::Forms::MenuItem RV_MItem_CamLookF; // Context Menu }; }
42.408451
167
0.699435
2df771be8bb1ee7b40d5e4bb3273e3eb4ac3ebf1
1,021
rs
Rust
src/vulkan/vk/vk_sampler_address_mode.rs
symil/lava
29697d763f76f3d2bb50787c6b7b3c8e5a687fac
[ "MIT" ]
6
2019-12-02T02:02:14.000Z
2020-06-21T15:47:38.000Z
src/vulkan/vk/vk_sampler_address_mode.rs
symil/lava
29697d763f76f3d2bb50787c6b7b3c8e5a687fac
[ "MIT" ]
14
2019-02-02T07:46:45.000Z
2020-06-23T14:01:14.000Z
src/vulkan/vk/vk_sampler_address_mode.rs
Anovs/lava
29697d763f76f3d2bb50787c6b7b3c8e5a687fac
[ "MIT" ]
null
null
null
// Generated by `scripts/generate.js` use utils::vk_traits::*; /// Wrapper for [VkSamplerAddressMode](https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VkSamplerAddressMode.html). #[repr(i32)] #[derive(Debug, PartialEq, Copy, Clone)] pub enum VkSamplerAddressMode { Repeat = 0, MirroredRepeat = 1, ClampToEdge = 2, ClampToBorder = 3, MirrorClampToEdge = 4, } #[doc(hidden)] pub type RawVkSamplerAddressMode = i32; impl VkWrappedType<RawVkSamplerAddressMode> for VkSamplerAddressMode { fn vk_to_raw(src: &VkSamplerAddressMode, dst: &mut RawVkSamplerAddressMode) { *dst = *src as i32 } } impl VkRawType<VkSamplerAddressMode> for RawVkSamplerAddressMode { fn vk_to_wrapped(src: &RawVkSamplerAddressMode) -> VkSamplerAddressMode { unsafe { *((src as *const i32) as *const VkSamplerAddressMode) } } } impl Default for VkSamplerAddressMode { fn default() -> VkSamplerAddressMode { VkSamplerAddressMode::Repeat } }
27.594595
136
0.703232
2f0da171240a0c9db60a8cc5e469677bccd122a8
20,659
php
PHP
data/Chunks/1800/90/1/1891-01-28.php
PHPCraftdream/astro_de421
28bf0273641aa4805b269eb5a67e43a7da2f4a0f
[ "MIT" ]
null
null
null
data/Chunks/1800/90/1/1891-01-28.php
PHPCraftdream/astro_de421
28bf0273641aa4805b269eb5a67e43a7da2f4a0f
[ "MIT" ]
null
null
null
data/Chunks/1800/90/1/1891-01-28.php
PHPCraftdream/astro_de421
28bf0273641aa4805b269eb5a67e43a7da2f4a0f
[ "MIT" ]
null
null
null
<?php return [2411760.5,2411792.5,-57884519.99521818,1877166.754029733,969219.2614250456,-28335.69021872702,-182.5521313176472,47.61607001872695,-3.800757753255485,0.180974026107994,-0.005126587274670353,-9.016668501070773E-5,2.398316564677449E-5,-1.905834625740549E-6,9.76796217708931E-8,-2.091661346151113E-9,-19448936.95870633,-13287444.83002804,323394.380000381,29257.64360998958,-1445.300307909274,53.8272924723636,-0.9006870259583911,-0.06830810318836202,0.008249231496030745,-0.0005301487071096136,2.197248637197818E-5,-3.100353160610453E-7,-4.393772798004081E-8,5.012904178687754E-9,-4393433.430566539,-7290390.032583365,71865.2087368407,18570.51984171098,-752.7694588299211,23.78939919874671,-0.08557501878547276,-0.05530099589968483,0.004938205453894617,-0.0002737065343243313,9.237435314562368E-6,3.2726186334304E-8,-3.361379335124929E-8,3.150482027675496E-9,-47456401.18728124,8268527.234767741,630944.3404370409,-27202.03516709791,174.1427280640534,-0.555587191810487,-0.8324135828124603,0.04797733416551759,-0.002409973255965666,8.9123141942392E-5,-2.153009566260077E-6,-1.335642299041018E-8,5.979109019610106E-9,-3.659103750617874E-10,-42554286.29889044,-9616529.47692698,566586.9524444917,13283.23337007799,-641.5226548057306,26.54670357559435,-1.007406173086077,0.01982999118420866,3.224882722958275E-5,-5.339957408185955E-5,3.861886408109689E-6,-2.09616082544934E-7,8.557838421806856E-9,-4.750706886700669E-10,-17815775.31236336,-5995043.194196006,236913.2332812151,9922.60191925335,-360.6742333891456,14.23316150882997,-0.4513430723610385,0.005597997660724884,0.0002679178260679271,-3.778557713375165E-5,2.286513986703223E-6,-1.105343223241109E-7,3.456041087139813E-9,-1.655040955498001E-10,-26875961.79508188,12051599.72882001,318296.7948079614,-25257.83183057743,37.52758971674376,-10.72735997789137,-0.1967976725710312,0.007211589524927496,-0.0005113038902002024,2.696879997592398E-5,-7.182975601369393E-7,3.581756856039074E-8,2.247585312207396E-10,8.97673145764528E-11,-56851290.56908323,-4588025.660876714,678152.0978470009,6128.482043869391,-311.5630242623428,8.099694295090226,-0.5904744831142248,0.007425001495243504,-0.0005276879765108958,-1.293641916799953E-6,4.584425713562523E-8,-2.205906012967607E-8,8.320741901984565E-10,2.434972723929605E-10,-27590713.89238793,-3703451.028680903,329009.1917917196,5899.874968667981,-170.2718429536944,5.440947497982617,-0.2948295265727336,0.003214618595634129,-0.0002285870475640887,-3.49544041415224E-6,9.88993886300889E-8,-1.534799298434716E-8,9.11005953830334E-10,-2.915680789153613E-11,-1190631.008292235,13378074.12060422,11023.88542792038,-26584.88061152788,-214.1310366015188,-14.10482994026019,-0.1005811728806819,0.003755290104729299,0.0003018312460148198,2.838672568113791E-5,8.721098875530777E-7,4.799722123870076E-8,1.032549583973358E-9,5.591019938540701E-11,-60423968.11273208,1054131.345063621,724744.484130377,1705.100738683436,-284.550358528281,-5.548178991572679,-0.6307535557285755,-0.01102034528572088,-0.0006682674507092063,-7.689210724966728E-6,-1.298557332296552E-7,1.402567989533814E-8,-5.790752501240156E-10,9.677493869326808E-10,-32170106.92493617,-828638.3908209172,385851.9756971118,3675.923974414602,-129.6696029396294,-1.495397211305069,-0.3263464415468318,-0.006275262947205046,-0.0003882382469505436,-7.057107579631288E-6,-1.607167941592181E-7,2.355124378762761E-9,5.336543681503204E-10,-2.476503552510031E-10,-105975773.3419908,-2075339.357798217,1354584.481455433,3680.436802706767,-1459.666640172811,-0.6023591469914346,0.6850094246513403,-0.002033033994756081,-0.0002227124846321661,2.30416968300627E-6,5486155.012459287,-22019537.33351221,-68689.83213884017,46765.44057225475,36.77185191362732,-31.09466394665312,0.04666258658662623,0.01143610484329956,-7.281071801239305E-5,-3.442330456405478E-6,9172042.629038982,-9766836.983079813,-116724.2541471656,20788.88504577546,109.0371752366831,-13.93960863786399,-0.0224383770508564,0.005270622737999341,-1.881000143771959E-5,-1.672787982032018E-6,-99427215.28696126,8545704.884001805,1261032.329570206,-18910.06854814235,-1315.705269578096,14.44057750509682,0.5435652787119322,-0.007465036750047819,-0.0001092011514263474,3.573802002979673E-6,-37348883.90770473,-20360664.88439482,475983.314526698,42542.29403837334,-549.7810871757672,-26.49559588220416,0.318621110703415,0.00756525578610546,-0.0001529132288933342,-8.30630429758285E-7,-10498452.27308592,-9694242.919394296,134047.7071258962,20322.17100062415,-163.7555948195823,-12.82555326655087,0.1087790586389095,0.003873804744655792,-6.181335773268454E-5,-6.001838444269219E-7,-108366902.3926191,-14225249.39589244,535790.8693248722,11358.59777659685,-241.1311135930894,-2.78923900210032,0.05871099035853198,0.0007869168676697137,7.591883680028006E-6,-2.415376630966961E-5,-5.021664093886817E-6,6.270450934922333E-7,4.756838624934435E-7,91166178.84269883,-13959293.26618123,-450962.7166666704,11795.30834225868,181.619566043417,-3.563601096190248,-0.02898422825724003,0.0005831483514795793,-8.984543798350746E-5,1.410393927814939E-6,5.456875109524883E-6,9.212613309739063E-7,-2.123062669583507E-7,39553495.60507466,-6056452.764600411,-195636.4008024698,5117.616971485295,78.7908239352106,-1.546482496961072,-0.01268384905227641,0.0002821742702975324,-2.884261001774487E-5,-1.715347452183216E-7,1.661837597769502E-6,3.273075521873036E-7,-5.697591355280846E-8,-132148215.3303133,-9463022.229464298,647361.4109338212,7133.581696268754,-282.2954600114447,-1.322067431514152,0.06290091706538874,0.0001302509899180511,-5.568880020470838E-5,-3.143490273631992E-6,6.356683089313663E-7,-2.198320941593414E-8,2.540010748094251E-8,60119273.63579728,-16957055.78688363,-294443.1357705711,14098.96860027184,104.8677510745267,-4.017654666934243,-0.007467760922274829,0.0005632264974747659,-4.870736339614481E-6,4.750860733343473E-6,-3.70309276754495E-7,3.932182453156128E-8,-9.85395051851268E-9,26083486.49612797,-7356912.821787001,-127728.2966723623,6116.962580883858,45.48987562970132,-1.743491648779832,-0.003194767928721737,0.0002719096909192296,-4.996826353790998E-6,1.299436699605512E-6,-7.19844152682277E-8,1.854849702521892E-8,-3.670558875876498E-9,153018108.6216631,-22395634.05965956,-931085.7991974163,28808.40432312854,247.2432912262162,-17.04940550092486,0.2266872427142432,0.004993478331260725,-0.0002639664591801727,2.846581596382285E-6,1.148569036228934E-7,142058293.7191877,23741367.96635881,-860846.8324519295,-18218.08510689966,677.7974595631223,-1.849261237159855,-0.3046672523759477,0.00816394683592459,8.478441424366417E-6,-5.743491440005213E-6,1.294806027141301E-7,60970289.15025726,11499747.1331021,-369390.111811434,-9141.498869553581,304.1061484442106,-0.3828133754134629,-0.1459141728074809,0.003607883122722794,1.109350174576846E-5,-2.710340958489559E-6,5.670523883360291E-8,623900645.3990571,9847116.578779055,-93120.46694623803,-285.7252057043434,1.094406846942438,0.003936049759644133,-4.223282062780524E-6,-2.527555999688932E-8,-379293347.4715848,14664358.43868145,56610.80414948863,-340.1711619323278,-1.002141183285087,0.002396441624992071,1.287569090444513E-5,-2.393234093444801E-8,-177847363.5714077,6046627.426077873,26544.34892254186,-138.8671604596008,-0.4563693177087303,0.0009310211504787551,5.64552321662152E-6,-6.79503701355323E-9,-1348338742.596658,-4252680.084132251,31234.75570329657,8.712209660967964,-0.06755517096997031,2.739676455383822E-5,1.377071611732162E-7,321358939.7449879,-12001708.45927613,-7444.489023697717,48.1447365489797,-0.002490660208511168,-6.702550137322759E-5,-1.766495648997002E-8,190469717.5784092,-4771701.355297543,-4412.375899940417,19.49843223688667,0.001870355176000321,-2.873989214969533E-5,-1.56152632936033E-8,-2391696435.594824,4642415.023737586,7191.787402546478,-2.691499008216495,-0.001785896570472942,5.732701563660015E-7,-1280715776.090443,-7843657.88483125,3852.677652224327,3.740797278694967,-0.001371550027451548,-6.530501452347256E-7,-526977489.3370966,-3501487.43499251,1585.367671491021,1.676982063175761,-0.0005746810356848961,-2.97808290799827E-7,1714454641.950528,-6980432.322070228,-1224.412371146418,0.8352983282207549,7.14671644408223E-5,-4.159273088864767E-8,3827989622.80514,2653158.862239328,-2733.92341943579,-0.3082823734318803,0.0001617133764537451,3.085943501416573E-8,1524165053.300443,1259672.465505732,-1088.548126550244,-0.146984957925571,6.448671485891263E-5,1.037751081621824E-8,2565502084.878445,-4895708.202647401,-439.4299128726996,0.1195420760570979,1.070650405524972E-5,-6.51694536325851E-10,6586314741.307201,844564.0535511035,-1128.219570302884,-0.0762413872015951,-3.327449948640606E-7,-1.244791637584776E-8,1281970751.253783,1738416.397691794,-219.4988536228581,-0.0597866334120663,-3.070044769365427E-6,8.267332760514202E-9,-382289.9916115406,20211.48251281315,18072.53059116928,-46.73723404100564,-58.75637682361892,-0.5206281789561209,-0.03274472111339116,-0.002171884237974141,0.0002900640793017492,2.2064570576097E-5,5.569140554154492E-7,2.143117476534003E-8,-8.943468173306502E-10,-46965.90803313639,-147005.2860321637,2430.986228073702,1147.098821947956,1.177816167534103,-1.321331139877011,-0.01255481176988192,-0.005150483769783653,-0.0002777621394476991,4.629283346533441E-6,7.011353910555589E-7,4.444916314157304E-8,4.422857125595106E-9,14283.75848808436,-69929.85881854294,-595.9634900918135,536.7543949131391,6.218089740490529,-0.5676882039615292,-0.002962146516043631,-0.002179630116029738,-0.0001563622404679272,5.89660296321862E-8,2.741396679863157E-7,1.865035075541654E-8,2.135161842813099E-9,-211035.6218070974,145509.2036568222,11401.649120198,-1103.763156201069,-72.89242366260312,-0.1214611572894563,0.1772079685137663,0.02132770600179098,0.0008783247473553204,-4.962010756718409E-5,-9.256951455132118E-6,-5.692313632555014E-7,5.239206886333007E-9,-279286.5031409086,-74591.90479319569,15217.08017373187,876.1568327408295,-43.26364017587478,-3.845727610247351,-0.1775488041327329,0.00124196673665344,0.001301764184535435,0.000101598862283986,1.551817909719371E-6,-4.672767954307926E-7,-5.515987160585775E-8,-109422.9122029212,-48270.45254876776,5976.268852298685,511.9696777788332,-13.18708736214258,-1.780527885388874,-0.09918034396075462,-0.001425770644142432,0.0005219370784728602,5.186857678260665E-5,1.592141591282617E-6,-1.634573277595189E-7,-2.611665441562579E-8,116737.649114561,166305.1287697313,-7587.914728126108,-1849.668771358268,13.82151864208975,9.815849969743818,0.3295939091071207,-0.04854541570635383,-0.004793016901466704,0.0001664753844215766,4.814755057558377E-5,8.634086954262634E-7,-3.908294829025418E-7,-286232.2404756169,70612.2446128759,18603.3751488925,-532.4603020839342,-125.3810066735922,-0.9721969139501216,0.6432289661634316,0.03738334243143872,-0.003040343288598716,-0.0004434016683467705,4.668489101656484E-6,4.094518141206032E-6,1.571893782845027E-7,-143459.4034583171,17125.78399634305,9350.718294757035,-72.25107189346286,-59.60113353204795,-1.380154331650852,0.2678859035965852,0.02194337350942499,-0.0009606288295401106,-0.0002216209492966081,-2.36716169729439E-6,1.820212139211324E-6,1.098032779099865E-7,330786.4293413283,35303.22138648681,-22233.21778592189,-229.8536966916652,148.5443338104346,-1.553276166407111,-0.8016612082607261,0.03687301168555963,0.004841939562862482,-0.0004717352718237479,-2.594305740777885E-5,5.166956970272527E-6,5.875324595544827E-8,-37689.78240613885,164272.5210158387,2482.06136322632,-1811.442984909227,4.004114958187633,9.734970059259838,-0.2860662625346638,-0.05519738501654513,0.004077993866451991,0.0003175102497348365,-4.642110510628818E-5,-1.247153821929512E-6,4.748150492885975E-7,-48215.32084493805,72948.3731024332,3244.523752309901,-820.2406361296393,-12.21831890995895,4.670306601373102,-0.05703688367839382,-0.02911357320696036,0.001437105749288778,0.0001919053325471133,-1.911178417751218E-5,-1.065942160585495E-6,2.149485100025669E-7,238887.0244483214,-120032.4988712831,-13867.92865310856,1319.119837544049,34.71180463494149,-5.381452024125936,0.2466309104647241,0.002815444259071899,-0.001894225804506259,0.0001437173735927312,-1.347546111285543E-8,-9.312062607134905E-7,8.41656754072069E-8,249997.1046559114,109231.7435552109,-14383.65934011958,-798.4659689756438,86.02296393257409,-0.8009745125731229,-0.2077397115411775,0.02393037080010839,-0.0009297379338938631,-7.66078961373134E-5,1.236008892307215E-5,-5.796859170287109E-7,-3.164135080797702E-8,93957.8819010855,61951.95873826522,-5388.952157646193,-496.2998253085833,36.70441428821731,0.1416752391082892,-0.1197137065261735,0.0108377488735337,-0.0002531334496564916,-4.91164380538593E-5,5.740111229716367E-6,-1.813873503964072E-7,-2.262152618697501E-8,-59513.28823331351,-164486.9305066855,2677.037334308263,1291.178045302968,-25.8196355420195,-1.55729239972352,0.05001453434604188,-0.005167535468461566,0.0004067382340608304,-2.512301803099998E-6,-1.383335717126269E-6,9.619808286144941E-8,-5.482565221219793E-9,338175.0734541694,-22896.76427989762,-16659.28164552601,336.8831819366547,54.56371590442269,-1.49589519590029,0.02597856892457898,-0.001824617068074288,-0.0002030134345248913,2.919619384259987E-5,-1.169564607434977E-6,4.532632365190111E-9,2.439576230214092E-9,162692.5524306379,4612.238485992307,-8012.479150608636,34.9700405209524,27.90912400501486,-0.5443552011362188,0.007120286977386702,-0.0003668953006350355,-0.0001324431117639561,1.380579224887166E-5,-4.123705973180126E-7,-7.012651144056006E-9,1.645637281554487E-9,-324348.7945729325,-90208.97474648498,14797.62515647892,667.766444827358,-50.34616261005564,-0.9428907275711069,0.03048691814382517,0.001088011339103007,-6.26227112308955E-5,-1.141514381734777E-5,6.142633301404734E-7,3.150740608763352E-8,-9.874833518435927E-10,180960.2418458086,-127318.871426159,-8314.309099238708,983.2978188825392,25.96445771312321,-1.549171425027736,-0.01722829629659671,0.0003697554086074261,0.0001180722694942115,-7.984759092825927E-6,-5.99876325646837E-7,2.824813437049871E-8,1.236679941215406E-9,113975.6684910172,-51020.27719645046,-5262.536029435237,396.3240179761514,16.94493375941101,-0.6338115493834307,-0.01116749924836744,7.136956797911589E-5,6.087588461841947E-5,-2.658169616136393E-6,-3.377862675959514E-7,1.021102487163887E-8,6.752327847557054E-10,-371443.965167706,45379.9510162061,17496.05355204734,-245.4047950646477,-61.43057187748875,-0.237082604750574,0.01470039184475672,-0.001260451356672749,0.0001151845458288499,2.044637201123187E-5,5.5862191122583E-7,-2.079972075236307E-8,-3.653224514978095E-10,-99465.34520883596,-142039.9832434205,4901.107495658671,1135.141339654348,-7.604806191215809,-1.769326835311596,-0.01286258359274456,-0.002050261082827814,-0.0002238908846453705,-6.522706901659746E-7,9.167148166562779E-7,3.142310366215781E-8,7.668350798586482E-10,-12538.03397933769,-70532.65415796064,662.0814394606094,554.2927700829232,2.268095106149256,-0.8093846545170764,-0.007690643361048546,-0.0008428028512516719,-0.0001154072263298568,-2.203917271383075E-6,3.777297644956716E-7,1.67463864688186E-8,3.950473719479106E-10,-189595.1471963402,-4044.328848627388,14.33554461188272,0.0270850303149742,0.004030377954747772,-8.009843032554709E-5,1.880802585963435E-5,-2.204981385478895E-6,1.80730816378203E-7,-7.883841470913364E-9,-4.522254709045064E-10,133818.4908144607,-5034.126007842626,-11.91940167713016,-0.1380279271874143,0.002045501760583832,-0.0001265552563540636,1.242373550104838E-5,-4.824954528875835E-8,-1.012694251531744E-7,1.799098555423099E-8,-1.980250556807782E-9,61846.71937860663,-2093.852847762288,-5.31766353695429,-0.06864590765894124,0.0009465239137044099,-6.580336423041565E-5,4.591767964638852E-6,2.060131570456469E-7,-7.292965975297306E-8,1.043591312598183E-8,-1.005039466118779E-9,-197567.3394389661,-3927.27888744199,15.03760217685471,0.09069260620218844,0.004229362854712229,3.568699712109347E-5,-4.478428157495087E-8,-4.511740709059443E-8,5.057884658590505E-9,-1.81281385564086E-9,-6.941007717890264E-12,123649.9625644567,-5135.650806916502,-13.41799724817539,-0.112196924617274,0.001801788043005675,6.979983175974047E-5,5.196845655412771E-6,8.545235602774594E-9,2.463123662671553E-8,3.072079547249516E-10,3.328554421665089E-11,57614.00421058896,-2139.492810884196,-6.07477077487898,-0.05822927410294049,0.0006499616894347851,2.584917056501236E-5,2.76897802758104E-6,1.161080110642422E-8,1.263075154159996E-8,3.564427590765273E-10,1.773491963249973E-11,-7.235594773401054E-5,-7.516804121048039E-7,5.304801179186614E-7,1.669226156811761E-7,-2.061643922883805E-8,-6.484372358068079E-9,-3.862864140578138E-10,-5.999625212815823E-11,-6.964282670577585E-12,9.33917999340502E-12,1.427054829946233E-5,8.707725219325637E-8,-2.009428797385421E-7,5.538772787281713E-8,1.655046224663712E-8,-1.785680935866511E-10,-1.660334579960134E-10,-6.452684646845982E-11,-3.112671168423422E-11,-1.336620638205957E-12,-7.125052037204873E-5,3.737405862271683E-7,-9.503816959486402E-7,-3.192446292179825E-8,1.150877009209223E-7,3.079461405521754E-9,-7.677643998120469E-9,-2.287723916710093E-10,4.002381628787311E-10,1.154664037596325E-11,1.527522282451652E-5,1.209087485026376E-6,1.547565976841161E-8,-1.628341659494682E-7,-4.25789838945044E-9,1.30986770445799E-8,4.413197781232109E-10,-7.053649763818648E-10,-2.691276433169832E-11,2.909145804161754E-11,-7.170584788128544E-5,5.85978050900166E-7,3.899936746092271E-7,-1.827200574763658E-7,-1.951369128892481E-8,9.268316333874316E-9,-6.21410957133153E-10,-7.116062506666694E-11,2.410114890306782E-11,-6.942953884579205E-12,1.626145078595576E-5,4.671994632466959E-8,2.108313827591349E-7,6.021342510989729E-8,-2.06140459857773E-8,-2.219554482185673E-10,4.339825455546516E-10,-1.151044281141989E-10,2.781559060714246E-11,2.893794619846704E-12,-7.236973545398855E-5,-1.901745023739576E-6,-3.211569539369145E-7,1.583578753974399E-7,2.025177340244297E-8,-4.172987610691191E-9,-3.877571470360246E-10,4.778770154820249E-11,-2.680225829654983E-12,-1.722049962988184E-12,1.74435031435436E-5,7.016123675166464E-7,-2.362217372134145E-7,-4.229293423448216E-8,1.233960156864135E-8,1.487594053719786E-9,-1.089853957399723E-10,-3.66253433095461E-11,-9.969024363497941E-12,2.525268017120531E-12,-0.06621191868668765,0.0006722042243316533,5.285834507410136E-5,-4.275792231851143E-5,-1.95054249295475E-6,1.163253123676854E-6,7.313446485114226E-8,-1.003154344337041E-8,-1.182491929151391E-9,-1.702528840930357E-10,0.4024475540836176,-1.144944113335535E-5,-7.66732552751233E-5,-4.181336137781308E-6,3.081433795179574E-6,1.589817136756299E-7,-5.266439722553402E-8,-4.389087007063771E-9,-3.160634406367005E-11,1.456933318240196E-11,-6584.085057582928,0.9193266419320173,-6.261671315518241E-5,3.785856708079054E-5,1.892614746601668E-6,-1.050330537743461E-6,-6.426634214107232E-8,9.443059307276191E-9,1.062403953583442E-9,1.483870044822339E-10,-0.06542233904264128,1.854139853608863E-5,-6.28310468551071E-5,2.566894040633491E-5,-2.881127034033356E-6,-1.809862678825247E-6,1.917361914814115E-7,7.610939536466244E-8,-6.360704263509511E-9,-2.84790907278828E-9,0.4020730481928542,-0.0002659793208517954,2.281577498209643E-5,2.507027279964972E-7,-2.98635341206289E-6,3.29854875604152E-7,1.495082172998078E-7,-1.367485902504494E-8,-5.749198484394642E-9,4.154912902172738E-10,-6582.246013681231,0.9198161336173509,5.39255808887456E-5,-1.985377668057612E-5,2.803746998540692E-6,1.567100523113315E-6,-1.822261863773143E-7,-6.702861073873014E-8,6.089212492200789E-9,2.518450115543455E-9,-0.06575182453919051,-0.0003876744272942598,-7.688023039487459E-5,1.072998090402603E-5,6.398080578325068E-6,-1.502925676960187E-7,-1.699970515700881E-7,1.124759706740445E-8,8.724405554082991E-10,-2.189639160840639E-10,0.4016573339385889,-0.0001427932933577807,3.746006583710671E-5,1.006109196326054E-5,-3.846687958718598E-7,-4.581757015169419E-7,1.734345814470571E-8,6.897626345970399E-9,-7.570478525731338E-10,5.068306490497606E-11,-6580.40597241963,0.9202788248330651,8.708565817459601E-5,-1.090512691739414E-5,-6.08792236197466E-6,1.675216732724914E-7,1.540527781031836E-7,-1.038952647122636E-8,-7.406325727104088E-10,1.88936406611073E-10,-0.06618528535116858,0.0002054649920826724,0.0001919672419655106,-6.622273429695698E-6,-7.446731640270824E-6,8.994068412422342E-8,1.388572759390572E-7,-4.072126379691572E-10,-1.266284608341638E-9,2.196640401062303E-11,0.4017234758791275,0.0001632744287660954,-1.547344015042731E-5,-1.659952571810922E-5,3.46337223595969E-7,4.347992660529043E-7,-2.214026172255052E-9,-5.654524388117546E-9,1.870574946448163E-11,3.983679192355075E-11,-6578.565657422939,0.9197878175421668,-0.0001805223730752621,4.250009510889318E-6,6.868332886690606E-6,-7.981462070058533E-8,-1.275397784331787E-7,4.881700754112535E-10,1.168915938016847E-9,-2.032064757021455E-11,0.0,0.0];
20,659
20,659
0.85464
5fc5931ca7ca790b6f904ef2972483f376c0db45
842
css
CSS
website/policia/static/policia/css/buscar.css
garnachod/ConcursoPolicia
f123595afc697ddfa862114a228d7351e2f8fd73
[ "Apache-2.0" ]
null
null
null
website/policia/static/policia/css/buscar.css
garnachod/ConcursoPolicia
f123595afc697ddfa862114a228d7351e2f8fd73
[ "Apache-2.0" ]
null
null
null
website/policia/static/policia/css/buscar.css
garnachod/ConcursoPolicia
f123595afc697ddfa862114a228d7351e2f8fd73
[ "Apache-2.0" ]
null
null
null
fieldset { margin-bottom: 10px; margin-top: 10px; } fieldset .radio-inline { margin-right: 10px; } #search-by-form-group { margin-right: 80px; } #search-max { max-width:80px; } .twitter-thumbnail { height: 90px; width: 90px; border-radius: 50%; } .twitter-name { margin-top: 13px; } .twitter-handle { font-size: 1.5em; } .twitter-name, .twitter-handle, .twitter-location { overflow: hidden; -ms-text-overflow: ellipsis; -o-text-overflow: ellipsis; text-overflow: ellipsis; display: block; } .twitter-name, .twitter-location { height: 20px; } .twitter-stats { margin-top: 15px; } .twitter-number { font-size: 1.3em; } textarea { min-width: 100%; } #search-text { min-height: 180px; } #search-card { padding-left: 30px; padding-right: 30px; }
13.15625
51
0.617577
f03b44b7bd155b16cda8a428f739db53cb3a8257
138
py
Python
helios/workflows/__init__.py
thiagosfs/helios-server
1616f742c0d3ab8833aab4cfbcc45d9818c68716
[ "Apache-2.0" ]
525
2015-01-04T11:51:26.000Z
2022-03-31T17:15:20.000Z
helios/workflows/__init__.py
thiagosfs/helios-server
1616f742c0d3ab8833aab4cfbcc45d9818c68716
[ "Apache-2.0" ]
238
2015-01-02T17:50:37.000Z
2022-02-09T16:39:49.000Z
helios/workflows/__init__.py
thiagosfs/helios-server
1616f742c0d3ab8833aab4cfbcc45d9818c68716
[ "Apache-2.0" ]
238
2015-01-05T23:09:20.000Z
2022-03-21T16:47:33.000Z
""" Helios Election Workflows """ from helios.datatypes import LDObjectContainer class WorkflowObject(LDObjectContainer): pass
13.8
46
0.76087
92d334b11e4701f2166bacde3d4c7206f7332d45
9,094
c
C
GraphicsMagick-1.3.37/hp2xx/sources/to_ilbm.c
BluepixelDev/AndroidConnor
64b3b2f07e2e9eef1536e8053e996d52b5d01b59
[ "MIT" ]
null
null
null
GraphicsMagick-1.3.37/hp2xx/sources/to_ilbm.c
BluepixelDev/AndroidConnor
64b3b2f07e2e9eef1536e8053e996d52b5d01b59
[ "MIT" ]
null
null
null
GraphicsMagick-1.3.37/hp2xx/sources/to_ilbm.c
BluepixelDev/AndroidConnor
64b3b2f07e2e9eef1536e8053e996d52b5d01b59
[ "MIT" ]
null
null
null
/* Copyright (c) 1992 - 1994 Claus H. Langhans. All rights reserved. Distributed by Free Software Foundation, Inc. This file is part of HP2xx. HP2xx is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose or works at all, unless he says so in writing. Refer to the GNU General Public License, Version 2 or later, for full details. Everyone is granted permission to copy, modify and redistribute HP2xx, but only under the conditions described in the GNU General Public License. A copy of this license is supposed to have been given to you along with HP2xx so you can know your rights and responsibilities. It should be in a file named COPYING. Among other things, the copyright notice and this notice must be preserved on all copies. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */ /** ** to_ilbm.c: InterChangeFileFormat: InterLeaveBitMap (IFF-ILBM) converter ** part of project "hp2xx" ** ** 92/04/14 V 1.00 CHL Originating: Copied from to_pbm.c ** 92/04/15 V 1.01 CHL I read the IFF-ILBM Manuals! Word alligned, not byte! ** 92/04/16 V 1.02 CHL Better error handling ** 94/02/14 V 1.10a HWW Adapted to changes in hp2xx.h **/ #include <stdio.h> #include <stdlib.h> #include "bresnham.h" #include "hp2xx.h" typedef long LONG; typedef unsigned long ULONG; typedef unsigned long LONGBITS; typedef short WORD; typedef unsigned short UWORD; typedef unsigned short WORDBITS; typedef char BYTE; typedef unsigned char UBYTE; typedef unsigned char BYTEBITS; typedef unsigned char *STRPTR; typedef STRPTR *APTR; typedef ULONG CPTR; typedef short SHORT; typedef unsigned short USHORT; typedef float FLOAT; typedef double DOUBLE; typedef short COUNT; typedef unsigned short UCOUNT; typedef short BOOL; typedef unsigned char TEXT; typedef long BPTR; #include "iff.h" #include "ilbm.h" #define CMAP #define CAMG /* AMIGA specific video mode */ #define GGE >>= #define YES 1L; #define NO 0L; static int put_LONG( LONG l, FILE *fd) { int retval; if((retval=putc ((l >> 24) & 0xFF,fd))==EOF) return(retval); else if((retval=putc ((l >> 16) & 0xFF,fd))==EOF) return(retval); else if((retval=putc ((l >> 8) & 0xFF,fd))==EOF) return(retval); else return(putc(l,fd)); } static int put_ULONG( ULONG ul, FILE *fd) { int retval; if((retval=putc ((ul >> 24) & 0xFF,fd))==EOF) return(retval); else if((retval=putc ((ul >> 16) & 0xFF,fd))==EOF) return(retval); else if((retval=putc ((ul >> 8) & 0xFF,fd))==EOF) return(retval); else return(putc(ul,fd)); } static int put_WORD( WORD w, FILE *fd) { int retval; if((retval=putc ((w >> 8) & 0xFF,fd))==EOF) return(retval); else return(putc(w,fd)); } static int put_UWORD( UWORD uw, FILE *fd) { int retval; if((retval=putc ((uw >> 8) & 0xFF,fd))==EOF) return(retval); else return(putc(uw,fd)); } static int put_UBYTE( UBYTE u, FILE *fd) { return(putc (u,fd)); } int PicBuf_to_ILBM (const GEN_PAR *pg, const OUT_PAR *po) { FILE *fd; int row_count = 0; int row_c, byte_c, bit, x, xoff, yoff; const RowBuf *row; const PicBuf *pb; int i; unsigned char *memptr; int BitPlaneSize; int OddBmp; struct SimpleHdr { ChunkHeader FORM_Hdr; LONG ILBM_Type; ChunkHeader BMHD_CkHdr; BitMapHeader BMHD_Ck; #ifdef CAMG ChunkHeader CAMG_CkHdr; CamgChunk CAMG_Ck; #endif #ifdef CMAP ChunkHeader CMAP_CkHdr; UBYTE Map0red; UBYTE Map0green; UBYTE Map0blue; UBYTE Map1red; UBYTE Map1green; UBYTE Map1blue; #endif ChunkHeader BODY_CkHdr; } MyHdr; if (pg == NULL || po == NULL) return ERROR; pb = po->picbuf; if (pb == NULL) return ERROR; if (pb->depth > 1) { Eprintf ("\nILBM mode does not support colors yet -- sorry\n"); goto ERROR_EXIT_2; } if ((((pb->nb) % 2 ) == 1) ){ OddBmp=YES; BitPlaneSize = (pb->nb) * (pb->nr) + (pb->nr); } else { OddBmp=NO; BitPlaneSize = (pb->nb) * (pb->nr); } MyHdr.FORM_Hdr.ckID = FORM; MyHdr.FORM_Hdr.ckSize = sizeof(MyHdr) - sizeof(MyHdr.FORM_Hdr.ckID) - sizeof(MyHdr.FORM_Hdr.ckSize) + BitPlaneSize; MyHdr.ILBM_Type = ID_ILBM; MyHdr.BMHD_CkHdr.ckID = ID_BMHD; MyHdr.BMHD_CkHdr.ckSize = sizeof(MyHdr.BMHD_Ck); MyHdr.BMHD_Ck.w = (pb->nb) * 8; /* raster width & height in pixels */ MyHdr.BMHD_Ck.h = pb->nr; MyHdr.BMHD_Ck.x = 0L; /* position for this image */ MyHdr.BMHD_Ck.y = 0L; MyHdr.BMHD_Ck.nPlanes = 1L; /* # source bitplanes */ MyHdr.BMHD_Ck.masking = mskNone; /* masking technique */ MyHdr.BMHD_Ck.compression = cmpNone; /* compression algoithm */ MyHdr.BMHD_Ck.pad1 = 0L; /* UNUSED. For consistency, put 0 here.*/ MyHdr.BMHD_Ck.transparentColor = 1L; /* transparent "color number" */ MyHdr.BMHD_Ck.xAspect = 1L; /* aspect ratio, a rational number x/y */ MyHdr.BMHD_Ck.yAspect = 1L; MyHdr.BMHD_Ck.pageWidth =MyHdr.BMHD_Ck.w; /* source "page" size in pixels */ MyHdr.BMHD_Ck.pageHeight =MyHdr.BMHD_Ck.h; #ifdef CAMG MyHdr.CAMG_CkHdr.ckID = ID_CAMG; MyHdr.CAMG_CkHdr.ckSize = sizeof(MyHdr.CAMG_Ck); MyHdr.CAMG_Ck.ViewModes = 0x8004; /* = HIRES LACE */ #endif #ifdef CMAP MyHdr.CMAP_CkHdr.ckID = ID_CMAP; MyHdr.CMAP_CkHdr.ckSize = sizeof(MyHdr.Map0red) * 6; MyHdr.Map0red = 0; MyHdr.Map0green = 0; MyHdr.Map0blue = 0; MyHdr.Map1red = 255; MyHdr.Map1green = 255; MyHdr.Map1blue = 255; #endif MyHdr.BODY_CkHdr.ckID = ID_BODY; MyHdr.BODY_CkHdr.ckSize = BitPlaneSize; if (!pg->quiet) Eprintf ("\nWriting ILBM output: %s\n",po->outfile); if (*po->outfile != '-') { #ifdef VAX if ((fd = fopen(po->outfile, WRITE_BIN, "rfm=var", "mrs=512")) == NULL) { #else if ((fd = fopen(po->outfile, WRITE_BIN)) == NULL) { #endif PError("hp2xx -- opening output file"); return ERROR; } } else fd = stdout; if (((MyHdr.FORM_Hdr.ckSize) % 2 ) == 1) { MyHdr.FORM_Hdr.ckSize +=1; } if(put_LONG(MyHdr.FORM_Hdr.ckID, fd)== EOF) goto ERROR_EXIT; if(put_LONG(MyHdr.FORM_Hdr.ckSize, fd)== EOF) goto ERROR_EXIT; if(put_LONG(MyHdr.ILBM_Type, fd)== EOF) goto ERROR_EXIT; if(put_LONG(MyHdr.BMHD_CkHdr.ckID, fd)== EOF) goto ERROR_EXIT; if(put_LONG(MyHdr.BMHD_CkHdr.ckSize, fd)== EOF) goto ERROR_EXIT; if(put_UWORD(MyHdr.BMHD_Ck.w, fd)== EOF) goto ERROR_EXIT; if(put_UWORD(MyHdr.BMHD_Ck.h, fd)== EOF) goto ERROR_EXIT; if(put_WORD(MyHdr.BMHD_Ck.x, fd)== EOF) goto ERROR_EXIT; if(put_WORD(MyHdr.BMHD_Ck.y, fd)== EOF) goto ERROR_EXIT; if(put_UBYTE(MyHdr.BMHD_Ck.nPlanes, fd)== EOF) goto ERROR_EXIT; if(put_UBYTE(MyHdr.BMHD_Ck.masking, fd)== EOF) goto ERROR_EXIT; if(put_UBYTE(MyHdr.BMHD_Ck.compression, fd)== EOF) goto ERROR_EXIT; if(put_UBYTE(MyHdr.BMHD_Ck.pad1, fd)== EOF) goto ERROR_EXIT; if(put_UWORD(MyHdr.BMHD_Ck.transparentColor, fd)== EOF) goto ERROR_EXIT; if(put_UBYTE(MyHdr.BMHD_Ck.xAspect, fd)== EOF) goto ERROR_EXIT; if(put_UBYTE(MyHdr.BMHD_Ck.yAspect, fd)== EOF) goto ERROR_EXIT; if(put_WORD(MyHdr.BMHD_Ck.pageWidth, fd)== EOF) goto ERROR_EXIT; if(put_WORD(MyHdr.BMHD_Ck.pageHeight, fd)== EOF) goto ERROR_EXIT; #ifdef CAMG if(put_LONG(MyHdr.CAMG_CkHdr.ckID, fd)== EOF) goto ERROR_EXIT; if(put_LONG(MyHdr.CAMG_CkHdr.ckSize, fd)== EOF) goto ERROR_EXIT; if(put_ULONG(MyHdr.CAMG_Ck.ViewModes, fd)== EOF) goto ERROR_EXIT; #endif #ifdef CMAP if(put_LONG(MyHdr.CMAP_CkHdr.ckID, fd)== EOF) goto ERROR_EXIT; if(put_LONG(MyHdr.CMAP_CkHdr.ckSize, fd)== EOF) goto ERROR_EXIT; if(put_UBYTE(MyHdr.Map0red, fd)== EOF) goto ERROR_EXIT; if(put_UBYTE(MyHdr.Map0green, fd)== EOF) goto ERROR_EXIT; if(put_UBYTE(MyHdr.Map0blue, fd)== EOF) goto ERROR_EXIT; if(put_UBYTE(MyHdr.Map1red, fd)== EOF) goto ERROR_EXIT; if(put_UBYTE(MyHdr.Map1green, fd)== EOF) goto ERROR_EXIT; if(put_UBYTE(MyHdr.Map1blue, fd)== EOF) goto ERROR_EXIT; #endif if(put_LONG(MyHdr.BODY_CkHdr.ckID, fd)== EOF) goto ERROR_EXIT; if(put_LONG(MyHdr.BODY_CkHdr.ckSize, fd)== EOF) goto ERROR_EXIT; /* memptr = (unsigned char *) &MyHdr; for (i=0; i < sizeof(MyHdr) ; i++) putc(memptr[i],fd); */ for (row_c = 0; row_c < pb->nr; row_c++) { row = get_RowBuf(pb, pb->nr - row_c - 1); for (byte_c = x = 0; byte_c < pb->nb; byte_c++) if( putc(row->buf[byte_c],fd) == EOF) goto ERROR_EXIT; if (OddBmp) { putc(0,fd); } if ((!pg->quiet) && (row_c % 10 == 0)) Eprintf ("."); } if (!pg->quiet) Eprintf ("\n"); if (fd != stdout) fclose(fd); return 0; ERROR_EXIT: PError ("write_ILBM"); ERROR_EXIT_2: return ERROR; }
28.154799
85
0.639653
a3d6ecd05057fd75da75af697e283d6b907a9644
169
kt
Kotlin
rxandroidbluetooth/src/main/java/duoshine/rxandroidbluetooth/exception/BluetoothAdapterNullPointException.kt
duoshine/AndroidBluetoothPro
f9972dfdd213d0cffa39ebf898c61dc9b71ffef0
[ "Apache-2.0" ]
6
2020-01-08T04:57:59.000Z
2021-06-23T03:46:55.000Z
rxandroidbluetooth/src/main/java/duoshine/rxandroidbluetooth/exception/BluetoothAdapterNullPointException.kt
duoshine/AndroidBluetoothPro
f9972dfdd213d0cffa39ebf898c61dc9b71ffef0
[ "Apache-2.0" ]
null
null
null
rxandroidbluetooth/src/main/java/duoshine/rxandroidbluetooth/exception/BluetoothAdapterNullPointException.kt
duoshine/AndroidBluetoothPro
f9972dfdd213d0cffa39ebf898c61dc9b71ffef0
[ "Apache-2.0" ]
1
2020-11-09T11:17:00.000Z
2020-11-09T11:17:00.000Z
package duoshine.rxandroidbluetooth.exception /** *Created by chen on 2019 */ class BluetoothAdapterNullPointException (message: String) : BluetoothException(message)
28.166667
88
0.816568
9ea175642dbd5872f1748f2d58392ab9a9cbc5f4
2,298
swift
Swift
OntSwift/SmartContract/Nativevm/OntidContractTxBuilder.swift
hsiaosiyuan0/ontology-swift-sdk
3003613b8d14a6767c89aecf71db78b9cbacad96
[ "MIT" ]
null
null
null
OntSwift/SmartContract/Nativevm/OntidContractTxBuilder.swift
hsiaosiyuan0/ontology-swift-sdk
3003613b8d14a6767c89aecf71db78b9cbacad96
[ "MIT" ]
1
2019-07-22T03:28:23.000Z
2019-07-22T03:28:23.000Z
OntSwift/SmartContract/Nativevm/OntidContractTxBuilder.swift
hsiaosiyuan0/ontology-swift-sdk
3003613b8d14a6767c89aecf71db78b9cbacad96
[ "MIT" ]
1
2022-01-15T13:15:00.000Z
2022-01-15T13:15:00.000Z
// // OntidContractTxBuilder.swift // OntSwift // // Created by hsiaosiyuan on 2018/12/8. // Copyright © 2018 hsiaosiyuan. All rights reserved. // import Foundation public class OntidContractTxBuilder { public static let ontidContract = "0000000000000000000000000000000000000003" public init() {} public func buildRegisterOntidTx( ontid: Data, pubkey: PublicKey, gasPrice: String, gasLimit: String, payer: Address? = nil ) throws -> Transaction { let method = OntidContractTxBuilder.Method.regIDWithPublicKey let structure = Struct() structure.add(params: ontid, pubkey.hex()) let list: [Any] = [structure] let pb = NativeVmParamsBuilder() _ = try pb.pushNativeCodeScript(objs: list) let txb = TransactionBuilder() return try txb.makeNativeContractTx( fnName: method.rawValue, params: pb.buf, contract: Address(value: OntidContractTxBuilder.ontidContract), gasPrice: gasPrice, gasLimit: gasLimit, payer: payer ) } public func buildRegisterOntidTx( ontid: String, pubkey: PublicKey, gasPrice: String, gasLimit: String, payer: Address? = nil ) throws -> Transaction { return try buildRegisterOntidTx( ontid: ontid.data(using: .utf8)!, pubkey: pubkey, gasPrice: gasPrice, gasLimit: gasLimit, payer: payer ) } public func buildGetDDOTx(ontid: Data) throws -> Transaction { let method = OntidContractTxBuilder.Method.getDDO let structure = Struct() structure.add(params: ontid) let pb = NativeVmParamsBuilder() _ = try pb.pushNativeCodeScript(objs: [structure]) let txb = TransactionBuilder() return try txb.makeNativeContractTx( fnName: method.rawValue, params: pb.buf, contract: Address(value: OntidContractTxBuilder.ontidContract), gasPrice: nil, gasLimit: nil, payer: nil ) } public func buildGetDDOTx(ontid: String) throws -> Transaction { return try buildGetDDOTx(ontid: ontid.data(using: .utf8)!) } public enum Method: String { case regIDWithPublicKey, regIDWithAttributes, addAttributes, removeAttribute case getAttributes, getDDO, addKey, removeKey, getPublicKeys, addRecovery case changeRecovery, getKeyState } }
25.820225
80
0.689295
8ae7d13ae9c4c529155a5c695757b153764bdd1a
1,051
rs
Rust
tokio-postgres/src/macros.rs
seanlth/rust-postgres
9e497c7ce484466b115f266d6101f279af5617d7
[ "MIT" ]
null
null
null
tokio-postgres/src/macros.rs
seanlth/rust-postgres
9e497c7ce484466b115f266d6101f279af5617d7
[ "MIT" ]
null
null
null
tokio-postgres/src/macros.rs
seanlth/rust-postgres
9e497c7ce484466b115f266d6101f279af5617d7
[ "MIT" ]
1
2019-02-07T18:16:08.000Z
2019-02-07T18:16:08.000Z
/// Generates a simple implementation of `ToSql::accepts` which accepts the /// types passed to it. #[macro_export] macro_rules! accepts { ($($expected:pat),+) => ( fn accepts(ty: &$crate::types::Type) -> bool { match *ty { $($expected)|+ => true, _ => false } } ) } /// Generates an implementation of `ToSql::to_sql_checked`. /// /// All `ToSql` implementations should use this macro. #[macro_export] macro_rules! to_sql_checked { () => { fn to_sql_checked(&self, ty: &$crate::types::Type, out: &mut ::std::vec::Vec<u8>) -> ::std::result::Result<$crate::types::IsNull, Box<::std::error::Error + ::std::marker::Sync + ::std::marker::Send>> { $crate::types::__to_sql_checked(self, ty, out) } } }
32.84375
78
0.43197
168ccae01844be23b717609da7caf97cdbc0443b
1,823
c
C
release/src-rt-6.x.4708/router/samba-3.5.8/testsuite/libsmbclient/src/stat/stat_k.c
afeng11/tomato-arm
1ca18a88480b34fd495e683d849f46c2d47bb572
[ "FSFAP" ]
4
2017-05-17T11:27:04.000Z
2020-05-24T07:23:26.000Z
release/src-rt-6.x.4708/router/samba-3.5.8/testsuite/libsmbclient/src/stat/stat_k.c
afeng11/tomato-arm
1ca18a88480b34fd495e683d849f46c2d47bb572
[ "FSFAP" ]
1
2018-08-21T03:43:09.000Z
2018-08-21T03:43:09.000Z
release/src-rt-6.x.4708/router/samba-3.5.8/testsuite/libsmbclient/src/stat/stat_k.c
afeng11/tomato-arm
1ca18a88480b34fd495e683d849f46c2d47bb572
[ "FSFAP" ]
5
2017-10-11T08:09:11.000Z
2020-10-14T04:10:13.000Z
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <unistd.h> #include <libsmbclient.h> #define MAX_BUFF_SIZE 255 char g_workgroup[MAX_BUFF_SIZE]; char g_username[MAX_BUFF_SIZE]; char g_password[MAX_BUFF_SIZE]; char g_server[MAX_BUFF_SIZE]; char g_share[MAX_BUFF_SIZE]; void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, char *username, int unmaxlen, char *password, int pwmaxlen) { strncpy(workgroup, g_workgroup, wgmaxlen - 1); strncpy(username, g_username, unmaxlen - 1); strncpy(password, g_password, pwmaxlen - 1); strcpy(g_server, server); strcpy(g_share, share); } int main(int argc, char** argv) { int err = -1; char url[MAX_BUFF_SIZE]; struct stat st; char *user; SMBCCTX *ctx; bzero(g_workgroup,MAX_BUFF_SIZE); bzero(url,MAX_BUFF_SIZE); if ( argc == 2) { char *p; user = getenv("USER"); if (!user) { printf("no user??\n"); return 0; } printf("username: %s\n", user); p = strchr(user, '\\'); if (! p) { printf("BAD username??\n"); return 0; } strncpy(g_workgroup, user, strlen(user)); g_workgroup[p - user] = 0; strncpy(g_username, p + 1, strlen(p + 1)); memset(g_password, 0, sizeof(char) * MAX_BUFF_SIZE); strncpy(url,argv[1],strlen(argv[1])); err = smbc_init(auth_fn, 10); if (err) { printf("init smbclient context failed!!\n"); return err; } /* Using null context actually get the old context. */ ctx = smbc_set_context(NULL); smbc_setOptionUseKerberos(ctx, 1); smbc_setOptionFallbackAfterKerberos(ctx, 1); smbc_setWorkgroup(ctx, g_workgroup); smbc_setUser(ctx, g_username); err = smbc_stat(url, &st); if ( err < 0 ) { err = 1; printf("stat failed!!\n"); } else { err = 0; printf("stat succeeded!!\n"); } } return err; }
19.815217
82
0.66429
e7411f2ca4fefcef0f03988dad3e2e5cd8f8180c
431
js
JavaScript
pages/components/favicons.js
npmkit/npmkit-website
436043112cad5b764a8b79e8ab75918083e3dbdb
[ "MIT" ]
1
2018-07-12T20:05:06.000Z
2018-07-12T20:05:06.000Z
pages/components/favicons.js
npmkit/npmkit-website
436043112cad5b764a8b79e8ab75918083e3dbdb
[ "MIT" ]
4
2018-07-13T21:44:52.000Z
2018-07-18T12:06:12.000Z
pages/components/favicons.js
npmkit/npmkit-website
436043112cad5b764a8b79e8ab75918083e3dbdb
[ "MIT" ]
null
null
null
import React from 'react'; export default () => ( <React.Fragment> <link rel="shortcut icon" href="/static/favicon.ico" /> <link rel="apple-touch-icon" href="/static/favicon-128x128.png" /> {[256, 196, 128, 96, 32, 16].map(size => ( <link rel="icon" type="image/png" href={`/static/favicon-${size}x${size}.png`} sizes={`${size}x${size}`} /> ))} </React.Fragment> );
25.352941
70
0.542923
fb73d9f7b41ba1eae1b56d570acf73deb91f4da9
1,570
swift
Swift
SwiftUITips/ContentView2.swift
appke/playSwiftUI
8a355473b89c6d9f639784ad1ef93b5c1079865f
[ "MIT" ]
10
2020-10-29T03:45:29.000Z
2021-12-03T07:34:44.000Z
SwiftUITips/ContentView2.swift
appke/playSwiftUI
8a355473b89c6d9f639784ad1ef93b5c1079865f
[ "MIT" ]
null
null
null
SwiftUITips/ContentView2.swift
appke/playSwiftUI
8a355473b89c6d9f639784ad1ef93b5c1079865f
[ "MIT" ]
1
2020-10-27T13:25:15.000Z
2020-10-27T13:25:15.000Z
// // ContentView2.swift // SwiftUITips // // Created by MGBook on 2020/4/16. // Copyright © 2020 MGBook. All rights reserved. // import SwiftUI // 跨容器对齐,自定义Alignment // 系统自带的Aligment,跨容器无效 struct CustomHorizontalAlignment: AlignmentID { // 默认偏移量,默认左对齐,偏移量为 0 static func defaultValue(in context: ViewDimensions) -> CGFloat { context[.leading] } } extension HorizontalAlignment { // 自定义水平对齐类型,创建 HorizontalAlignment static let customLeading = HorizontalAlignment(CustomHorizontalAlignment.self) } // 2.Text对齐 struct ContentView2 : View { var body: some View { VStack(alignment: .customLeading) { //基准线 HStack { Text("Username").titleStyle() Text("Jackay").contentStyle() } HStack { Text("Email").titleStyle() Text("Jackay@gmail.com").contentStyle() } HStack { Text("Phone").titleStyle() Text("400-2828-897").contentStyle() } } .padding() } } // 设置扩展函数,设置文字样式 extension Text { func titleStyle() -> Self { self.font(.system(size: 35, weight: .bold)) } // 右侧文字左对齐,和最外层VStack 共享同一条基准线 func contentStyle() -> some View { self.font(.system(size: 25)) .border(Color.red) .alignmentGuide(.customLeading, computeValue: { $0[.leading] }) } } struct ContentView2_Previews: PreviewProvider { static var previews: some View { ContentView2() } }
23.088235
82
0.577707
7f7647283028943ca8db9f16103107b19d8cdb25
4,233
go
Go
config/k8s-configmap-collector/k8s_configmap_collector.go
luqmanMohammed/k8s-events-runner
88193e5c0aee78cdc865aa086f10fbc90cef6478
[ "MIT" ]
null
null
null
config/k8s-configmap-collector/k8s_configmap_collector.go
luqmanMohammed/k8s-events-runner
88193e5c0aee78cdc865aa086f10fbc90cef6478
[ "MIT" ]
null
null
null
config/k8s-configmap-collector/k8s_configmap_collector.go
luqmanMohammed/k8s-events-runner
88193e5c0aee78cdc865aa086f10fbc90cef6478
[ "MIT" ]
null
null
null
package k8sconfigmapcollector import ( "context" "encoding/json" config "github.com/luqmanMohammed/k8s-events-runner/config" "gopkg.in/yaml.v2" v1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/client-go/kubernetes" "k8s.io/klog/v2" ) //K8sConfigMapCollector implents ConfigCollector interface and adds functionality //to get configs from kuberenets config maps type K8sConfigMapCollector struct { k8sClientSet *kubernetes.Clientset namespace string runnerConfigLable string eventMapConfigMapName string runnerTemplates map[string]*config.RunnerTemplate eventMap config.EventMap } //New instanciates a K8sConfigMapCollector object func New(k8sClientSet *kubernetes.Clientset, namespace, runnerConfigLable, eventMapConfigMapName string) *K8sConfigMapCollector { return &K8sConfigMapCollector{ k8sClientSet: k8sClientSet, namespace: namespace, runnerConfigLable: runnerConfigLable, eventMapConfigMapName: eventMapConfigMapName, runnerTemplates: make(map[string]*config.RunnerTemplate), } } //collectRunnerConfigs collects runner templates from config maps in the defined //namespace which have the defined label. //ConfigMap name is used as a key to store the runner template //TODO: Add support for hot loading configs func (cmc *K8sConfigMapCollector) collectRunnerTemplates(ctx context.Context) error { runnerCMlist, err := cmc.k8sClientSet.CoreV1().ConfigMaps(cmc.namespace).List(ctx, metav1.ListOptions{ LabelSelector: cmc.runnerConfigLable, }) if err != nil { klog.Errorf("Error when collecting runner templates %v", err) return err } for _, cm := range runnerCMlist.Items { for key, value := range cm.Data { var podTemplate v1.Pod if err = json.Unmarshal([]byte(value), &podTemplate); err != nil { klog.V(1).ErrorS(err, "Failed to collect runner template from %s:%s. Continuing", cm.Name, key) continue } tmpRunnerTemplate := config.RunnerTemplate(v1.PodTemplateSpec{ ObjectMeta: podTemplate.ObjectMeta, Spec: podTemplate.Spec, }) cmc.runnerTemplates[cm.Name] = &tmpRunnerTemplate } klog.V(2).Infof("Collected templates from ConfigMap: %s", cm.Name) } klog.V(1).Info("Succesffully collected Runner Templates from all ConfigMaps") return nil } //collectEventMap collects eventMap config data from a specific confimap selected //by using provided configmap name and namespace //TODO: Add support for loading eventMap from multi configmaps //TODO: Add support for hot-loading configs //TODO: Add config validation func (cmc *K8sConfigMapCollector) collectEventMap(ctx context.Context) error { eventMapCM, err := cmc.k8sClientSet.CoreV1().ConfigMaps(cmc.namespace).Get(ctx, cmc.eventMapConfigMapName, metav1.GetOptions{}) if err != nil { klog.Errorf("Error when collecting eventMap Config %v", err) return err } for _, value := range eventMapCM.Data { var eventMapConfig config.EventMap if err = yaml.Unmarshal([]byte(value), &eventMapConfig); err != nil { klog.Errorf("Unable to collect eventMap. Invalid Config: %v", err) return err } cmc.eventMap = eventMapConfig break } klog.V(1).Infof("Succesffully collected EventMap from ConfigMap: %s", eventMapCM.Name) return nil } //Collect wraps above collector methods to collect both runner and eventMap configs func (cmc *K8sConfigMapCollector) Collect() error { if err := cmc.collectRunnerTemplates(context.Background()); err != nil { return err } if err := cmc.collectEventMap(context.Background()); err != nil { return err } return nil } //GetRunnerConfigForResourceAndEvent is a getter which retrieves a runner configuration provided the reosurce and event //TODO: Add support for event specific small overides func (cmc K8sConfigMapCollector) GetRunnerConfigForResourceAndEvent(resource, event string) (config.RunnerConfig, error) { if runnerSelec, ok := cmc.eventMap[resource][event]; ok { if runnerTemplate, ok := cmc.runnerTemplates[runnerSelec.Runner]; ok { return config.RunnerConfig{ RunnerSelector: runnerSelec, RunnerTemplate: runnerTemplate, }, nil } } return config.RunnerConfig{}, config.ErrRunnerConfigNotFound }
36.491379
129
0.751713
6757993fd0cbb1e340bd65530c9ae53c4f7f487a
83
cql
SQL
src/server/src/main/resources/db/cassandra/017_add_custom_jmx_port.cql
viossat/cassandra-reaper
d001c47f61a171298337101052d76d336cd5851d
[ "Apache-2.0" ]
null
null
null
src/server/src/main/resources/db/cassandra/017_add_custom_jmx_port.cql
viossat/cassandra-reaper
d001c47f61a171298337101052d76d336cd5851d
[ "Apache-2.0" ]
3
2022-01-21T23:49:20.000Z
2022-02-26T00:46:54.000Z
src/server/src/main/resources/db/cassandra/017_add_custom_jmx_port.cql
fmarslan/cassandra-reaper
f5431fb45bace8e065033754ce9de86f44091434
[ "Apache-2.0" ]
null
null
null
-- -- Add custom JMX ports per cluster -- ALTER TABLE cluster ADD properties text;
16.6
40
0.73494
ddc819d4ff637bb68783d604d1394b02b7c69f86
28,830
php
PHP
application/models/bo/model_bonos.php
paloverde-grupo/jakkerp
c3865307bca7ad0bda547056ce5a8bf002167767
[ "Apache-2.0" ]
null
null
null
application/models/bo/model_bonos.php
paloverde-grupo/jakkerp
c3865307bca7ad0bda547056ce5a8bf002167767
[ "Apache-2.0" ]
null
null
null
application/models/bo/model_bonos.php
paloverde-grupo/jakkerp
c3865307bca7ad0bda547056ce5a8bf002167767
[ "Apache-2.0" ]
null
null
null
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); class model_bonos extends CI_Model { function setUp($nombre,$descripcion,$inicio,$fin,$mes_desde_afiliacion,$mes_desde_activacion,$frecuencia,$estatus,$plan){ $bono = array( 'nombre' => $nombre, 'descripcion' => $descripcion, 'inicio' => $inicio, 'fin' => $fin, 'mes_desde_afiliacion' => $mes_desde_afiliacion, 'mes_desde_activacion' => $mes_desde_activacion, 'frecuencia' => $frecuencia, 'plan' => $plan, 'estatus' => $estatus, ); return $bono; } function setUpValoresBones($idBono,$nivel,$condicion_red,$valor,$verticalidad){ $bono_valores = array( 'id_bono' => $idBono, 'nivel' => $nivel, 'valor' => $valor, 'condicion_red'=>$condicion_red, 'verticalidad'=>$verticalidad ); return $bono_valores; } function setUpCondicion($idBono,$idRango,$idTipoRango,$red,$condicion1,$condicion2,$calificado){ $rango=$this->get_rangos_id_tipo($idRango, $idTipoRango); $bonoCondiciones = array( 'id_bono' => $idBono, 'id_rango' => $idRango, 'id_tipo_rango' => $idTipoRango, 'condicion_rango' => $rango[0]->valor, 'id_red' => $red, 'condicion1' => $condicion1, 'condicion2' => $condicion2, 'calificado' => $calificado, ); return $bonoCondiciones; } function insert_bono($bono){ $this->db->insert("bono",$bono); $q=$this->db->query("SELECT id FROM bono order by id desc limit 0,1 "); $q=$q->result(); return $q[0]->id; } function actualizar_bono($idBono,$datosBono){ $this->db->where('id',$idBono); $this->db->update('bono', $datosBono); return true; } function kill_bono($id){ $this->db->query("DELETE FROM cat_bono_valor_nivel where id_bono='".$id."'"); $this->db->query("DELETE FROM cat_bono_condicion where id_bono='".$id."'"); $this->db->query("DELETE FROM bono where id='".$id."'"); } function cambiar_estado_bono($estado,$id_bono){ $this->db->query("update bono set estatus = '".$estado."' where id=".$id_bono); return true; } function insert_bono_valor_niveles($valoresBono){ $this->db->insert("cat_bono_valor_nivel",$valoresBono); } function kill_bono_valor_nivel($idBono){ $this->db->query("DELETE FROM cat_bono_valor_nivel where id_bono='".$idBono."'"); } function kill_bono_condicion($idBono){ $this->db->query("DELETE FROM cat_bono_condicion where id_bono='".$idBono."'"); } function actualizar_bono_valor_niveles($idBono,$valoresBono){ $this->db->insert("cat_bono_valor_nivel",$valoresBono); } function insert_condicion_bono($condicion){ $this->db->insert("cat_bono_condicion",$condicion); } function get_rangos(){ $q=$this->db->query("SELECT cr.id_rango as id_rango,cr.nombre as nombre_rango,cr.descripcion as descripcion, ct.id as tipo_rango,ct.nombre as nombre_tipo_rango,crt.valor as valor,cr.estatus FROM cat_rango cr,cat_tipo_rango ct,cross_rango_tipos crt where (cr.id_rango=crt.id_rango) and (ct.id=crt.id_tipo_rango)and cr.estatus='ACT' group by id_rango "); return $q->result(); } function get_rangos_id($id){ $q=$this->db->query("SELECT cr.id_rango as id_rango,cr.nombre as nombre_rango,cr.descripcion as descripcion, ct.id as tipo_rango,ct.nombre as nombre_tipo_rango,crt.valor as valor,cr.estatus FROM cat_rango cr,cat_tipo_rango ct,cross_rango_tipos crt where (cr.id_rango=crt.id_rango) and (ct.id=crt.id_tipo_rango)and cr.estatus='ACT' and(cr.id_rango=".$id.") "); return $q->result(); } function get_rangos_bono($id){ $q=$this->db->query("SELECT * FROM cat_bono_condicion where id_bono=".$id." group by id_rango"); return $q->result(); } function get_tipo_rangos_bono($id){ $q=$this->db->query("SELECT * FROM cat_bono_condicion where id_bono=".$id." group by id_rango,id_tipo_rango"); return $q->result(); } function get_rangos_id_tipo($id,$tipoRango){ $q=$this->db->query("SELECT cr.id_rango as id_rango,cr.nombre as nombre_rango,cr.descripcion as descripcion, ct.id as tipo_rango,ct.nombre as nombre_tipo_rango,crt.valor as valor,cr.estatus FROM cat_rango cr,cat_tipo_rango ct,cross_rango_tipos crt where (cr.id_rango=crt.id_rango) and (ct.id=crt.id_tipo_rango)and cr.estatus='ACT' and(cr.id_rango=".$id.") and(ct.id=".$tipoRango.")"); return $q->result(); } function get_mercancia_tipos(){ $q=$this->db->query("SELECT * FROM cat_tipo_mercancia;"); return $q->result(); } function get_productos_red($idRed){ $q=$this->db->query("select M.id,P.nombre, CTM.descripcion, TR.nombre red,C.Name from mercancia M, producto P, cat_tipo_mercancia CTM, cat_grupo_producto CGP, tipo_red TR, Country C where M.sku = P.id and CTM.id = M.id_tipo_mercancia and M.id_tipo_mercancia=1 and P.id_grupo = CGP.id_grupo and CGP.id_red = TR.id and C.Code = M.pais and TR.id=".$idRed.""); return $q->result(); } function get_producto_por_id($idproducto){ $q=$this->db->query("select M.id,P.nombre, CTM.descripcion, TR.nombre red,C.Name from mercancia M, producto P, cat_tipo_mercancia CTM, cat_grupo_producto CGP, tipo_red TR, Country C where M.sku = P.id and CTM.id = M.id_tipo_mercancia and M.id_tipo_mercancia=1 and P.id_grupo = CGP.id_grupo and CGP.id_red = TR.id and C.Code = M.pais and M.id=".$idproducto.""); return $q->result(); } function get_servicios_red($idRed){ $q=$this->db->query("select M.id, M.sku, M.fecha_alta, M.real, M.costo, M.costo_publico, M.estatus , S.nombre, CI.url, CTM.descripcion, TR.nombre red, M.pais, C.Name, C.Code2 from mercancia M, servicio S, cat_tipo_mercancia CTM, cat_img CI, cross_merc_img CMI, tipo_red TR, cat_grupo_producto CGP, Country C where M.sku = S.id and CTM.id = M.id_tipo_mercancia and M.id_tipo_mercancia=2 and CI.id_img = CMI.id_cat_imagen and M.id = CMI.id_mercancia and CGP.id_grupo = S.id_red and CGP.id_red = TR.id and C.Code = M.pais and TR.id=".$idRed.""); return $q->result(); } function get_servicio_por_id($idServicio){ $q=$this->db->query("select M.id, M.sku, M.fecha_alta, M.real, M.costo, M.costo_publico, M.estatus , S.nombre, CI.url, CTM.descripcion, TR.nombre red, M.pais, C.Name, C.Code2 from mercancia M, servicio S, cat_tipo_mercancia CTM, cat_img CI, cross_merc_img CMI, tipo_red TR, cat_grupo_producto CGP, Country C where M.sku = S.id and CTM.id = M.id_tipo_mercancia and M.id_tipo_mercancia=2 and CI.id_img = CMI.id_cat_imagen and M.id = CMI.id_mercancia and CGP.id_grupo = S.id_red and CGP.id_red = TR.id and C.Code = M.pais and M.id=".$idServicio.""); return $q->result(); } function get_combinados_red($idRed){ $q=$this->db->query("select M.id,C.nombre, CTM.descripcion, TR.nombre red,CO.Name from mercancia M, combinado C, cat_tipo_mercancia CTM, cat_img CI, cross_merc_img CMI, tipo_red TR, cat_grupo_producto CGP, Country CO where M.sku = C.id and CTM.id = M.id_tipo_mercancia and M.id_tipo_mercancia=3 and CI.id_img = CMI.id_cat_imagen and M.id = CMI.id_mercancia and CGP.id_grupo = C.id_red and CGP.id_red = TR.id and CO.Code = M.pais and TR.id=".$idRed.""); return $q->result(); } function get_combinado_por_id($idCombinado){ $q=$this->db->query("select M.id,C.nombre, CTM.descripcion, TR.nombre red,CO.Name from mercancia M, combinado C, cat_tipo_mercancia CTM, cat_img CI, cross_merc_img CMI, tipo_red TR, cat_grupo_producto CGP, Country CO where M.sku = C.id and CTM.id = M.id_tipo_mercancia and M.id_tipo_mercancia=3 and CI.id_img = CMI.id_cat_imagen and M.id = CMI.id_mercancia and CGP.id_grupo = C.id_red and CGP.id_red = TR.id and CO.Code = M.pais and M.id=".$idCombinado.""); return $q->result(); } function get_paquetes_red($idRed){ $q=$this->db->query("select M.id,P.nombre, CTM.descripcion, TR.nombre red,CO.Name from mercancia M, paquete_inscripcion P, cat_tipo_mercancia CTM, cat_img CI, cross_merc_img CMI, tipo_red TR, cat_grupo_producto CGP, Country CO where M.sku = P.id_paquete and CTM.id = M.id_tipo_mercancia and M.id_tipo_mercancia= 4 and CI.id_img = CMI.id_cat_imagen and M.id = CMI.id_mercancia and CGP.id_grupo = P.id_red and CGP.id_red = TR.id and CO.Code = M.pais and TR.id=".$idRed.""); return $q->result(); } function get_paquete_por_id($idPaquete){ $q=$this->db->query("select M.id,P.nombre, CTM.descripcion, TR.nombre red,CO.Name from mercancia M, paquete_inscripcion P, cat_tipo_mercancia CTM, cat_img CI, cross_merc_img CMI, tipo_red TR, cat_grupo_producto CGP, Country CO where M.sku = P.id_paquete and CTM.id = M.id_tipo_mercancia and M.id_tipo_mercancia= 4 and CI.id_img = CMI.id_cat_imagen and M.id = CMI.id_mercancia and CGP.id_grupo = P.id_red and CGP.id_red = TR.id and CO.Code = M.pais and M.id=".$idPaquete.""); return $q->result(); } function get_membresia_red($idRed){ $q=$this->db->query("select M.id, M.sku, M.fecha_alta, M.real, M.costo, M.costo_publico, M.estatus , S.nombre, CI.url, CTM.descripcion, TR.nombre red, M.pais, C.Name, C.Code2 from mercancia M, membresia S, cat_tipo_mercancia CTM, cat_img CI, cross_merc_img CMI, tipo_red TR, cat_grupo_producto CGP, Country C where M.sku = S.id and CTM.id = M.id_tipo_mercancia and M.id_tipo_mercancia=5 and CI.id_img = CMI.id_cat_imagen and M.id = CMI.id_mercancia and CGP.id_grupo = S.id_red and CGP.id_red = TR.id and C.Code = M.pais and TR.id=".$idRed.""); return $q->result(); } function get_membresia_por_id($idMembresia){ $q=$this->db->query("select M.id, M.sku, M.fecha_alta, M.real, M.costo, M.costo_publico, M.estatus , S.nombre, CI.url, CTM.descripcion, TR.nombre red, M.pais, C.Name, C.Code2 from mercancia M, membresia S, cat_tipo_mercancia CTM, cat_img CI, cross_merc_img CMI, tipo_red TR, cat_grupo_producto CGP, Country C where M.sku = S.id and CTM.id = M.id_tipo_mercancia and M.id_tipo_mercancia=5 and CI.id_img = CMI.id_cat_imagen and M.id = CMI.id_mercancia and CGP.id_grupo = S.id_red and CGP.id_red = TR.id and C.Code = M.pais and M.id=".$idMembresia.""); return $q->result(); } function get_bonos(){ $q=$this->db->query("SELECT b.id,b.nombre,b.descripcion,b.inicio,b.fin,b.frecuencia,b.estatus FROM bono b "); //where b.plan='NO' return $q->result(); } function get_bonos_activos(){ $q=$this->db->query("SELECT b.id,b.nombre,b.descripcion,b.inicio,b.fin,b.frecuencia,b.estatus FROM bono b where b.estatus = 'ACT'"); return $q->result(); } function get_bono_id($id){ $q=$this->db->query("SELECT b.id,b.nombre,b.descripcion,b.inicio,b.fin,b.frecuencia,b.plan,b.estatus,b.mes_desde_afiliacion,b.mes_desde_activacion FROM bono b where id=".$id." ");//b. plan='NO'and return $q->result(); } function get_bono_by_id($id){ $q=$this->db->query("SELECT * FROM bono WHERE id=".$id); return $q->result(); } function get_valor_niveles(){ $q=$this->db->query("SELECT * FROM cat_bono_valor_nivel order by nivel; "); return $q->result(); } function get_valor_niveles_id_bono($id){ $q=$this->db->query("SELECT * FROM cat_bono_valor_nivel where id_bono=".$id." order by nivel; "); return $q->result(); } function get_condiciones_bonos(){ $q=$this->db->query("SELECT CBC.id , CBC.id_bono as id_bono,CR.nombre as nombreRango, CTR.nombre as nombreTipoRango ,CBC.id_tipo_rango as id_tipo_rango,CBC.condicion_rango as condicionRango , GROUP_CONCAT(DISTINCT TR.nombre) as nombreRedes , GROUP_CONCAT(DISTINCT CBC.condicion1)as condicion1, GROUP_CONCAT(DISTINCT CBC.condicion2)as condicion2 FROM bono B,cat_bono_condicion CBC,cat_bono_valor_nivel CBN , cat_rango CR,cat_tipo_rango CTR,tipo_red TR where(B.id=CBC.id_bono) and(B.id=CBN.id_bono) and(CBC.id_rango=CR.id_rango) and(CBC.id_tipo_rango=CTR.id) group by CBC.id_bono,CBC.id_rango,CBC.id_tipo_rango"); $condiciones_bono=$q->result();//and(B.plan='NO') $resultado=array(); foreach ($condiciones_bono as $condicion_bono){ $bonoCondiciones = array( 'id_bono' => $condicion_bono->id_bono, 'nombreRango' => $condicion_bono->nombreRango, 'tipoRango' => $condicion_bono->nombreTipoRango, 'nombreRed' => $condicion_bono->nombreRedes, 'condicionRango' => $condicion_bono->condicionRango, 'condicion1' => $this->get_nombre_condicion_bono($condicion_bono->id_tipo_rango,$condicion_bono->condicion1,1), 'condicion2' => $this->get_nombre_condicion_bono($condicion_bono->id_tipo_rango,$condicion_bono->condicion2,2), ); array_push($resultado, $bonoCondiciones); } return $resultado ; } function get_condiciones_bonos_id_bono($id_bono){ $q=$this->db->query("SELECT * FROM cat_bono_condicion where id_bono=".$id_bono." order by id_tipo_rango"); return $q->result(); } function get_red_condiciones_bonos_id_bono($id_bono){ $q=$this->db->query("SELECT * FROM cat_bono_condicion where id_bono=".$id_bono." group by id_rango,id_tipo_rango,id_red order by id_red"); return $q->result(); } function get__condicioneses_bonos_id_bono($id_bono){ $q=$this->db->query("SELECT * FROM cat_bono_condicion where id_bono=".$id_bono." group by id_rango,id_tipo_rango,id_red,condicion1,condicion2 order by id_red"); return $q->result(); } function get_nombre_rango($id_rango){ $q=$this->db->query("SELECT nombre FROM cat_rango where id_rango='".$id_rango."'"); $nombreRango=$q->result(); return $nombreRango[0]->nombre; } function get_nombre_red_bono($id_red) { $nombreRed=""; if($id_red==0){ $nombreRed="Todas"; }else { $q1=$this->db->query("SELECT nombre FROM tipo_red where id='".$id_red."'"); $nombreRed=$q1->result(); $nombreRed=$nombreRed[0]->nombre; } return $nombreRed; } function get_nombre_tipo_rango($id_tipo_rango) { $tipoRango=""; if($id_tipo_rango==1) $tipoRango="Afiliaciones"; if($id_tipo_rango==2) $tipoRango="Ventas"; if($id_tipo_rango==3) $tipoRango="Compras"; return $tipoRango; } function get_nombre_condicion_bono($id_tipo_rango,$condiciones,$tipoCondicion){ $condiciones = explode(',', $condiciones); $nombreCondicion=array(); foreach ($condiciones as $condicion){ if($id_tipo_rango==1){ if ($condicion==0) array_push($nombreCondicion,"Todos"); else array_push($nombreCondicion,$condicion); }else{ $con ="Todos"; if (!$condicion=='0'){ if($tipoCondicion==1){ $con=$this->get_nombre_tipo_mercancia($condicion); } else{ $con=$this->get_mercancia_por_id($condicion); } } array_push($nombreCondicion,$con); } } return $nombreCondicion; } function get_nombre_tipo_mercancia($id_tipo_mercancia){ $q=$this->db->query("SELECT * FROM cat_tipo_mercancia where id=".$id_tipo_mercancia.""); $nombre=$q->result(); if(isset($nombre[0]->descripcion)) return $nombre[0]->descripcion; return ""; } function get_mercancia_por_id($id_mercancia){ $q=$this->db->query("SELECT id_tipo_mercancia FROM mercancia where id=".$id_mercancia.""); $idTipoMercancia=$q->result(); $mercancia=array(); if(!isset($idTipoMercancia[0])) return ""; if($idTipoMercancia[0]->id_tipo_mercancia==1){ $mercancia=$this->get_producto_por_id($id_mercancia); }else if($idTipoMercancia[0]->id_tipo_mercancia==2){ $mercancia=$this->get_servicio_por_id($id_mercancia); }else if($idTipoMercancia[0]->id_tipo_mercancia==3){ $mercancia=$this->get_combinado_por_id($id_mercancia); }else if($idTipoMercancia[0]->id_tipo_mercancia==4){ $mercancia=$this->get_paquete_por_id($id_mercancia); }else if($idTipoMercancia[0]->id_tipo_mercancia==5){ $mercancia=$this->get_membresia_por_id($id_mercancia); } if(isset($mercancia[0]->nombre)) return $mercancia[0]->nombre; return ""; } function validar_bono_plan($id_bono){ $query = $this->db->query('select * from cross_plan_bonos where id_bono='.$id_bono.''); return $query->result(); } function validar_bono_red($id_red){ $query = $this->db->query('select * from cat_bono_condicion where id_red='.$id_red.''); return $query->result(); } function ver_total_bonos_id_red($id,$red){ $query = $this->db->query('select c.id_red, t.nombre red, b.id_bono, o.nombre, (select sum(valor) from comision_bono where id_bono = b.id_bono and id_usuario = b.id_usuario) valor from comision_bono b, cat_bono_condicion c , tipo_red t, bono o where b.id_usuario = '.$id.' and b.id_bono = c.id_bono and t.id = c.id_red and o.id = b.id_bono and c.id_red = '.$red.' group by b.id_bono'); #in (select id_red from afiliar where id_afiliado = $id) return $query->result(); } function ver_total_bonos_id_red_fecha($id,$red,$fecha){ $query = $this->db->query('select h.id, h.dia, h.mes, h.ano, c.id_red, t.nombre red, b.id_bono, o.nombre, sum(b.valor) valor from comision_bono b, cat_bono_condicion c , tipo_red t, bono o, comision_bono_historial h where b.id_usuario = '.$id.' and b.id_bono = c.id_bono and b.id_bono_historial = h.id and b.id_bono = h.id_bono and date_format(h.fecha,"%Y-%m") = "'.date("Y-m", strtotime($fecha)).'" and t.id = c.id_red and o.id = b.id_bono and c.id_red = '.$red.' group by b.id_bono'); return $query->result(); } function ver_total_bonos_id_fecha($id,$fecha){ $query = $this->db->query('select h.id, h.dia, h.mes, h.ano, c.id_red, t.nombre red, b.id_bono, o.nombre, sum(b.valor) valor from comision_bono b, cat_bono_condicion c , tipo_red t, bono o, comision_bono_historial h where b.id_usuario = '.$id.' and b.id_bono = c.id_bono and b.id_bono_historial = h.id and b.id_bono = h.id_bono and date_format(h.fecha,"%Y-%m") = "'.date("Y-m", strtotime($fecha)).'" and t.id = c.id_red and o.id = b.id_bono and c.id_red in (select id_red from afiliar where id_afiliado = '.$id.') group by b.id_bono'); return $query->result(); } function ver_total_bonos_id_red_Range($id,$red,$inicio,$fin){ $query = $this->db->query('select h.id, h.dia, h.mes, h.ano, c.id_red, t.nombre red, b.id_bono, o.nombre, sum(b.valor) valor from comision_bono b, cat_bono_condicion c , tipo_red t, bono o, comision_bono_historial h where b.id_usuario = '.$id.' and b.id_bono = c.id_bono and b.id_bono_historial = h.id and b.id_bono = h.id_bono and h.fecha between "'.$inicio.' 00:00:00" and "'.$fin.' 23:59:59" and t.id = c.id_red and o.id = b.id_bono and c.id_red = '.$red.' group by b.id_bono'); return $query->result(); } function ver_total_bonos_id_Range($id,$inicio,$fin){ $query = $this->db->query('select h.id, h.dia, h.mes, h.ano, c.id_red, t.nombre red, b.id_bono, o.nombre, sum(b.valor) valor from comision_bono b, cat_bono_condicion c , tipo_red t, bono o, comision_bono_historial h where b.id_usuario = '.$id.' and b.id_bono = c.id_bono and b.id_bono_historial = h.id and b.id_bono = h.id_bono and h.fecha between "'.$inicio.' 00:00:00" and "'.$fin.' 23:59:59" and t.id = c.id_red and o.id = b.id_bono and c.id_red in (select id_red from afiliar where id_afiliado = '.$id.') group by b.id_bono'); $bono=$query->result(); return $bono ? $bono[0]->valor: 0 ; } function ver_total_bonos_id($id){ $query = $this->db->query('select sum(valor) valor from comision_bono where id_usuario = '.$id); $q=$query->result(); return $q[0]->valor; } function get_historial_fecha($inicio,$fin){ $q=$this->db->query("SELECT h.id , h.fecha, h.id_bono, b.nombre bono , (select count(distinct id_usuario) from comision_bono where id_bono_historial = h.id and valor > 0) afiliados, (select sum(valor) from comision_bono where id_bono_historial = h.id) total FROM comision_bono_historial h , bono b WHERE fecha between '".$inicio." 00:00:00' and '".$fin." 23:59:59' and b.id = h.id_bono ORDER BY h.id asc"); $q2=$q->result(); return $q2; } function detalle_historial_id($id){ $q=$this->db->query("SELECT c.id, h.id, c.id_usuario, concat(p.nombre,' ',p.apellido) as nombres, c.id_bono, b.nombre bono, h.dia, h.mes, h.ano, h.fecha, sum(c.valor) as valor FROM comision_bono c,users u,user_profiles p,bono b,comision_bono_historial h WHERE c.id_bono_historial = ".$id." and p.user_id = c.id_usuario and u.id = c.id_usuario and b.id = c.id_bono and c.valor > 0 and h.id = id_bono_historial group by c.id_usuario"); $q2=$q->result(); return $q2; } function detalle_historial_fecha($id,$fecha){ $q=$this->db->query("SELECT c.id, h.id, c.id_usuario, #concat(p.nombre,' ',p.apellido) as nombres, u.username nombres, c.id_bono, b.nombre bono, h.dia, h.mes, h.ano, h.fecha, c.valor FROM comision_bono c,users u,/*user_profiles p,*/bono b,comision_bono_historial h WHERE c.id_bono_historial = ".$id." #and p.user_id = c.id_usuario and u.id = c.id_usuario and b.id = c.id_bono and h.id = id_bono_historial and date_format(h.fecha,'%Y-%m') = '".date("Y-m", strtotime($fecha))."' ORDER BY c.id "); $q2=$q->result(); return $q2; } function detalle_bono_id($id){ $q=$this->db->query("SELECT c.id, h.id, c.id_bono, b.nombre bono, b.descripcion, h.dia, h.mes, h.ano, h.fecha, sum(c.valor) as valor FROM comision_bono c,users u,user_profiles p,bono b,comision_bono_historial h WHERE p.user_id = c.id_usuario and u.id = c.id_usuario and b.id = c.id_bono and c.valor > 0 and c.id_usuario = ".$id." and c.id_bono_historial = h.id group by h.id order by h.fecha desc"); $q2=$q->result(); return $q2; } function detalle_bono_fecha($id,$fecha){ $q=$this->db->query("SELECT c.id, h.id, -- c.id_usuario, -- concat(p.nombre,' ',p.apellido) as nombres, c.id_bono, b.nombre bono, b.descripcion, h.dia, h.mes, h.ano, h.fecha, sum(c.valor) as valor FROM comision_bono c,users u,user_profiles p,bono b,comision_bono_historial h WHERE p.user_id = c.id_usuario and u.id = c.id_usuario and b.id = c.id_bono and c.valor > 0 and c.id_usuario = ".$id." and c.id_bono_historial = h.id and date_format(h.fecha,'%Y-%m') = '".date("Y-m", strtotime($fecha))."' group by h.id ORDER BY h.id "); $q2=$q->result(); return $q2; } function getBonosPagadosRed($id,$inicio,$fin){ $q=$this->db->query("SELECT -- c.id, h.id, -- c.id_usuario, concat(p.nombre,' ',p.apellido) as afiliado, u.username as usuario, c.id_bono, b.nombre bono, b.descripcion, h.dia, h.mes, h.ano, h.fecha, sum(c.valor) as valor FROM comision_bono c,users u,user_profiles p,bono b,comision_bono_historial h WHERE p.user_id = c.id_usuario and u.id = c.id_usuario and b.id = c.id_bono and c.valor > 0 and c.id_usuario = ".$id." and c.id_bono_historial = h.id and h.fecha between '".$inicio." 00:00:00' and '".$fin." 23:59:59' group by h.id ORDER BY h.id "); $q2=$q->result(); return $q2; } function getBonosPagadosTodos($inicio,$fin){ $q=$this->db->query("SELECT -- c.id, h.id, -- c.id_usuario, concat(p.nombre,' ',p.apellido) as afiliado, u.username as usuario, c.id_bono, b.nombre bono, b.descripcion, h.dia, h.mes, h.ano, h.fecha, sum(c.valor) as valor FROM comision_bono c,users u,user_profiles p,bono b,comision_bono_historial h WHERE p.user_id = c.id_usuario and u.id = c.id_usuario and b.id = c.id_bono and c.valor > 0 and c.id_usuario in (select id from users) and c.id_bono_historial = h.id and h.fecha between '".$inicio." 00:00:00' and '".$fin." 23:59:59' group by c.id_usuario, h.id ORDER BY h.id "); $q2=$q->result(); return $q2; } function kill_historial($id){ $this->updateRemanenteLast($id); #TODO: return true; $this->db->query("delete from comision_bono_historial where id = ".$id); $this->db->query("delete from comision_bono where id_bono_historial = ".$id); $this->db->query("delete from comisionPuntosRemanentes where id_bono_historial = ".$id); return true ; } private function getBonosHistorial($id_historial,$id_bono = 2) { $query="SELECT * FROM comision_bono WHERE id_bono_historial = $id_historial AND id_bono = $id_bono GROUP BY id_usuario ORDER BY valor DESC"; $q = $this->db->query($query); $q = $q->result(); if(!$q) return array(); return $q; } private function getHistorial($id) { $query="SELECT * FROM comision_bono_historial WHERE id in ($id)"; $q = $this->db->query($query); $q = $q->result(); return $q; } private function updateRemanenteLast($id) { $historial = $this->getHistorial($id); if(!$historial) return false; $id_bono = $historial[0]->id_bono; $lastHistorial = $this->getLastHistorial($id, $id_bono); log_message('DEV',"historial :: ".json_encode($lastHistorial)); if(!$lastHistorial) return false; $id_historial = $lastHistorial[0]->id; $usuarios = $this->getBonosHistorial($id_historial,$id_bono); return $this->updateRemanenteUsuario($usuarios, $id_bono); } private function getLastHistorial($id, $id_bono = 2) { $query = "SELECT * FROM comision_bono_historial WHERE id < $id AND id_bono = $id_bono ORDER BY fecha DESC "; $q = $this->db->query($query); $q = $q->result(); return $q; } private function updateRemanenteUsuario($usuarios, $id_bono = 2) { $update = array(); $where = array(); $where["id_bono"] = $id_bono; $lados = array("izquierda", "derecha"); foreach ($usuarios as $index => $usuario) { $remanente = $usuario->extra; $id_usuario = $usuario->id_usuario; if (strlen($remanente) < 2) return false; $extra = explode("|", $remanente); $remanente = "{0,0}"; if (sizeof($extra) > 1) $remanente = $extra[1]; $json = json_encode($remanente); log_message('DEV',"$id_usuario SET REMANENTE:::>> ". $json); $remanente = $this->formatDecode($remanente); $where["id_usuario"] = $id_usuario; foreach ($lados as $index => $lado) { $data = 0; if(isset($remanente[$index])) $data = $remanente[$index]; $update[$lado] = $data; } log_message('DEV',"$id_usuario ::: ".json_encode($update)); #TODO: continue; foreach ($where as $key => $value) $this->db->where($key, $value); $this->db->update("comisionPuntosRemanentes", $update); } } private function formatDecode($json) { $replament = array( ',"{"' => '|"{"', ',"0"]' => '|0]', '["0"' => '[0', ']' => '', '[' => '', '|"' => '|', '"|' => '|' ); foreach ($replament as $index => $item) $json = str_replace($index,$item,$json); $json = explode("|",$json); return $json; } }
34.199288
217
0.625494
b906e373462c23e83f2f64dfd11926da74e6a843
59,755
c
C
sdk_linux/soc/src/mpp/component/hifb/drv/hi3516cv500/hifb_graphic_hal.c
openharmony-gitee-mirror/device_hisilicon_hispark_taurus
9b04ede169525cf3ac928b43b9aa0e858d1de772
[ "Apache-2.0" ]
null
null
null
sdk_linux/soc/src/mpp/component/hifb/drv/hi3516cv500/hifb_graphic_hal.c
openharmony-gitee-mirror/device_hisilicon_hispark_taurus
9b04ede169525cf3ac928b43b9aa0e858d1de772
[ "Apache-2.0" ]
null
null
null
sdk_linux/soc/src/mpp/component/hifb/drv/hi3516cv500/hifb_graphic_hal.c
openharmony-gitee-mirror/device_hisilicon_hispark_taurus
9b04ede169525cf3ac928b43b9aa0e858d1de772
[ "Apache-2.0" ]
1
2021-09-13T11:15:01.000Z
2021-09-13T11:15:01.000Z
/* * Copyright (C) 2021 HiSilicon (Shanghai) Technologies CO., LIMITED. * * 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 2 * 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "hifb_graphic_hal.h" #include "hi_osal.h" #include "hi_debug.h" #include "hifb_coef.h" #include "mddrc_reg.h" #include "hi_math.h" #include "hifb_def.h" /* MACRO DEFINITION */ #define HAL_PRINT HI_PRINT #define DDRC_BASE_ADDR 0x04605000 #define VOU_REGS_ADDR 0x11440000 #define VOU_REGS_SIZE 0x40000 /* For CMP and DCMP */ #define CMP_SEG_OFFSET (0x80 / 4) #define DCMP_SEG_OFFSET (0x20 / 4) /* EXTERN VARIABLES */ #ifdef CONFIG_HIFB_SOFT_IRQ_SUPPORT #define SYS_REGS_ADDR 0X12020000 typedef union { struct { unsigned int software_int : 1; /* [0] */ unsigned int reserved : 31; /* [1 ~31] */ } bits; unsigned int u32; } u_sys_reg; typedef struct { volatile hi_u32 reserved[7]; /* 0x0~0x18, reserved 7 num register */ volatile u_sys_reg soft_int; /* 0x1c */ volatile hi_u32 reserved1; /* 0x20 */ } s_sys_regs_type; volatile s_sys_regs_type *g_sys_reg = HI_NULL; #endif volatile s_vdp_regs_type *g_hifb_reg = HI_NULL; volatile mddrc_regs *g_mddrc_reg = HI_NULL; hi_s32 fb_hal_vou_init(hi_void) { if (g_hifb_reg == HI_NULL) { g_hifb_reg = (volatile s_vdp_regs_type *)osal_ioremap(VOU_REGS_ADDR, (hi_u32)VOU_REGS_SIZE); } #ifdef CONFIG_HIFB_SOFT_IRQ_SUPPORT if (g_sys_reg == HI_NULL) { g_sys_reg = (volatile s_sys_regs_type *)osal_ioremap(SYS_REGS_ADDR, (hi_u32)sizeof(s_sys_regs_type)); } #endif if (g_hifb_reg == HI_NULL) { osal_printk("ioremap_nocache failed\n"); return HI_FAILURE; } #ifdef CONFIG_HIFB_SOFT_IRQ_SUPPORT if (g_sys_reg == HI_NULL) { osal_printk("ioremap_nocache failed\n"); return HI_FAILURE; } #endif return HI_SUCCESS; } hi_void fb_hal_vou_exit(hi_void) { if (g_hifb_reg != HI_NULL) { osal_iounmap((void *)g_hifb_reg, VOU_REGS_SIZE); g_hifb_reg = HI_NULL; } #ifdef CONFIG_HIFB_SOFT_IRQ_SUPPORT if (g_sys_reg != HI_NULL) { osal_iounmap((void *)g_sys_reg, sizeof(s_sys_regs_type)); g_sys_reg = HI_NULL; } #endif } hi_void fb_hal_write_reg(hi_u32 *address, hi_u32 value) { if (address == HI_NULL) { return; } *(volatile hi_u32 *)address = value; return; } hi_u32 fb_hal_read_reg(hi_u32 *address) { if (address == HI_NULL) { return 0; } return *(volatile hi_u32 *)(address); } /* * Prototype : fb_vou_get_abs_addr * Description : Get the absolute address of the layer (video layer and graphics layer) */ hi_ulong fb_vou_get_abs_addr(hal_disp_layer layer, hi_ulong reg) { hi_ulong reg_abs_addr; switch (layer) { case HAL_DISP_LAYER_VHD0: case HAL_DISP_LAYER_VHD1: case HAL_DISP_LAYER_VHD2: reg_abs_addr = (reg) + (layer - HAL_DISP_LAYER_VHD0) * VHD_REGS_LEN; break; case HAL_DISP_LAYER_GFX0: case HAL_DISP_LAYER_GFX1: case HAL_DISP_LAYER_GFX3: reg_abs_addr = (reg) + (layer - HAL_DISP_LAYER_GFX0) * GFX_REGS_LEN; break; /* one wbc dev */ case HAL_DISP_LAYER_WBC: reg_abs_addr = (reg); break; default: HAL_PRINT("Error channel id found in %s: L%d\n", __FUNCTION__, __LINE__); return 0; } return reg_abs_addr; } /* * Prototype : fb_vou_get_chn_abs_addr * Description : Get the absolute address of the video channel */ hi_ulong fb_vou_get_chn_abs_addr(hal_disp_outputchannel chan, hi_ulong reg) { volatile hi_ulong reg_abs_addr; switch (chan) { case HAL_DISP_CHANNEL_DHD0: case HAL_DISP_CHANNEL_DHD1: reg_abs_addr = reg + (chan - HAL_DISP_CHANNEL_DHD0) * DHD_REGS_LEN; break; default: HAL_PRINT("Error channel id found in %s: L%d\n", __FUNCTION__, __LINE__); return 0; } return reg_abs_addr; } static hi_u32 hal_get_addr_chnabs(hal_disp_outputchannel chan, volatile hi_u32 *value) { volatile hi_ulong addr_reg; addr_reg = fb_vou_get_chn_abs_addr(chan, (hi_ulong)(uintptr_t)value); return fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); } static hi_u32 hal_get_addr_abs(volatile hi_ulong *addr_reg, hal_disp_layer layer, volatile hi_u32 *value) { *addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)value); return fb_hal_read_reg ((hi_u32 *)(uintptr_t)(*addr_reg)); } hi_ulong fb_vou_get_gfx_abs_addr(hal_disp_layer layer, hi_ulong reg) { volatile hi_ulong reg_abs_addr; switch (layer) { case HAL_DISP_LAYER_GFX0: case HAL_DISP_LAYER_GFX1: case HAL_DISP_LAYER_GFX3: reg_abs_addr = reg + (layer - HAL_DISP_LAYER_GFX0) * GRF_REGS_LEN; break; default: HAL_PRINT("Error layer id found in FUNC:%s,LINE:%d\n", __FUNCTION__, __LINE__); return 0; } return reg_abs_addr; } /* * Name : fb_hal_disp_get_intf_enable * Desc : Get the status (enable,disable status) of display interface. */ hi_bool fb_hal_disp_get_intf_enable(hal_disp_outputchannel chan, hi_bool *intf_en) { volatile u_dhd0_ctrl dhd0_ctrl; volatile hi_ulong addr_reg; switch (chan) { case HAL_DISP_CHANNEL_DHD0: case HAL_DISP_CHANNEL_DHD1: addr_reg = fb_vou_get_chn_abs_addr(chan, (hi_ulong)(uintptr_t)&(g_hifb_reg->dhd0_ctrl.u32)); dhd0_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); *intf_en = dhd0_ctrl.bits.intf_en; break; default: HAL_PRINT("Error channel id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool hal_disp_get_intf_sync(hal_disp_outputchannel chan, hal_disp_syncinfo *sync_info) { volatile u_dhd0_ctrl dhd0_ctrl; volatile u_dhd0_vsync1 dhd0_vsync1; volatile u_dhd0_vsync2 dhd0_vsync2; volatile u_dhd0_hsync1 dhd0_hsync1; volatile u_dhd0_hsync2 dhd0_hsync2; volatile u_dhd0_vplus1 dhd0_vplus1; volatile u_dhd0_vplus2 dhd0_vplus2; volatile u_dhd0_pwr dhd0_pwr; switch (chan) { case HAL_DISP_CHANNEL_DHD0: case HAL_DISP_CHANNEL_DHD1: { dhd0_ctrl.u32 = hal_get_addr_chnabs(chan, &(g_hifb_reg->dhd0_ctrl.u32)); sync_info->iop = dhd0_ctrl.bits.iop; dhd0_hsync1.u32 = hal_get_addr_chnabs(chan, &(g_hifb_reg->dhd0_hsync1.u32)); sync_info->hact = dhd0_hsync1.bits.hact + 1; sync_info->hbb = dhd0_hsync1.bits.hbb + 1; dhd0_hsync2.u32 = hal_get_addr_chnabs(chan, &(g_hifb_reg->dhd0_hsync2.u32)); sync_info->hmid = (dhd0_hsync2.bits.hmid == 0) ? 0 : dhd0_hsync2.bits.hmid + 1; sync_info->hfb = dhd0_hsync2.bits.hfb + 1; /* Config VHD interface vertical timing */ dhd0_vsync1.u32 = hal_get_addr_chnabs(chan, &(g_hifb_reg->dhd0_vsync1.u32)); sync_info->vact = dhd0_vsync1.bits.vact + 1; sync_info->vbb = dhd0_vsync1.bits.vbb + 1; dhd0_vsync2.u32 = hal_get_addr_chnabs(chan, &(g_hifb_reg->dhd0_vsync2.u32)); sync_info->vfb = dhd0_vsync2.bits.vfb + 1; /* Config VHD interface vertical bottom timing,no use in progressive mode */ dhd0_vplus1.u32 = hal_get_addr_chnabs(chan, &(g_hifb_reg->dhd0_vplus1.u32)); sync_info->bvact = dhd0_vplus1.bits.bvact + 1; sync_info->bvbb = dhd0_vplus1.bits.bvbb + 1; dhd0_vplus2.u32 = hal_get_addr_chnabs(chan, &(g_hifb_reg->dhd0_vplus2.u32)); sync_info->bvfb = dhd0_vplus2.bits.bvfb + 1; /* Config VHD interface vertical bottom timing, */ dhd0_pwr.u32 = hal_get_addr_chnabs(chan, &(g_hifb_reg->dhd0_pwr.u32)); sync_info->hpw = dhd0_pwr.bits.hpw + 1; sync_info->vpw = dhd0_pwr.bits.vpw + 1; break; } default: { HAL_PRINT("Error channel id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } } return HI_TRUE; } hi_bool hal_disp_get_intf_mux_sel(hal_disp_outputchannel chan, VO_INTF_TYPE_E *intf_type) { volatile u_vo_mux vo_mux; if (chan > HAL_DISP_CHANNEL_DHD1) { HAL_PRINT("Error channel id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } vo_mux.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->vo_mux.u32)); switch (vo_mux.bits.digital_sel) { case 0: { /* 0 is Type */ *intf_type = HAL_DISP_INTF_BT1120; break; } case 1: { /* 1 is Type */ *intf_type = HAL_DISP_INTF_BT656; break; } case 2: { /* 2 is Type */ *intf_type = HAL_DISP_INTF_LCD; break; } default: { return HI_FALSE; } } return HI_TRUE; } hi_bool fb_hal_disp_get_int_state(hal_disp_outputchannel chan, hi_bool *bottom) { volatile u_dhd0_state dhd0_state; volatile hi_ulong addr_reg; switch (chan) { case HAL_DISP_CHANNEL_DHD0: case HAL_DISP_CHANNEL_DHD1: addr_reg = fb_vou_get_chn_abs_addr(chan, (hi_ulong)(uintptr_t)&(g_hifb_reg->dhd0_state.u32)); dhd0_state.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); *bottom = dhd0_state.bits.bottom_field; break; default: HAL_PRINT("Error channel id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } /* * Prototype : fb_hal_disp_get_disp_iop * Description : Interlace or Progressive */ hi_bool fb_hal_disp_get_disp_iop(hal_disp_outputchannel chan, hi_bool *iop) { u_dhd0_ctrl dhd0_ctrl; volatile hi_ulong addr_reg; switch (chan) { case HAL_DISP_CHANNEL_DHD0: case HAL_DISP_CHANNEL_DHD1: addr_reg = fb_vou_get_chn_abs_addr(chan, (hi_ulong)(uintptr_t)&(g_hifb_reg->dhd0_ctrl.u32)); dhd0_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); *iop = dhd0_ctrl.bits.iop; break; default: HAL_PRINT("Error channel id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool hal_disp_get_vt_thd_mode(hal_disp_outputchannel chan, hi_bool *field_mode) { volatile u_dhd0_vtthd dhd0_vtthd; volatile hi_ulong addr_reg; switch (chan) { case HAL_DISP_CHANNEL_DHD0: case HAL_DISP_CHANNEL_DHD1: addr_reg = fb_vou_get_chn_abs_addr(chan, (hi_ulong)(uintptr_t)&(g_hifb_reg->dhd0_vtthd.u32)); dhd0_vtthd.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); *field_mode = dhd0_vtthd.bits.thd1_mode; break; default: HAL_PRINT("Error channel id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } /* * Name : fb_hal_disp_set_int_mask * Desc : Set interrupt mask to open or close interrupt. */ hi_bool fb_hal_disp_set_int_mask(hi_u32 mask_en) { volatile u_vointmsk1 vointmsk1; /* Display interrupt mask enable */ vointmsk1.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->vointmsk1.u32)); vointmsk1.u32 = vointmsk1.u32 | mask_en; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->vointmsk1.u32), vointmsk1.u32); vointmsk1.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->vointmsk1.u32)); return HI_TRUE; } /* Name : fb_hal_disp_clr_int_mask */ hi_bool fb_hal_disp_clr_int_mask(hi_u32 mask_en) { volatile u_vointmsk1 vointmsk1; /* Display interrupt mask enable */ vointmsk1.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->vointmsk1.u32)); vointmsk1.u32 = vointmsk1.u32 & (~mask_en); fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->vointmsk1.u32), vointmsk1.u32); return HI_TRUE; } /* Get interrupt status */ hi_u32 fb_hal_disp_get_int_status(hi_u32 int_msk) { volatile u_vomskintsta1 vomskintsta1; /* read interrupt status */ vomskintsta1.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->vomskintsta1.u32)); return (vomskintsta1.u32 & int_msk); } /* Get the original interrupt status */ hi_u32 fb_hal_disp_get_ori_int_status(hi_u32 int_status) { volatile u_vointsta vointsta; /* read original interrupt status */ vointsta.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)&(g_hifb_reg->vointsta.u32)); return (vointsta.u32 & int_status); } /* * Name : fb_hal_disp_clear_int_status * Desc : Clear interrupt status. */ hi_bool fb_hal_disp_clear_int_status(hi_u32 int_msk) { /* read interrupt status */ fb_hal_write_reg((hi_u32 *)(uintptr_t)&(g_hifb_reg->vomskintsta.u32), int_msk); return HI_TRUE; } hi_u32 hal_disp_get_raw_int_status(hi_u32 int_msk) { volatile u_vointsta vointsta; /* read interrupt status */ vointsta.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)&(g_hifb_reg->vointsta.u32)); return (vointsta.u32 & int_msk); } hi_u32 hal_disp_get_raw_int_status1(hi_u32 int_msk) { volatile u_vointsta1 vointsta1; /* read interrupt status */ vointsta1.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)&(g_hifb_reg->vointsta1.u32)); return (vointsta1.u32 & int_msk); } /* * Name : hal_disp_set_clk_gate_enable * Desc : Set VO Clock gate enable */ hi_bool hal_disp_set_clk_gate_enable(hi_u32 data) { volatile u_voctrl voctrl; voctrl.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->voctrl.u32)); voctrl.bits.vo_ck_gt_en = data; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->voctrl.u32), voctrl.u32); return HI_TRUE; } /* * Name : fb_hal_disp_set_reg_up * Desc : Set device register update. */ hi_void fb_hal_disp_set_reg_up(hal_disp_outputchannel chan) { volatile u_dhd0_ctrl dhd0_ctrl; volatile hi_ulong addr_reg; if (chan > HAL_DISP_CHANNEL_DHD1) { HI_PRINT("Error,fb_hal_disp_set_reg_up Select Wrong CHANNEL ID\n"); return; } /* If DHD0 or DHD1 */ addr_reg = fb_vou_get_chn_abs_addr(chan, (hi_ulong)(uintptr_t)&(g_hifb_reg->dhd0_ctrl.u32)); dhd0_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); dhd0_ctrl.bits.regup = 0x1; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, dhd0_ctrl.u32); return; } /* * Name : fb_hal_disp_set_reg_up * Desc : Get device register update. */ hi_u32 fb_hal_disp_get_reg_up(hal_disp_outputchannel chan) { hi_u32 data; volatile u_dhd0_ctrl dhd0_ctrl; volatile hi_ulong addr_reg; addr_reg = fb_vou_get_chn_abs_addr(chan, (hi_ulong)(uintptr_t)&(g_hifb_reg->dhd0_ctrl.u32)); dhd0_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); data = dhd0_ctrl.bits.regup; return data & 0x1; } hi_bool fb_hal_video_set_layer_disp_rect(hal_disp_layer layer, HIFB_RECT *rect) { volatile u_g0_dfpos g0_dfpos; volatile u_g0_dlpos g0_dlpos; volatile hi_ulong addr_reg; switch (layer) { case HAL_DISP_LAYER_GFX0: case HAL_DISP_LAYER_GFX1: case HAL_DISP_LAYER_GFX3: addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_dfpos.u32)); g0_dfpos.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_dfpos.bits.disp_xfpos = rect->x; g0_dfpos.bits.disp_yfpos = rect->y; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_dfpos.u32); addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_dlpos.u32)); g0_dlpos.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_dlpos.bits.disp_xlpos = rect->x + rect->w - 1; g0_dlpos.bits.disp_ylpos = rect->y + rect->h - 1; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_dlpos.u32); break; default: HAL_PRINT("Error layer id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } /* Set the video image display area window */ hi_bool fb_hal_video_set_layer_video_rect(hal_disp_layer layer, HIFB_RECT *rect) { volatile u_g0_vfpos g0_vfpos; volatile u_g0_vlpos g0_vlpos; volatile hi_ulong addr_reg; switch (layer) { case HAL_DISP_LAYER_GFX0: case HAL_DISP_LAYER_GFX1: case HAL_DISP_LAYER_GFX3: addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_vfpos.u32)); g0_vfpos.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_vfpos.bits.video_xfpos = rect->x; g0_vfpos.bits.video_yfpos = rect->y; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_vfpos.u32); addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_vlpos.u32)); g0_vlpos.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_vlpos.bits.video_xlpos = rect->x + rect->w - 1; g0_vlpos.bits.video_ylpos = rect->y + rect->h - 1; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_vlpos.u32); break; default: HAL_PRINT("Error layer id %d# found in %s,%s: L%d\n", layer, __FILE__, __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } /* * Name : fb_hal_layer_enable_layer * Desc : Set layer enable */ hi_bool fb_hal_layer_enable_layer(hal_disp_layer layer, hi_u32 enable) { volatile u_v0_ctrl v0_ctrl; volatile u_g0_ctrl g0_ctrl; volatile hi_ulong addr_reg; switch (layer) { case HAL_DISP_LAYER_VHD0: case HAL_DISP_LAYER_VHD1: case HAL_DISP_LAYER_VHD2: addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->v0_ctrl.u32)); v0_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); v0_ctrl.bits.surface_en = enable; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, v0_ctrl.u32); break; case HAL_DISP_LAYER_GFX0: case HAL_DISP_LAYER_GFX1: case HAL_DISP_LAYER_GFX3: addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_ctrl.u32)); g0_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_ctrl.bits.surface_en = enable; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_ctrl.u32); break; default: HAL_PRINT("Error layer id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool fb_hal_layer_get_layer_enable(hal_disp_layer layer, hi_u32 *enable) { volatile u_v0_ctrl v0_ctrl; volatile u_g0_ctrl g0_ctrl; volatile hi_ulong addr_reg; switch (layer) { case HAL_DISP_LAYER_VHD0: case HAL_DISP_LAYER_VHD1: case HAL_DISP_LAYER_VHD2: addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->v0_ctrl.u32)); v0_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); *enable = v0_ctrl.bits.surface_en; break; case HAL_DISP_LAYER_GFX0: case HAL_DISP_LAYER_GFX1: case HAL_DISP_LAYER_GFX3: addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_ctrl.u32)); g0_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); *enable = g0_ctrl.bits.surface_en; break; default: HAL_PRINT("Error layer id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } /* Desc : Set layer data type */ hi_bool fb_hal_layer_set_layer_data_fmt(hal_disp_layer layer, hal_disp_pixel_format data_fmt) { volatile u_gfx_src_info gfx_src_info; volatile hi_ulong addr_reg; if ((layer == HAL_DISP_LAYER_GFX0) || (layer == HAL_DISP_LAYER_GFX1) || (layer == HAL_DISP_LAYER_GFX3)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_src_info.u32)); gfx_src_info.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_src_info.bits.ifmt = data_fmt; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, gfx_src_info.u32); } else { HAL_PRINT("Error layer id%d found in %s: L%d\n", layer, __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool fb_hal_layer_get_layer_data_fmt(hal_disp_layer layer, hi_u32 *fmt) { volatile u_gfx_src_info gfx_src_info; volatile hi_ulong addr_reg; if ((layer == HAL_DISP_LAYER_GFX0) || (layer == HAL_DISP_LAYER_GFX1) || (layer == HAL_DISP_LAYER_GFX3)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_src_info.u32)); gfx_src_info.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); *fmt = gfx_src_info.bits.ifmt; } else { HAL_PRINT("Error layer id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_void fb_hal_layer_csc_set_enable(hal_disp_layer layer, hi_bool csc_en) { u_g0_hipp_csc_ctrl g0_hipp_csc_ctrl; volatile hi_ulong addr_reg; if ((layer >= LAYER_GFX_START) && (layer <= LAYER_GFX_END)) { addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_hipp_csc_ctrl.u32)); g0_hipp_csc_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_hipp_csc_ctrl.bits.hipp_csc_en = csc_en; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_ctrl.u32); } } hi_void fb_hal_layer_csc_set_ck_gt_en(hal_disp_layer layer, hi_bool ck_gt_en) { u_g0_hipp_csc_ctrl g0_hipp_csc_ctrl; volatile hi_ulong addr_reg; if ((layer >= LAYER_GFX_START) && (layer <= LAYER_GFX_END)) { addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_hipp_csc_ctrl.u32)); g0_hipp_csc_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_hipp_csc_ctrl.bits.hipp_csc_ck_gt_en = ck_gt_en; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_ctrl.u32); } } hi_void fb_hal_layer_csc_set_coef(hal_disp_layer layer, vdp_csc_coef *coef) { u_g0_hipp_csc_coef00 g0_hipp_csc_coef00; u_g0_hipp_csc_coef01 g0_hipp_csc_coef01; u_g0_hipp_csc_coef02 g0_hipp_csc_coef02; u_g0_hipp_csc_coef10 g0_hipp_csc_coef10; u_g0_hipp_csc_coef11 g0_hipp_csc_coef11; u_g0_hipp_csc_coef12 g0_hipp_csc_coef12; u_g0_hipp_csc_coef20 g0_hipp_csc_coef20; u_g0_hipp_csc_coef21 g0_hipp_csc_coef21; u_g0_hipp_csc_coef22 g0_hipp_csc_coef22; volatile hi_ulong addr_reg; if ((layer >= HAL_DISP_LAYER_GFX0) && (layer <= HAL_DISP_LAYER_GFX3)) { g0_hipp_csc_coef00.u32 = hal_get_addr_abs(&addr_reg, layer, &(g_hifb_reg->g0_hipp_csc_coef00.u32)); g0_hipp_csc_coef00.bits.hipp_csc_coef00 = coef->csc_coef00; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_coef00.u32); g0_hipp_csc_coef01.u32 = hal_get_addr_abs(&addr_reg, layer, &(g_hifb_reg->g0_hipp_csc_coef01.u32)); g0_hipp_csc_coef01.bits.hipp_csc_coef01 = coef->csc_coef01; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_coef01.u32); g0_hipp_csc_coef02.u32 = hal_get_addr_abs(&addr_reg, layer, &(g_hifb_reg->g0_hipp_csc_coef02.u32)); g0_hipp_csc_coef02.bits.hipp_csc_coef02 = coef->csc_coef02; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_coef02.u32); g0_hipp_csc_coef10.u32 = hal_get_addr_abs(&addr_reg, layer, &(g_hifb_reg->g0_hipp_csc_coef10.u32)); g0_hipp_csc_coef10.bits.hipp_csc_coef10 = coef->csc_coef10; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_coef10.u32); g0_hipp_csc_coef11.u32 = hal_get_addr_abs(&addr_reg, layer, &(g_hifb_reg->g0_hipp_csc_coef11.u32)); g0_hipp_csc_coef11.bits.hipp_csc_coef11 = coef->csc_coef11; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_coef11.u32); g0_hipp_csc_coef12.u32 = hal_get_addr_abs(&addr_reg, layer, &(g_hifb_reg->g0_hipp_csc_coef12.u32)); g0_hipp_csc_coef12.bits.hipp_csc_coef12 = coef->csc_coef12; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_coef12.u32); g0_hipp_csc_coef20.u32 = hal_get_addr_abs(&addr_reg, layer, &(g_hifb_reg->g0_hipp_csc_coef20.u32)); g0_hipp_csc_coef20.bits.hipp_csc_coef20 = coef->csc_coef20; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_coef20.u32); g0_hipp_csc_coef21.u32 = hal_get_addr_abs(&addr_reg, layer, &(g_hifb_reg->g0_hipp_csc_coef21.u32)); g0_hipp_csc_coef21.bits.hipp_csc_coef21 = coef->csc_coef21; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_coef21.u32); g0_hipp_csc_coef22.u32 = hal_get_addr_abs(&addr_reg, layer, &(g_hifb_reg->g0_hipp_csc_coef22.u32)); g0_hipp_csc_coef22.bits.hipp_csc_coef22 = coef->csc_coef22; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_coef22.u32); } else { HAL_PRINT("Error layer id found in %s, %s, %d\n", __FILE__, __FUNCTION__, __LINE__); } return; } hi_void fb_hal_layer_csc_set_dc_coef(hal_disp_layer layer, vdp_csc_dc_coef *csc_dc_coef) { u_g0_hipp_csc_idc0 g0_hipp_csc_idc0; u_g0_hipp_csc_idc1 g0_hipp_csc_idc1; u_g0_hipp_csc_idc2 g0_hipp_csc_idc2; u_g0_hipp_csc_odc0 g0_hipp_csc_odc0; u_g0_hipp_csc_odc1 g0_hipp_csc_odc1; u_g0_hipp_csc_odc2 g0_hipp_csc_odc2; volatile hi_ulong addr_reg; if (layer == HAL_DISP_LAYER_GFX0) { addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_hipp_csc_idc0.u32)); g0_hipp_csc_idc0.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_hipp_csc_idc0.bits.hipp_csc_idc0 = csc_dc_coef->csc_in_dc0; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_idc0.u32); addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_hipp_csc_idc1.u32)); g0_hipp_csc_idc1.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_hipp_csc_idc1.bits.hipp_csc_idc1 = csc_dc_coef->csc_in_dc1; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_idc1.u32); addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_hipp_csc_idc2.u32)); g0_hipp_csc_idc2.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_hipp_csc_idc2.bits.hipp_csc_idc2 = csc_dc_coef->csc_in_dc2; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_idc2.u32); addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_hipp_csc_odc0.u32)); g0_hipp_csc_odc0.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_hipp_csc_odc0.bits.hipp_csc_odc0 = csc_dc_coef->csc_out_dc0; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_odc0.u32); addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_hipp_csc_odc1.u32)); g0_hipp_csc_odc1.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_hipp_csc_odc1.bits.hipp_csc_odc1 = csc_dc_coef->csc_out_dc1; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_odc1.u32); addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_hipp_csc_odc2.u32)); g0_hipp_csc_odc2.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_hipp_csc_odc2.bits.hipp_csc_odc2 = csc_dc_coef->csc_out_dc2; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_odc2.u32); } else { HAL_PRINT("Error layer id found in %s, %s, %d\n", __FILE__, __FUNCTION__, __LINE__); } } hi_void fb_hal_layer_csc_set_param(hal_disp_layer layer, csc_coef_param *coef_param) { u_g0_hipp_csc_scale g0_hipp_csc_scale; u_g0_hipp_csc_min_y g0_hipp_csc_min_y; u_g0_hipp_csc_min_c g0_hipp_csc_min_c; u_g0_hipp_csc_max_y g0_hipp_csc_max_y; u_g0_hipp_csc_max_c g0_hipp_csc_max_c; volatile hi_ulong addr_reg; if ((layer >= LAYER_GFX_START) && (layer <= LAYER_GFX_END)) { addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_hipp_csc_scale.u32)); g0_hipp_csc_scale.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_hipp_csc_scale.bits.hipp_csc_scale = coef_param->csc_scale2p; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_scale.u32); addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_hipp_csc_min_y.u32)); g0_hipp_csc_min_y.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_hipp_csc_min_y.bits.hipp_csc_min_y = coef_param->csc_clip_min; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_min_y.u32); addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_hipp_csc_min_c.u32)); g0_hipp_csc_min_c.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_hipp_csc_min_c.bits.hipp_csc_min_c = coef_param->csc_clip_min; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_min_c.u32); addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_hipp_csc_max_y.u32)); g0_hipp_csc_max_y.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_hipp_csc_max_y.bits.hipp_csc_max_y = coef_param->csc_clip_max; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_max_y.u32); addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_hipp_csc_max_c.u32)); g0_hipp_csc_max_c.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_hipp_csc_max_c.bits.hipp_csc_max_c = coef_param->csc_clip_max; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_hipp_csc_max_c.u32); } } hi_bool fb_hal_layer_set_csc_coef(hal_disp_layer layer, csc_coef *coef) { if ((layer < HAL_DISP_LAYER_VHD0) || (layer > HAL_DISP_LAYER_GFX3)) { HAL_PRINT("Error, Wrong layer ID!%d\n", __LINE__); return HI_FALSE; } fb_hal_layer_csc_set_dc_coef(layer, (vdp_csc_dc_coef *)(&coef->csc_in_dc0)); fb_hal_layer_csc_set_coef(layer, (vdp_csc_coef *)(&coef->csc_coef00)); fb_hal_layer_csc_set_param(layer, (csc_coef_param *)(&coef->new_csc_scale2p)); return HI_TRUE; } hi_bool fb_hal_layer_set_csc_mode(hal_disp_layer layer, hi_bool is_hc_mode) { hi_unused(is_hc_mode); if ((layer < HAL_DISP_LAYER_VHD0) || (layer > HAL_DISP_LAYER_GFX3)) { HAL_PRINT("Error, Wrong layer ID!%d\n", __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool fb_hal_layer_set_csc_en(hal_disp_layer layer, hi_bool csc_en) { if ((layer < HAL_DISP_LAYER_VHD0) || (layer > HAL_DISP_LAYER_GFX3)) { HAL_PRINT("Error, Wrong layer ID!%d\n", __LINE__); return HI_FALSE; } fb_hal_layer_csc_set_ck_gt_en(layer, csc_en); fb_hal_layer_csc_set_enable(layer, csc_en); return HI_TRUE; } hi_bool fb_hal_layer_set_src_resolution(hal_disp_layer layer, HIFB_RECT *rect) { u_gfx_src_reso gfx_src_reso; volatile hi_ulong addr_reg; if ((layer >= LAYER_GFX_START) && (layer <= LAYER_GFX_END)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_src_reso.u32)); gfx_src_reso.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_src_reso.bits.src_w = rect->w - 1; gfx_src_reso.bits.src_h = rect->h - 1; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, gfx_src_reso.u32); } else { HAL_PRINT("Error:layer id not found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool fb_hal_layer_set_layer_in_rect(hal_disp_layer layer, HIFB_RECT *rect) { u_gfx_ireso gfx_ireso; volatile hi_ulong addr_reg; if ((layer >= LAYER_GFX_START) && (layer <= LAYER_GFX_END)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_ireso.u32)); gfx_ireso.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_ireso.bits.ireso_w = rect->w - 1; gfx_ireso.bits.ireso_h = rect->h - 1; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, gfx_ireso.u32); } else { HAL_PRINT("Error layer id found in %s, %s, %d\n", __FILE__, __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool fb_hal_layer_set_layer_out_rect(hal_disp_layer layer, HIFB_RECT *rect) { hi_unused(rect); if ((layer >= LAYER_GFX_START) && (layer <= LAYER_GFX_END)) { return HI_TRUE; } else { HAL_PRINT("Error:layer id not found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } } /* * Name : hal_layer_set_layer_galpha * Desc : Set video/graphic layer's global alpha */ hi_bool hal_layer_set_layer_galpha(hal_disp_layer layer, hi_u8 alpha0) { volatile u_v0_ctrl v0_ctrl; volatile u_g0_ctrl g0_ctrl; volatile hi_ulong addr_reg; switch (layer) { case HAL_DISP_LAYER_VHD0: case HAL_DISP_LAYER_VHD1: case HAL_DISP_LAYER_VHD2: addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->v0_ctrl.u32)); v0_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); v0_ctrl.bits.galpha = alpha0; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, v0_ctrl.u32); break; case HAL_DISP_LAYER_GFX0: case HAL_DISP_LAYER_GFX1: case HAL_DISP_LAYER_GFX3: addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_ctrl.u32)); g0_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_ctrl.bits.galpha = alpha0; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_ctrl.u32); break; default: HAL_PRINT("Error layer id %d found in %s: L%d\n", layer, __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool hal_layer_get_layer_galpha(hal_disp_layer layer, hi_u8 *alpha0) { volatile u_v0_ctrl v0_ctrl; volatile u_g0_ctrl g0_ctrl; volatile hi_ulong addr_reg; switch (layer) { case HAL_DISP_LAYER_VHD0: case HAL_DISP_LAYER_VHD1: case HAL_DISP_LAYER_VHD2: addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->v0_ctrl.u32)); v0_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); *alpha0 = v0_ctrl.bits.galpha; break; case HAL_DISP_LAYER_GFX0: case HAL_DISP_LAYER_GFX1: case HAL_DISP_LAYER_GFX3: addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_ctrl.u32)); g0_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); *alpha0 = g0_ctrl.bits.galpha; break; default: HAL_PRINT("Error layer id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool hal_layer_set_hor_ratio(hal_disp_layer layer, hi_u32 ratio) { volatile u_g0_zme_hsp g0_zme_hsp; volatile hi_ulong addr_reg; if (layer == HAL_DISP_LAYER_GFX0) { addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_zme_hsp.u32)); g0_zme_hsp.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); g0_zme_hsp.bits.hratio = ratio; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_zme_hsp.u32); } else { HAL_PRINT("Error layer id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } /* * Name : fb_hal_layer_set_reg_up * Desc : Set layer(video or graphic) register update. */ hi_bool fb_hal_layer_set_reg_up(hal_disp_layer layer) { u_g0_upd g0_upd; volatile hi_ulong addr_reg; switch (layer) { case HAL_DISP_LAYER_GFX0: case HAL_DISP_LAYER_GFX1: case HAL_DISP_LAYER_GFX3: { addr_reg = fb_vou_get_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->g0_upd.u32)); g0_upd.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); /* graphic layer register update */ g0_upd.bits.regup = 0x1; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, g0_upd.u32); break; } default: { HAL_PRINT("Error layer id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } } return HI_TRUE; } /* set layer addr */ hi_bool hal_graphic_set_gfx_addr(hal_disp_layer layer, hi_u64 laddr) { volatile hi_ulong gfx_addr_h; volatile hi_ulong gfx_addr_l; if ((layer == HAL_DISP_LAYER_GFX0) || (layer == HAL_DISP_LAYER_GFX1) || (layer == HAL_DISP_LAYER_GFX3)) { /* Write low address to register. */ gfx_addr_l = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_addr_l)); fb_hal_write_reg((hi_u32 *)(uintptr_t)gfx_addr_l, GetLowAddr(laddr)); /* Write high address to register. */ gfx_addr_h = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_addr_h)); fb_hal_write_reg((hi_u32 *)(uintptr_t)gfx_addr_h, GetHighAddr(laddr)); } else { HAL_PRINT("Error layer id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } /* * Name : hal_graphic_get_gfx_addr * Desc : get layer addr. */ hi_bool hal_graphic_get_gfx_addr(hal_disp_layer layer, hi_u64 *gfx_addr) { volatile hi_ulong addr_reg; hi_u64 addr_h = 0x0; hi_u32 addr_l = 0x0; if ((layer == HAL_DISP_LAYER_GFX0) || (layer == HAL_DISP_LAYER_GFX1) || (layer == HAL_DISP_LAYER_GFX3)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_addr_l)); addr_l = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_addr_h)); addr_h = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); } else { HAL_PRINT("Error layer id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } *gfx_addr = addr_l + (addr_h << 32); /* 32 max address */ return HI_TRUE; } /* layer stride */ hi_bool hal_graphic_set_gfx_stride(hal_disp_layer layer, hi_u16 pitch) { volatile u_gfx_stride gfx_stride; volatile hi_ulong addr_reg; if ((layer == HAL_DISP_LAYER_GFX0) || (layer == HAL_DISP_LAYER_GFX1) || (layer == HAL_DISP_LAYER_GFX3)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_stride.u32)); gfx_stride.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_stride.bits.surface_stride = pitch; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, gfx_stride.u32); } else { HAL_PRINT("Error layer id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } /* get layer stride */ hi_bool hal_graphic_get_gfx_stride(hal_disp_layer layer, hi_u32 *gfx_stride) { volatile hi_ulong addr_reg; if ((layer == HAL_DISP_LAYER_GFX0) || (layer == HAL_DISP_LAYER_GFX1) || (layer == HAL_DISP_LAYER_GFX3)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_stride.u32)); } else { HAL_PRINT("Error layer id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } *gfx_stride = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); return HI_TRUE; } /* layer bit ext. */ hi_bool hal_graphic_set_gfx_ext(hal_disp_layer layer, hal_gfx_bitextend mode) { u_gfx_out_ctrl gfx_out_ctrl; volatile hi_ulong addr_reg; if ((layer == HAL_DISP_LAYER_GFX0) || (layer == HAL_DISP_LAYER_GFX1) || (layer == HAL_DISP_LAYER_GFX3)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_out_ctrl.u32)); gfx_out_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_out_ctrl.bits.bitext = mode; fb_hal_write_reg ((hi_u32 *)(uintptr_t)addr_reg, gfx_out_ctrl.u32); } else { HAL_PRINT("Error layer id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool hal_graphic_set_gfx_pre_mult(hal_disp_layer layer, hi_u32 enable) { u_gfx_out_ctrl gfx_out_ctrl; volatile hi_ulong addr_reg; if ((layer == HAL_DISP_LAYER_GFX0) || (layer == HAL_DISP_LAYER_GFX1) || (layer == HAL_DISP_LAYER_GFX3)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_out_ctrl.u32)); gfx_out_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_out_ctrl.bits.premulti_en = enable; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, gfx_out_ctrl.u32); } else { HAL_PRINT("Error layer id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool hal_graphic_get_gfx_premult(hal_disp_layer layer, hi_u32 *enable) { u_gfx_out_ctrl gfx_out_ctrl; volatile hi_ulong addr_reg; if ((layer == HAL_DISP_LAYER_GFX0) || (layer == HAL_DISP_LAYER_GFX1) || (layer == HAL_DISP_LAYER_GFX3)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_out_ctrl.u32)); gfx_out_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); *enable = gfx_out_ctrl.bits.premulti_en; } else { HAL_PRINT("Error layer id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool hal_graphic_set_gfx_palpha(hal_disp_layer layer, hi_u32 alpha_en, hi_u32 arange, hi_u8 alpha0, hi_u8 alpha1) { u_gfx_out_ctrl gfx_out_ctrl; u_gfx_1555_alpha gfx_1555_alpha; volatile hi_ulong addr_reg; hi_unused(arange); if ((layer == HAL_DISP_LAYER_GFX0) || (layer == HAL_DISP_LAYER_GFX1) || (layer == HAL_DISP_LAYER_GFX3)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_out_ctrl.u32)); gfx_out_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_out_ctrl.bits.palpha_en = alpha_en; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, gfx_out_ctrl.u32); if (alpha_en == HI_TRUE) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_1555_alpha.u32)); gfx_1555_alpha.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_1555_alpha.bits.alpha_1 = alpha1; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, gfx_1555_alpha.u32); addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_1555_alpha.u32)); gfx_1555_alpha.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_1555_alpha.bits.alpha_0 = alpha0; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, gfx_1555_alpha.u32); } else { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_1555_alpha.u32)); gfx_1555_alpha.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_1555_alpha.bits.alpha_1 = 0xff; /* 0xff alpha_1 flag */ fb_hal_write_reg ((hi_u32 *)(uintptr_t)addr_reg, gfx_1555_alpha.u32); addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_1555_alpha.u32)); gfx_1555_alpha.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_1555_alpha.bits.alpha_0 = 0xff; /* 0xff alpha_0 flag */ fb_hal_write_reg ((hi_u32 *)(uintptr_t)addr_reg, gfx_1555_alpha.u32); } } else { HAL_PRINT("Error layer id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } /* * Name : hal_graphic_set_gfx_palphaRange * Desc : alpha range setting */ hi_bool hal_graphic_set_gfx_palpha_range(hal_disp_layer layer, hi_u32 arange) { u_gfx_out_ctrl gfx_out_ctrl; volatile hi_ulong addr_reg; switch (layer) { case HAL_DISP_LAYER_GFX0: case HAL_DISP_LAYER_GFX1: case HAL_DISP_LAYER_GFX3: addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_out_ctrl.u32)); gfx_out_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_out_ctrl.bits.palpha_range = arange; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, gfx_out_ctrl.u32); break; default: HAL_PRINT("Error layer id found in %s: L%d\n", __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool hal_graphic_set_gfx_key_en(hal_disp_layer layer, hi_u32 key_enable) { u_gfx_out_ctrl gfx_out_ctrl; volatile hi_ulong addr_reg; if ((layer == HAL_DISP_LAYER_GFX0) || (layer == HAL_DISP_LAYER_GFX1) || (layer == HAL_DISP_LAYER_GFX3)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_out_ctrl.u32)); gfx_out_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_out_ctrl.bits.key_en = key_enable; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, gfx_out_ctrl.u32); } else { HAL_PRINT("Error layer id %d not support colorkey in %s: L%d\n", (hi_s32)layer, __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool hal_graphic_set_gfx_key_mode(hal_disp_layer layer, hi_u32 key_out) { u_gfx_out_ctrl gfx_out_ctrl; volatile hi_ulong addr_reg; if ((layer == HAL_DISP_LAYER_GFX0) || (layer == HAL_DISP_LAYER_GFX1) || (layer == HAL_DISP_LAYER_GFX3)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_out_ctrl.u32)); gfx_out_ctrl.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_out_ctrl.bits.key_mode = key_out; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, gfx_out_ctrl.u32); } else { HAL_PRINT("Error layer id %d not support colorkey mode in %s: L%d\n", (hi_s32)layer, __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool hal_graphic_set_color_key_value(hal_disp_layer layer, hal_gfx_key_max key_max, hal_gfx_key_min key_min) { u_gfx_ckey_max gfx_ckey_max; u_gfx_ckey_min gfx_ckey_min; volatile hi_ulong addr_reg; if ((layer == HAL_DISP_LAYER_GFX0) || (layer == HAL_DISP_LAYER_GFX1) || (layer == HAL_DISP_LAYER_GFX3)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_ckey_max.u32)); gfx_ckey_max.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_ckey_max.bits.key_r_max = key_max.key_max_r; gfx_ckey_max.bits.key_g_max = key_max.key_max_g; gfx_ckey_max.bits.key_b_max = key_max.key_max_b; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, gfx_ckey_max.u32); addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_ckey_min.u32)); gfx_ckey_min.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_ckey_min.bits.key_r_min = key_min.key_min_r; gfx_ckey_min.bits.key_g_min = key_min.key_min_g; gfx_ckey_min.bits.key_b_min = key_min.key_min_b; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, gfx_ckey_min.u32); } else { HAL_PRINT("Error layer id %d not support colorkey in %s: L%d\n", (hi_s32)layer, __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool hal_graphic_set_color_key_mask(hal_disp_layer layer, hal_gfx_mask msk) { u_gfx_ckey_mask gfx_ckey_mask; volatile hi_ulong addr_reg; if ((layer == HAL_DISP_LAYER_GFX0) || (layer == HAL_DISP_LAYER_GFX1) || (layer == HAL_DISP_LAYER_GFX3)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_ckey_mask.u32)); gfx_ckey_mask.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_ckey_mask.bits.key_r_msk = msk.mask_r; gfx_ckey_mask.bits.key_g_msk = msk.mask_g; gfx_ckey_mask.bits.key_b_msk = msk.mask_b; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, gfx_ckey_mask.u32); } else { HAL_PRINT("Error layer id %d not support colorkey mask in %s: L%d\n", (hi_s32)layer, __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } /* for gfx decompress */ hi_bool hal_graphic_set_gfx_dcmp_enable(hal_disp_layer layer, hi_u32 enable) { volatile u_gfx_src_info gfx_src_info; volatile hi_ulong addr_reg; if ((layer == HAL_DISP_LAYER_GFX0) || (layer == HAL_DISP_LAYER_GFX1) || (layer == HAL_DISP_LAYER_GFX3)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_src_info.u32)); gfx_src_info.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); gfx_src_info.bits.dcmp_en = enable; fb_hal_write_reg((hi_u32 *)(uintptr_t)addr_reg, gfx_src_info.u32); } else { HAL_PRINT("Error layer id %d not support dcmp in %s: L%d\n", (hi_s32)layer, __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } hi_bool hal_graphic_get_gfx_dcmp_enable_state(hal_disp_layer layer, hi_bool *enable) { volatile u_gfx_src_info gfx_src_info; volatile hi_ulong addr_reg; if ((layer == HAL_DISP_LAYER_GFX0) || (layer == HAL_DISP_LAYER_GFX1)) { addr_reg = fb_vou_get_gfx_abs_addr(layer, (hi_ulong)(uintptr_t)&(g_hifb_reg->gfx_src_info.u32)); gfx_src_info.u32 = fb_hal_read_reg((hi_u32 *)(uintptr_t)addr_reg); *enable = gfx_src_info.bits.dcmp_en; } else { HAL_PRINT("Error layer id %d not support dcmp in %s: L%d\n", (hi_s32)layer, __FUNCTION__, __LINE__); return HI_FALSE; } return HI_TRUE; } #ifdef MDDRDETECT hi_bool hal_mddrc_init_mddr_detect(hi_void) { volatile hi_u32 addr_reg; addr_reg = (hi_u32) & (g_mddrc_reg->clk_cfg); fb_hal_write_reg((hi_u32 *)addr_reg, 0x3); /* 0x3 address */ return HI_TRUE; } hi_void hal_mddrc_get_status(hi_u32 *status) { volatile hi_u32 addr_reg; if (status == NULL) { HAL_PRINT("Input args is NULL\n"); return; } addr_reg = (hi_u32)(hi_ulong)&(g_mddrc_reg->awaddr_srvlnc_status); *status = fb_hal_read_reg((hi_u32 *)addr_reg); return; } hi_void hal_mddrc_clear_status(hi_u32 status) { volatile hi_u32 addr_reg; addr_reg = (hi_u32)&(g_mddrc_reg->awaddr_srvlnc_status); fb_hal_write_reg((hi_u32 *)addr_reg, status); } #endif hi_void hal_para_set_para_addr_vhd_chn06(hi_u64 para_addr_vhd_chn06) { volatile hi_u64 addr_vhd_chn06; addr_vhd_chn06 = para_addr_vhd_chn06; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->para_haddr_vhd_chn06), GetHighAddr(addr_vhd_chn06)); fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->para_addr_vhd_chn06), GetLowAddr(addr_vhd_chn06)); return; } hi_void hal_para_set_para_up_vhd_chn(hi_u32 chn_num) { u_para_up_vhd para_up_vhd; para_up_vhd.u32 = (1 << chn_num); fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->para_up_vhd.u32), para_up_vhd.u32); return; } hi_void hal_g0_zme_set_ck_gt_en(hi_u32 ck_gt_en) { u_g0_zme_hinfo g0_zme_hinfo; g0_zme_hinfo.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hinfo.u32)); g0_zme_hinfo.bits.ck_gt_en = ck_gt_en; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hinfo.u32), g0_zme_hinfo.u32); return; } hi_void hal_g0_zme_set_out_width(hi_u32 out_width) { u_g0_zme_hinfo g0_zme_hinfo; g0_zme_hinfo.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hinfo.u32)); g0_zme_hinfo.bits.out_width = out_width - 1; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hinfo.u32), g0_zme_hinfo.u32); return; } hi_void hal_g0_zme_set_hfir_en(hi_u32 hfir_en) { u_g0_zme_hsp g0_zme_hsp; g0_zme_hsp.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hsp.u32)); g0_zme_hsp.bits.hfir_en = hfir_en; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hsp.u32), g0_zme_hsp.u32); return; } hi_void hal_g0_zme_set_ahfir_mid_en(hi_u32 ahfir_mid_en) { u_g0_zme_hsp g0_zme_hsp; g0_zme_hsp.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hsp.u32)); g0_zme_hsp.bits.ahfir_mid_en = ahfir_mid_en; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hsp.u32), g0_zme_hsp.u32); return; } hi_void hal_g0_zme_set_lhfir_mid_en(hi_u32 lhfir_mid_en) { u_g0_zme_hsp g0_zme_hsp; g0_zme_hsp.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hsp.u32)); g0_zme_hsp.bits.lhfir_mid_en = lhfir_mid_en; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hsp.u32), g0_zme_hsp.u32); return; } hi_void hal_g0_zme_set_chfir_mid_en(hi_u32 chfir_mid_en) { u_g0_zme_hsp g0_zme_hsp; g0_zme_hsp.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hsp.u32)); g0_zme_hsp.bits.chfir_mid_en = chfir_mid_en; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hsp.u32), g0_zme_hsp.u32); return; } hi_void hal_g0_zme_set_lhfir_mode(hi_u32 lhfir_mode) { u_g0_zme_hsp g0_zme_hsp; g0_zme_hsp.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hsp.u32)); g0_zme_hsp.bits.lhfir_mode = lhfir_mode; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hsp.u32), g0_zme_hsp.u32); return; } hi_void hal_g0_zme_set_ahfir_mode(hi_u32 ahfir_mode) { u_g0_zme_hsp g0_zme_hsp; g0_zme_hsp.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hsp.u32)); g0_zme_hsp.bits.ahfir_mode = ahfir_mode; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hsp.u32), g0_zme_hsp.u32); return; } hi_void hal_g0_zme_set_hfir_order(hi_u32 hfir_order) { u_g0_zme_hsp g0_zme_hsp; g0_zme_hsp.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hsp.u32)); g0_zme_hsp.bits.hfir_order = hfir_order; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hsp.u32), g0_zme_hsp.u32); return; } hi_void hal_g0_zme_set_hratio(hi_u32 hratio) { u_g0_zme_hsp g0_zme_hsp; g0_zme_hsp.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hsp.u32)); g0_zme_hsp.bits.hratio = hratio; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hsp.u32), g0_zme_hsp.u32); return; } hi_void hal_g0_zme_set_lhfir_offset(hi_u32 lhfir_offset) { u_g0_zme_hloffset g0_zme_hloffset; g0_zme_hloffset.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hloffset.u32)); g0_zme_hloffset.bits.lhfir_offset = lhfir_offset; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hloffset.u32), g0_zme_hloffset.u32); return; } hi_void hal_g0_zme_set_chfir_offset(hi_u32 chfir_offset) { u_g0_zme_hcoffset g0_zme_hcoffset; g0_zme_hcoffset.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hcoffset.u32)); g0_zme_hcoffset.bits.chfir_offset = chfir_offset; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_hcoffset.u32), g0_zme_hcoffset.u32); return; } hi_void hal_g0_zme_set_out_pro(hi_u32 out_pro) { u_g0_zme_vinfo g0_zme_vinfo; g0_zme_vinfo.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vinfo.u32)); g0_zme_vinfo.bits.out_pro = out_pro; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vinfo.u32), g0_zme_vinfo.u32); return; } hi_void hal_fdr_gfx_set_dcmp_en(hi_u32 layer, hi_u32 dcmp_en) { u_gfx_src_info gfx_src_info; if (layer >= GFX_MAX) { HI_TRACE(HI_DBG_ERR, HI_ID_FB, "Error, %s(), %d Select Wrong Layer ID\n", __FUNCTION__, __LINE__); } gfx_src_info.u32 = fb_hal_read_reg((hi_u32 *)((uintptr_t)(&(g_hifb_reg->gfx_src_info.u32)) + layer * FDR_GFX_OFFSET)); gfx_src_info.bits.dcmp_en = dcmp_en; fb_hal_write_reg ((hi_u32 *)((uintptr_t)(&(g_hifb_reg->gfx_src_info.u32)) + layer * FDR_GFX_OFFSET), gfx_src_info.u32); return; } hi_void hal_g0_zme_set_out_height(hi_u32 out_height) { u_g0_zme_vinfo g0_zme_vinfo; g0_zme_vinfo.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vinfo.u32)); g0_zme_vinfo.bits.out_height = out_height - 1; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vinfo.u32), g0_zme_vinfo.u32); return; } hi_void hal_g0_zme_set_vfir_en(hi_u32 vfir_en) { u_g0_zme_vsp g0_zme_vsp; g0_zme_vsp.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vsp.u32)); g0_zme_vsp.bits.vfir_en = vfir_en; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vsp.u32), g0_zme_vsp.u32); return; } hi_void hal_g0_zme_set_avfir_mid_en(hi_u32 avfir_mid_en) { u_g0_zme_vsp g0_zme_vsp; g0_zme_vsp.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vsp.u32)); g0_zme_vsp.bits.avfir_mid_en = avfir_mid_en; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vsp.u32), g0_zme_vsp.u32); return; } hi_void hal_g0_zme_set_lvfir_mid_en(hi_u32 lvfir_mid_en) { u_g0_zme_vsp g0_zme_vsp; g0_zme_vsp.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vsp.u32)); g0_zme_vsp.bits.lvfir_mid_en = lvfir_mid_en; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vsp.u32), g0_zme_vsp.u32); return; } hi_void hal_g0_zme_set_cvfir_mid_en(hi_u32 cvfir_mid_en) { u_g0_zme_vsp g0_zme_vsp; g0_zme_vsp.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vsp.u32)); g0_zme_vsp.bits.cvfir_mid_en = cvfir_mid_en; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vsp.u32), g0_zme_vsp.u32); return; } hi_void hal_g0_zme_set_lvfir_mode(hi_u32 lvfir_mode) { u_g0_zme_vsp g0_zme_vsp; g0_zme_vsp.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vsp.u32)); g0_zme_vsp.bits.lvfir_mode = lvfir_mode; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vsp.u32), g0_zme_vsp.u32); return; } hi_void hal_g0_zme_set_vafir_mode(hi_u32 vafir_mode) { u_g0_zme_vsp g0_zme_vsp; g0_zme_vsp.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vsp.u32)); g0_zme_vsp.bits.vafir_mode = vafir_mode; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vsp.u32), g0_zme_vsp.u32); return; } hi_void hal_g0_zme_set_vratio(hi_u32 vratio) { u_g0_zme_vsp g0_zme_vsp; g0_zme_vsp.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vsp.u32)); g0_zme_vsp.bits.vratio = vratio; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_vsp.u32), g0_zme_vsp.u32); return; } hi_void hal_g0_zme_set_vtp_offset(hi_u32 vtp_offset) { u_g0_zme_voffset g0_zme_voffset; g0_zme_voffset.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_voffset.u32)); g0_zme_voffset.bits.vtp_offset = vtp_offset; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_voffset.u32), g0_zme_voffset.u32); return; } hi_void hal_g0_zme_set_vbtm_offset(hi_u32 vbtm_offset) { u_g0_zme_voffset g0_zme_voffset; g0_zme_voffset.u32 = fb_hal_read_reg((hi_u32 *)&(g_hifb_reg->g0_zme_voffset.u32)); g0_zme_voffset.bits.vbtm_offset = vbtm_offset; fb_hal_write_reg((hi_u32 *)&(g_hifb_reg->g0_zme_voffset.u32), g0_zme_voffset.u32); return; } hi_void hifb_hal_soft_int_en(hi_bool soft_int_en) { #ifdef CONFIG_HIFB_SOFT_IRQ_SUPPORT u_sys_reg soft_int; if (g_sys_reg != HI_NULL) { soft_int.u32 = fb_hal_read_reg((hi_u32 *)&(g_sys_reg->soft_int.u32)); soft_int.bits.software_int = (soft_int_en == HI_TRUE) ? 1 : 0; fb_hal_write_reg((hi_u32 *)&(g_sys_reg->soft_int.u32), soft_int.u32); } #endif return; }
35.420865
117
0.694703
8fd8520e386ed305922cc342b2d7586588bb5216
698
asm
Assembly
oeis/020/A020968.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
11
2021-08-22T19:44:55.000Z
2022-03-20T16:47:57.000Z
oeis/020/A020968.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
9
2021-08-29T13:15:54.000Z
2022-03-09T19:52:31.000Z
oeis/020/A020968.asm
neoneye/loda-programs
84790877f8e6c2e821b183d2e334d612045d29c0
[ "Apache-2.0" ]
3
2021-08-22T20:56:47.000Z
2021-09-29T06:26:12.000Z
; A020968: Expansion of 1/((1-7*x)*(1-8*x)*(1-11*x)). ; Submitted by Jamie Morken(s2) ; 1,26,455,6700,89661,1130766,13712035,161844800,1874156921,21406992706,242089527615,2717862993300,30349359729781,337562780465846,3743627395703195,41428143398876200,457728746687336241,5051402198472270186,55698140476085454775,613752674475249237500,6759944245400513104301,74429263854651899365726,819284829464189517758355,9016663909357573774141200,99219740866176604712361961,1091709993502508661375352466,12011162067804460999198149935,132141665572426360318013971300,1453709843895844822852789237221 add $0,1 mov $3,1 lpb $0 sub $0,1 add $2,$3 add $1,$2 mul $1,8 mul $2,11 mul $3,7 lpe mov $0,$1 div $0,8
41.058824
493
0.82235
a07c2a271e4f4175ae83249a7ceb1c8f1780830e
2,792
asm
Assembly
src/stage2/stage2.asm
devcfei/bootstrap-x86
c16824b76df59bc9305cfee10b07baa6e2c41dd7
[ "Unlicense" ]
null
null
null
src/stage2/stage2.asm
devcfei/bootstrap-x86
c16824b76df59bc9305cfee10b07baa6e2c41dd7
[ "Unlicense" ]
null
null
null
src/stage2/stage2.asm
devcfei/bootstrap-x86
c16824b76df59bc9305cfee10b07baa6e2c41dd7
[ "Unlicense" ]
null
null
null
%define org_start 7c00h boot: org 0x7C00 mov ax, cs mov ds, ax mov es, ax ;mov ax, 07E0h ; 07E0h = (07C00h+200h)/10h, beginning of stack segment. mov ax, 0800h ; 0800h = (07E00h+200h)/10h, beginning of stack segment. mov ss, ax mov sp, 2000h ; 8k of stack space. call screenClean push 0000h call cursorMove add sp, 2 push msg call printString add sp, 2 call sectorRead ;call sectorWrite jmp stage2 jmp $ screenClean: push bp mov bp, sp pusha mov ah, 07h ; tells BIOS to scroll down window mov al, 00h ; clear entire window mov bh, 07h ; white on black mov cx, 00h ; specifies top left of screen as (0,0) mov dh, 18h ; 18h = 24 rows of chars mov dl, 4fh ; 4fh = 79 cols of chars int 10h ; calls video interrupt popa mov sp, bp pop bp ret cursorMove: push bp mov bp, sp pusha mov dx, [bp+4] ; get the argument from the stack. |bp| = 2, |arg| = 2 mov ah, 02h ; set cursor position mov bh, 00h ; page 0 - doesn't matter, we're not using double-buffering int 10h popa mov sp, bp pop bp ret printString: push bp mov bp, sp pusha mov si, [bp+4] ; grab the pointer to the data mov bh, 00h ; page number, 0 again mov bl, 00h ; foreground color, irrelevant - in text mode mov ah, 0Eh ; print character to TTY .char: mov al, [si] ; get the current char from our pointer position add si, 1 ; keep incrementing si until we see a null char or al, 0 je .return ; end if the string is done int 10h ; print the character if we're not done jmp .char ; keep looping .return: popa mov sp, bp pop bp ret sectorRead: mov ax, 07c0h ; Set ES:BX to 07c0h:0200h mov es, ax mov bx, 200h mov al, 1 ; Sector count = 1 mov dl, 80h ; Hard disk 80h=C: 81h=D: mov dh, 0 ; Disk heads mov ch, 0 ; Disk cylinders mov cl, 2 ; Sector number mov ah, 2 ; Read int 13h ret sectorWrite: mov ax, 07c0h ; Set ES:BX to 07c0h:0200h mov es, ax mov bx, 200h mov al, 1 ; Sector count = 1 mov dl, 80h ; Hard disk 80h=C: 81h=D: mov dh, 0 ; Disk heads mov ch, 0 ; Disk cylinders mov cl, 3 ; Sector number mov ah, 3 ; Write int 13h ret msg: db "Booting...",13,0 msg_dot: db ".",13,0 fill: times 510-($-$$) db 0; dw 0xaa55 ; MBR signature ;================================================================= ; Stage 2 start from 07e00h ; Video RAM start 0x000b8000 ;================================================================= stage2: push 0100h call cursorMove add sp, 2 push msg2 call printString add sp, 2 push 0201h call cursorMove add sp, 2 vram: mov ax, 0b800h mov ds, ax mov di, 320 ; 160*2 the line 2 mov al, 'q' mov [di], al add di,1 mov ah, 0x4 mov [di], ah jmp $ msg2: db "Booting to Stage2...",13, 0 times ((0x400) - ($ - $$)) db 0x00
17.559748
74
0.61712
de8e0860e7ccb50f4eaf4fc2bcdfe9818af4556a
4,162
rs
Rust
cv-optimize/src/single_view_optimizer.rs
Muqito/cv
ccfea8d53b151c86956cd4c2099819aa41d8cecb
[ "MIT" ]
null
null
null
cv-optimize/src/single_view_optimizer.rs
Muqito/cv
ccfea8d53b151c86956cd4c2099819aa41d8cecb
[ "MIT" ]
null
null
null
cv-optimize/src/single_view_optimizer.rs
Muqito/cv
ccfea8d53b151c86956cd4c2099819aa41d8cecb
[ "MIT" ]
null
null
null
use crate::AdaMaxSo3Tangent; use cv_core::{FeatureWorldMatch, Pose, Projective, Se3TangentSpace, WorldToCamera}; use cv_geom::epipolar; use float_ord::FloatOrd; use itertools::izip; fn landmark_delta(pose: WorldToCamera, landmark: FeatureWorldMatch) -> Option<Se3TangentSpace> { let FeatureWorldMatch(bearing, world_point) = landmark; let camera_point = pose.transform(world_point); Some(epipolar::world_pose_gradient( camera_point.point()?.coords, bearing, )) } pub fn single_view_simple_optimize_l1( original_pose: WorldToCamera, translation_trust_region: f64, rotation_trust_region: f64, iterations: usize, landmarks: &[FeatureWorldMatch], ) -> WorldToCamera { if landmarks.is_empty() { return original_pose; } let mut optimizer = AdaMaxSo3Tangent::new( original_pose.isometry(), translation_trust_region, rotation_trust_region, 1.0, ); let inv_landmark_len = (landmarks.len() as f64).recip(); let mut translations = vec![0.0; landmarks.len()]; let mut rotations = vec![0.0; landmarks.len()]; for iteration in 0..iterations { let mut l1 = Se3TangentSpace::identity(); for (t, r, &landmark) in izip!( translations.iter_mut(), rotations.iter_mut(), landmarks.iter() ) { if let Some(tangent) = landmark_delta(WorldToCamera(optimizer.pose()), landmark) { *t = tangent.translation.norm(); *r = tangent.rotation.norm(); l1 += tangent.l1(); } else { *t = 0.0; *r = 0.0; } } translations.sort_unstable_by_key(|&f| FloatOrd(f)); rotations.sort_unstable_by_key(|&f| FloatOrd(f)); let translation_scale = translations[translations.len() / 2] * inv_landmark_len; let rotation_scale = rotations[rotations.len() / 2] * inv_landmark_len; let tangent = l1 .scale(inv_landmark_len) .scale_translation(translation_scale) .scale_rotation(rotation_scale); if optimizer.step(tangent) { log::info!( "terminating single-view optimization due to stabilizing on iteration {}", iteration ); log::info!("tangent rotation magnitude: {}", tangent.rotation.norm()); break; } if iteration == iterations - 1 { log::info!("terminating single-view optimization due to reaching maximum iterations"); log::info!("tangent rotation magnitude: {}", tangent.rotation.norm()); break; } } WorldToCamera(optimizer.pose()) } pub fn single_view_simple_optimize_l2( original_pose: WorldToCamera, translation_trust_region: f64, rotation_trust_region: f64, iterations: usize, landmarks: &[FeatureWorldMatch], ) -> WorldToCamera { if landmarks.is_empty() { return original_pose; } let mut optimizer = AdaMaxSo3Tangent::new( original_pose.isometry(), translation_trust_region, rotation_trust_region, 1.0, ); let inv_landmark_len = (landmarks.len() as f64).recip(); for iteration in 0..iterations { // Compute gradient for this sample. let l2 = landmarks .iter() .filter_map(|&landmark| landmark_delta(WorldToCamera(optimizer.pose()), landmark)) .sum::<Se3TangentSpace>(); let tangent = l2.scale(inv_landmark_len); if optimizer.step(tangent) { log::info!( "terminating single-view optimization due to stabilizing on iteration {}", iteration ); log::info!("tangent rotation magnitude: {}", tangent.rotation.norm()); break; } if iteration == iterations - 1 { log::info!("terminating single-view optimization due to reaching maximum iterations"); log::info!("tangent rotation magnitude: {}", tangent.rotation.norm()); break; } } WorldToCamera(optimizer.pose()) }
33.837398
98
0.605718
b88d548dd1f30ece53442d171b017056eb9708a3
4,941
html
HTML
app/templates/asistencias/registrar_asistencias.html
originaltebas/chmembers
983578ec8cb6d1da76e98b1467d996d6fac752ee
[ "MIT" ]
null
null
null
app/templates/asistencias/registrar_asistencias.html
originaltebas/chmembers
983578ec8cb6d1da76e98b1467d996d6fac752ee
[ "MIT" ]
2
2021-09-08T01:19:10.000Z
2022-03-11T23:59:40.000Z
app/templates/asistencias/registrar_asistencias.html
originaltebas/chmembers
983578ec8cb6d1da76e98b1467d996d6fac752ee
[ "MIT" ]
1
2019-04-09T10:42:20.000Z
2019-04-09T10:42:20.000Z
<!-- app/templates/asistencias/consultas_asistencias.html --> {% if current_user.is_authenticated %} {# En general a todo menos a Seguimiento y Ausencias pueden acceder Editores y Admin #} {% if current_user.get_urole() >= 1 %} {% set nombre = "Asitencia" %} {% set nombres = "Asistencias" %} <!-- Begin Page Content --> <div class="container-fluid"> <!-- Page Heading --> <h1 class="h3 my-3 alert alert-primary"> {{nombres}} </h1> {% with messages = get_flashed_messages(with_categories=true) %} <!-- Categories: success (green), info (blue), warning (yellow), danger (red) --> {% if messages %} {% for category, message in messages %} <div class="alert alert-{{ category }} alert-dismissible" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button> <!-- <strong>Title</strong> --> {{ message }} </div> {% endfor %} {% endif %} {% endwith %} <div class="card shadow mb-4"> <div class="card-body"> <h5 class="card-title mb-5"> Para registrar los miembros que asistieron a una reuni&oacute;n, simplemente seleccionalos de la tabla de m&aacute;s abajo. Cuando tengas todos seleccionados pincha en el boton de guardar. Si la reuni&oacute;n ya ten&iacute;a miembros registrados estos aparecer&aacute;n seleccionados. </h5> <label for="nombre_reunion">Datos de la Reuni&oacute;n</label> <div class="input-group mb-3"> <div class="input-group-prepend"> <span class="input-group-text" id="label_nombre_reunion">Nombre</span> </div> <input type="text" class="form-control mr-1" id="nombre_reunion" value="{{reunion.nombre_reunion}}" aria-describedby="label_nombre_reunion" readonly> <div class="input-group-prepend"> <span class="input-group-text" id="label_nombre_reunion">Fecha</span> </div> <input type="text" class="form-control mr-1" id="nombre_reunion" value="{{reunion.fecha_reunion}}" aria-describedby="label_nombre_reunion" readonly> <div class="input-group-prepend"> <span class="input-group-text" id="label_nombre_reunion">Comentarios</span> </div> <input type="text" class="form-control" id="nombre_reunion" value="{{reunion.comentarios_reunion}}" aria-describedby="label_nombre_reunion" readonly> </div> <div class="table-responsive"> <table id="tblistarAsistencias" class="table table-bordered table-striped" id="dataTable" width="100%" cellspacing="0"> <thead class="thead-dark"> <tr class="text-center"> <th scope="col">Id</th> <th scope="col">Nombres y Apellidos</th> <th scope="col">Email</th> <th scope="col">Tel&eacute;fono</th> </tr> </thead> <tbody> {% for miembro in miembros %} {% if miembro.seleccionado != None %} {% set sel = "selected" %} {% endif %} <tr class="text-center {{ sel }}"> <td scope="row"> {{ miembro.id }} </td> <td scope="row"> {{ miembro.fullname}} </td> <td scope="row"> {{ miembro.email }}</td> <td scope="row"> {{ miembro.telefono_movil }} </td> </tr> {% endfor %} </tbody> </table> </div> <div class="form-group row"> <div id="formerrors" class="col-12 text-danger"> </div> </div> <form id="frmRegistrarAsistencia" method="POST" role="form" action=""> {{ form.csrf_token }} {{ form.id_miembros }} <input type="hidden" name="id_reunion" id="id_reunion" value="{{ reunion.id }}"/> <div class="form-group row mt-5" id="cardBodyButtons"> <div class="col-3"></div> <input type="submit" class="btn btn-primary col-2 text-white font-weight-bold" id="btnRegistrarAsistencia" value="Guardar Datos"> <div class="col-2"></div> <a class="btn btn-danger col-2 text-white font-weight-bold" href='{{ url_for("asistencias.ver_asistencias") }}'>Cancelar</a> <div class="col-3"></div> </div> </div> </div> </div> {% endif %} {% endif %}
46.17757
133
0.51528
8abffab9bf2834ccba68b41dbe03df7577aebfc4
559
rs
Rust
src/lib.rs
dcao/babble
283057f7f832fc45fdeb7bd78740d2b66a1b1706
[ "MIT" ]
null
null
null
src/lib.rs
dcao/babble
283057f7f832fc45fdeb7bd78740d2b66a1b1706
[ "MIT" ]
2
2021-12-03T17:56:33.000Z
2021-12-14T23:30:07.000Z
src/lib.rs
dcao/babble
283057f7f832fc45fdeb7bd78740d2b66a1b1706
[ "MIT" ]
2
2021-10-16T22:04:14.000Z
2022-02-25T00:22:08.000Z
//! Library learning using [anti-unification] of e-graphs. //! //! [anti-unification]: https://en.wikipedia.org/wiki/Anti-unification_(computer_science) #![warn( clippy::all, clippy::pedantic, anonymous_parameters, elided_lifetimes_in_paths, missing_copy_implementations, missing_debug_implementations, trivial_casts, unreachable_pub, unused_lifetimes, missing_docs )] #![allow(clippy::non_ascii_literal)] pub mod ast_node; mod dfta; pub mod extract; pub mod learn; pub mod lift_lib; pub mod sexp; pub mod teachable;
21.5
89
0.735242
b0f4b00d9384878bbfdbc9e98d28d3d1adc972eb
2,366
sql
SQL
api/prisma/migrations/20210913110807_init/migration.sql
prasidh-agg/wavechat
74a9a91295ef3be63575f997a26ffb1168bf86f2
[ "MIT" ]
null
null
null
api/prisma/migrations/20210913110807_init/migration.sql
prasidh-agg/wavechat
74a9a91295ef3be63575f997a26ffb1168bf86f2
[ "MIT" ]
null
null
null
api/prisma/migrations/20210913110807_init/migration.sql
prasidh-agg/wavechat
74a9a91295ef3be63575f997a26ffb1168bf86f2
[ "MIT" ]
null
null
null
-- CreateEnum CREATE TYPE "UserRole" AS ENUM ('USER', 'ADMIN'); -- CreateTable CREATE TABLE "User" ( "id" TEXT NOT NULL, "pk" SERIAL NOT NULL, "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, "updatedAt" TIMESTAMP(3) NOT NULL, "email" TEXT NOT NULL, "username" TEXT NOT NULL, "displayName" TEXT NOT NULL, "password" TEXT NOT NULL, "role" "UserRole" NOT NULL DEFAULT E'USER', "avatarUrl" TEXT, "university" TEXT, "department" TEXT, "semester" INTEGER, PRIMARY KEY ("id") ); -- CreateTable CREATE TABLE "Session" ( "id" TEXT NOT NULL, "pk" SERIAL NOT NULL, "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, "updatedAt" TIMESTAMP(3) NOT NULL, "userId" TEXT NOT NULL, PRIMARY KEY ("id") ); -- CreateTable CREATE TABLE "Friendship" ( "id" TEXT NOT NULL, "pk" SERIAL NOT NULL, "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, "updatedAt" TIMESTAMP(3) NOT NULL, "firstUserId" TEXT NOT NULL, "secondUserId" TEXT NOT NULL, PRIMARY KEY ("id") ); -- CreateTable CREATE TABLE "FriendRequest" ( "id" TEXT NOT NULL, "pk" SERIAL NOT NULL, "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, "updatedAt" TIMESTAMP(3) NOT NULL, "fromUserId" TEXT NOT NULL, "toUserId" TEXT NOT NULL, PRIMARY KEY ("id") ); -- CreateIndex CREATE UNIQUE INDEX "User.pk_unique" ON "User"("pk"); -- CreateIndex CREATE UNIQUE INDEX "User.email_unique" ON "User"("email"); -- CreateIndex CREATE UNIQUE INDEX "User.username_unique" ON "User"("username"); -- CreateIndex CREATE UNIQUE INDEX "User.displayName_unique" ON "User"("displayName"); -- AddForeignKey ALTER TABLE "Session" ADD FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "Friendship" ADD FOREIGN KEY ("firstUserId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "Friendship" ADD FOREIGN KEY ("secondUserId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "FriendRequest" ADD FOREIGN KEY ("fromUserId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "FriendRequest" ADD FOREIGN KEY ("toUserId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE;
28.166667
119
0.691462
ddd66f9faf4d6565caaf42928ff8795e8bacaf5b
3,697
php
PHP
resources/views/admin/list_buku.blade.php
onolaksono/perpustakaan
b403a8092e92cbc946098c1a14710b4b2e635c36
[ "MIT" ]
null
null
null
resources/views/admin/list_buku.blade.php
onolaksono/perpustakaan
b403a8092e92cbc946098c1a14710b4b2e635c36
[ "MIT" ]
null
null
null
resources/views/admin/list_buku.blade.php
onolaksono/perpustakaan
b403a8092e92cbc946098c1a14710b4b2e635c36
[ "MIT" ]
null
null
null
@extends('layouts.app2') @section('content') <!-- Page wrapper --> <div class="page-wrapper" style="height:1200px;"> <!-- Bread crumb --> <div class="row page-titles"> <div class="col-md-5 align-self-center"> <h3 class="text-primary">Data Buku</h3> </div> <div class="col-md-7 align-self-center"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="javascript:void(0)">Home</a></li> <li class="breadcrumb-item active">Data Buku</li> </ol> </div> </div> <!-- End Bread crumb --> <!-- Container fluid --> <div class="container-fluid"> <!-- Start Page Content --> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-body"> <!-- <h4 class="card-title">Data Buku</h4> <h6 class="card-subtitle">List Buku</h6> --> <a href="{{ url('data_buku/tambah') }}"><button type="button" class="btn btn-primary m-b-10 m-l-5"><i class="fa fa-plus-circle"></i> Tambah Buku</button></a> <div class="table-responsive m-t-40"> <table id="myTable" class="table table-bordered table-striped"> <thead> <tr> <th>No</th> <th>Judul, Pengarang, Penerbit</th> <th>Tahun Terbit</th> <th>Jumlah Halaman</th> <th>Lokasi Penyimpanan</th> <th>Deskripsi</th> <th>Aksi</th> </tr> </thead> <tbody> <tr> <td style="text-align:center;">1</td> <td>System Architect<br> <b>Dwi Laksono</b><br> <i>Ono Legend</i> </td> <td style="text-align:center;">2018</td> <td style="text-align:center;">618</td> <td style="text-align:center;">Rak 1</td> <td>Tentang kehidupan</td> <td style="text-align:center;"><a href="#" title="Edit Data"><i class="fa fa-pencil"></i></a> | <a href="#" title="Hapus Data"><i class="fa fa-trash"></i></a></td> </tr> </tbody> </table> </div> </div> </div> </div> </div> <!-- End PAge Content --> </div> <!-- End Container fluid --> @endsection
56.015152
211
0.304842
bb1345b7984110596f7d50e8dd1e75c9fe760271
336
rb
Ruby
app/admin/article.rb
ranxiang/apollog2
ac57bdcc978d170db40407a551fda04c2868fe2a
[ "MIT" ]
null
null
null
app/admin/article.rb
ranxiang/apollog2
ac57bdcc978d170db40407a551fda04c2868fe2a
[ "MIT" ]
6
2020-02-28T17:51:44.000Z
2021-09-27T20:27:54.000Z
app/admin/article.rb
ranxiang/apollog2
ac57bdcc978d170db40407a551fda04c2868fe2a
[ "MIT" ]
null
null
null
ActiveAdmin.register Article do index do column :title column :body do |article| truncate(article.body) end column :published column :created_at column :updated_at actions end controller do def permitted_params params.permit(:article => [:title, :body, :published]) end end end
16.8
60
0.657738
e77c4337e7de6df2831b115b1038d8bd86e55833
343
js
JavaScript
src/core/mesh/Tw2MeshLineArea.js
ion9/ccpwgl
c31632d0fb7d9f0be19a5eb5452e5d5f74a914c5
[ "MIT" ]
72
2015-02-20T06:08:45.000Z
2022-01-28T13:47:18.000Z
src/core/mesh/Tw2MeshLineArea.js
ion9/ccpwgl
c31632d0fb7d9f0be19a5eb5452e5d5f74a914c5
[ "MIT" ]
120
2015-02-23T11:42:49.000Z
2021-10-10T06:38:20.000Z
src/core/mesh/Tw2MeshLineArea.js
ion9/ccpwgl
c31632d0fb7d9f0be19a5eb5452e5d5f74a914c5
[ "MIT" ]
44
2015-02-20T06:49:24.000Z
2022-02-08T19:11:12.000Z
import {Tw2GeometryLineBatch} from '../batch'; import {Tw2MeshArea} from './Tw2MeshArea'; /** * Tw2MeshLineArea * * @class */ export class Tw2MeshLineArea extends Tw2MeshArea { constructor() { super(); } } /** * Render Batch Constructor * @type {Tw2RenderBatch} */ Tw2MeshLineArea.batchType = Tw2GeometryLineBatch;
16.333333
49
0.673469
8136d9087acd29be49874561b0b3f530afaa5bce
4,670
rs
Rust
diesel/diesel/src/sqlite/connection/sqlite_value.rs
Bownairo/rhipster
a5682ca0793047494840484fbeb830851026916b
[ "MIT" ]
2
2016-09-16T22:21:54.000Z
2019-03-08T16:01:39.000Z
diesel/diesel/src/sqlite/connection/sqlite_value.rs
Bownairo/rhipster
a5682ca0793047494840484fbeb830851026916b
[ "MIT" ]
null
null
null
diesel/diesel/src/sqlite/connection/sqlite_value.rs
Bownairo/rhipster
a5682ca0793047494840484fbeb830851026916b
[ "MIT" ]
1
2022-03-09T09:34:31.000Z
2022-03-09T09:34:31.000Z
extern crate libsqlite3_sys as ffi; use std::marker::PhantomData; use std::ptr::NonNull; use std::{slice, str}; use crate::row::*; use crate::sqlite::{Sqlite, SqliteType}; use super::stmt::StatementUse; /// Raw sqlite value as received from the database /// /// Use existing `FromSql` implementations to convert this into /// rust values: #[allow(missing_debug_implementations, missing_copy_implementations)] pub struct SqliteValue<'a> { value: NonNull<ffi::sqlite3_value>, p: PhantomData<&'a ()>, } pub struct SqliteRow<'a: 'b, 'b: 'c, 'c> { stmt: &'c StatementUse<'a, 'b>, } impl<'a> SqliteValue<'a> { pub(crate) unsafe fn new(inner: *mut ffi::sqlite3_value) -> Option<Self> { NonNull::new(inner) .map(|value| SqliteValue { value, p: PhantomData, }) .and_then(|value| { // We check here that the actual value represented by the inner // `sqlite3_value` is not `NULL` (is sql meaning, not ptr meaning) if value.is_null() { None } else { Some(value) } }) } pub(crate) fn read_text(&self) -> &str { unsafe { let ptr = ffi::sqlite3_value_text(self.value.as_ptr()); let len = ffi::sqlite3_value_bytes(self.value.as_ptr()); let bytes = slice::from_raw_parts(ptr as *const u8, len as usize); // The string is guaranteed to be utf8 according to // https://www.sqlite.org/c3ref/value_blob.html str::from_utf8_unchecked(bytes) } } pub(crate) fn read_blob(&self) -> &[u8] { unsafe { let ptr = ffi::sqlite3_value_blob(self.value.as_ptr()); let len = ffi::sqlite3_value_bytes(self.value.as_ptr()); slice::from_raw_parts(ptr as *const u8, len as usize) } } pub(crate) fn read_integer(&self) -> i32 { unsafe { ffi::sqlite3_value_int(self.value.as_ptr()) as i32 } } pub(crate) fn read_long(&self) -> i64 { unsafe { ffi::sqlite3_value_int64(self.value.as_ptr()) as i64 } } pub(crate) fn read_double(&self) -> f64 { unsafe { ffi::sqlite3_value_double(self.value.as_ptr()) as f64 } } /// Get the type of the value as returned by sqlite pub fn value_type(&self) -> Option<SqliteType> { let tpe = unsafe { ffi::sqlite3_value_type(self.value.as_ptr()) }; match tpe { ffi::SQLITE_TEXT => Some(SqliteType::Text), ffi::SQLITE_INTEGER => Some(SqliteType::Long), ffi::SQLITE_FLOAT => Some(SqliteType::Double), ffi::SQLITE_BLOB => Some(SqliteType::Binary), ffi::SQLITE_NULL => None, _ => unreachable!("Sqlite docs saying this is not reachable"), } } pub(crate) fn is_null(&self) -> bool { self.value_type().is_none() } } impl<'a: 'b, 'b: 'c, 'c> SqliteRow<'a, 'b, 'c> { pub(crate) fn new(inner_statement: &'c StatementUse<'a, 'b>) -> Self { SqliteRow { stmt: inner_statement, } } } impl<'a: 'b, 'b: 'c, 'c> Row<'c, Sqlite> for SqliteRow<'a, 'b, 'c> { type Field = SqliteField<'a, 'b, 'c>; type InnerPartialRow = Self; fn field_count(&self) -> usize { self.stmt.column_count() as usize } fn get<I>(&self, idx: I) -> Option<Self::Field> where Self: RowIndex<I>, { let idx = self.idx(idx)?; Some(SqliteField { stmt: &self.stmt, col_idx: idx as i32, }) } fn partial_row(&self, range: std::ops::Range<usize>) -> PartialRow<Self::InnerPartialRow> { PartialRow::new(self, range) } } impl<'a: 'b, 'b: 'c, 'c> RowIndex<usize> for SqliteRow<'a, 'b, 'c> { fn idx(&self, idx: usize) -> Option<usize> { if idx < self.stmt.column_count() as usize { Some(idx) } else { None } } } impl<'a: 'b, 'b: 'c, 'c, 'd> RowIndex<&'d str> for SqliteRow<'a, 'b, 'c> { fn idx(&self, field_name: &'d str) -> Option<usize> { self.stmt.index_for_column_name(field_name) } } pub struct SqliteField<'a: 'b, 'b: 'c, 'c> { stmt: &'c StatementUse<'a, 'b>, col_idx: i32, } impl<'a: 'b, 'b: 'c, 'c> Field<'c, Sqlite> for SqliteField<'a, 'b, 'c> { fn field_name(&self) -> Option<&'c str> { self.stmt.field_name(self.col_idx) } fn is_null(&self) -> bool { self.value().is_none() } fn value(&self) -> Option<crate::backend::RawValue<'c, Sqlite>> { self.stmt.value(self.col_idx) } }
29.371069
95
0.554818
ddb7bd744bc35312fb1a352ac173c18345b8e5c9
170
php
PHP
src/AldrumoComServiceProvider.php
Aldrumo-Themes/aldrumo-com
37b16d6a2e4f76fd0ccda60c4e718edfaa194bff
[ "MIT" ]
null
null
null
src/AldrumoComServiceProvider.php
Aldrumo-Themes/aldrumo-com
37b16d6a2e4f76fd0ccda60c4e718edfaa194bff
[ "MIT" ]
null
null
null
src/AldrumoComServiceProvider.php
Aldrumo-Themes/aldrumo-com
37b16d6a2e4f76fd0ccda60c4e718edfaa194bff
[ "MIT" ]
null
null
null
<?php namespace AldrumoThemes\AldrumoCom; use Aldrumo\ThemeManager\Theme\ThemeServiceProvider; class AldrumoComServiceProvider extends ThemeServiceProvider { // }
15.454545
60
0.817647
b6feb054ca2f5d702733d0a8f2de44b3c348e957
20
rb
Ruby
test/okjson/t/err-naninf.rb
orhantoy/gson.rb
7e2fc18be18da8fede00fac8bbc91e2d1a9fcd03
[ "Apache-2.0" ]
3
2015-03-06T12:10:16.000Z
2019-07-04T04:44:50.000Z
test/okjson/t/err-naninf.rb
sferik/gson.rb
a976cef16afa2e460b6e3c82cce9a50ba467d133
[ "Apache-2.0" ]
2
2015-06-17T19:27:54.000Z
2018-02-26T19:31:18.000Z
test/okjson/t/err-naninf.rb
sferik/gson.rb
a976cef16afa2e460b6e3c82cce9a50ba467d133
[ "Apache-2.0" ]
4
2015-12-22T13:32:14.000Z
2022-01-28T17:40:46.000Z
[1.0/0,0.0/0,-1.0/0]
20
20
0.45
d0c50ccda69a0acff94331e9450a2e96f709c467
432
sql
SQL
flush.sql
bengineerdavis/cryptoware-pricing
13597ebe0afbbf175851e18912e395f757730f58
[ "MIT" ]
null
null
null
flush.sql
bengineerdavis/cryptoware-pricing
13597ebe0afbbf175851e18912e395f757730f58
[ "MIT" ]
null
null
null
flush.sql
bengineerdavis/cryptoware-pricing
13597ebe0afbbf175851e18912e395f757730f58
[ "MIT" ]
null
null
null
DROP TABLE IF EXISTS merchant CASCADE; DROP TABLE IF EXISTS ram_prod CASCADE; DROP TABLE IF EXISTS time CASCADE; DROP TABLE IF EXISTS region CASCADE; DROP TABLE IF EXISTS cpu_price CASCADE; DROP TABLE IF EXISTS crypto_data CASCADE; DROP TABLE IF EXISTS ram_price CASCADE; DROP TABLE IF EXISTS gpu_prod CASCADE; DROP TABLE IF EXISTS cpu_prod CASCADE; DROP TABLE IF EXISTS gpu_price CASCADE; DROP TABLE IF EXISTS crypto_rate CASCADE;
36
41
0.821759
165c124b75272b283bac456c1e1fa37727ffc57e
49
ts
TypeScript
src/helpers/SpecularLayer/index.ts
VoloshchenkoAl/custom-pointer
9c93f5561ef3992dd4ae8c8393c778492e3de681
[ "MIT" ]
15
2021-04-16T14:12:33.000Z
2022-03-10T06:33:15.000Z
src/helpers/SpecularLayer/index.ts
VoloshchenkoAl/custom-pointer
9c93f5561ef3992dd4ae8c8393c778492e3de681
[ "MIT" ]
null
null
null
src/helpers/SpecularLayer/index.ts
VoloshchenkoAl/custom-pointer
9c93f5561ef3992dd4ae8c8393c778492e3de681
[ "MIT" ]
2
2021-11-17T16:52:06.000Z
2022-02-20T16:43:02.000Z
export { SpecularLayer } from './SpecularLayer';
24.5
48
0.734694
eb2728391bf6d30e7ea618e98611e07c3ad44b47
253
sql
SQL
spesialist-felles/src/main/resources/db/migration/V10__rename_besvart_til_ferdigstilt.sql
navikt/helse-spesialist
e221266ef6c7edfd3335717925094aea11385c60
[ "MIT" ]
null
null
null
spesialist-felles/src/main/resources/db/migration/V10__rename_besvart_til_ferdigstilt.sql
navikt/helse-spesialist
e221266ef6c7edfd3335717925094aea11385c60
[ "MIT" ]
10
2021-05-06T06:26:33.000Z
2022-03-15T18:25:58.000Z
spesialist-felles/src/main/resources/db/migration/V10__rename_besvart_til_ferdigstilt.sql
navikt/helse-spesialist
e221266ef6c7edfd3335717925094aea11385c60
[ "MIT" ]
null
null
null
ALTER TABLE oppgave RENAME COLUMN besvart TO ferdigstilt; ALTER TABLE oppgave DROP COLUMN status; DROP TYPE oppgave_status; CREATE TYPE løsningstype_type AS ENUM('System', 'Saksbehandler'); ALTER TABLE oppgave ADD COLUMN løsningstype løsningstype_type;
42.166667
65
0.833992
b12f04ce4b5e992909991a3828dcde330ea6347f
1,062
swift
Swift
LabelSwapping/PrimoProgrammaSwift/main.swift
fede-da/SwiftFirstProjects
153b5e94183db8af50b4509b86947de85781cece
[ "MIT" ]
null
null
null
LabelSwapping/PrimoProgrammaSwift/main.swift
fede-da/SwiftFirstProjects
153b5e94183db8af50b4509b86947de85781cece
[ "MIT" ]
null
null
null
LabelSwapping/PrimoProgrammaSwift/main.swift
fede-da/SwiftFirstProjects
153b5e94183db8af50b4509b86947de85781cece
[ "MIT" ]
null
null
null
// // main.swift // PrimoProgrammaSwift // // Created by Federico D'Armini on 19/11/21. // //-----Vedi appunti----- import Foundation var source1 = StartPoint() var router1 = Router() var router2 = Router() var endPoints = [EndPoint(colore:"red"),EndPoint(colore:"orange"),EndPoint(colore:"yellow"),EndPoint(colore:"green"),EndPoint(colore:"blue"),EndPoint(colore:"indigo"),EndPoint(colore:"violet")] var ports1 = [router1,router1,router1,router1,router1,router1,router1] var ports2 = [router2,router2,router2,router2,router2,router2,router2] router2.setDest(lista: endPoints) router1.setDest(lista: ports2) source1.setDest(lista: ports1) let t = Task{ await source1.startStream() } //Starts packet generation func printStats(){ var rec = 0 for ep in endPoints { ep.printStats() rec += ep.getReceived() } Packet().printTotalSent() print("Checksum, received : \(rec) packets") } //Just print some stats sleep(6) //This time can be changed as we want Task{ source1.stopStream() t.cancel() } printStats()
23.6
193
0.694915
d19257750a11119b308a5b72ff74cf3e49f6728f
1,191
swift
Swift
ConfluxSDK/ConfluxSDK/Extension/SMP+Extension.swift
R0uter/swift-conflux-wallet-sdk
6d88a88057c5b6c57a2b1db747a446b58db1721c
[ "MIT" ]
null
null
null
ConfluxSDK/ConfluxSDK/Extension/SMP+Extension.swift
R0uter/swift-conflux-wallet-sdk
6d88a88057c5b6c57a2b1db747a446b58db1721c
[ "MIT" ]
null
null
null
ConfluxSDK/ConfluxSDK/Extension/SMP+Extension.swift
R0uter/swift-conflux-wallet-sdk
6d88a88057c5b6c57a2b1db747a446b58db1721c
[ "MIT" ]
null
null
null
// // SMP+Extension.swift // ConfluxSDK // // Created by 区块链 on 2020/2/19. // Copyright © 2020 com.blockchain.dappbirds. All rights reserved. // extension BInt { public func toInt() ->Int? { return asInt() } internal init?(str: String, radix: Int) { self.init(0) let bint16 = BInt(16) var exp = BInt(1) for c in str.reversed() { let int = Int(String(c), radix: radix) if int != nil { let value = BInt(int!) self = self + (value * exp) exp = exp * bint16 } else { return nil } } } } extension BInt { private enum CodingKeys: String, CodingKey { case bigInt } public init(from decoder: Decoder) throws { let container = try decoder.container(keyedBy: CodingKeys.self) let string = try container.decode(String.self, forKey: .bigInt) self = Drip(string)! } public func encode(to encoder: Encoder) throws { var container = encoder.container(keyedBy: CodingKeys.self) try container.encode(asString(radix: 10), forKey: .bigInt) } }
24.8125
71
0.548279
7a093faadd7e971423f4d1486baddbee93a362c8
1,257
rb
Ruby
.fastlane/beta-post-s3.rb
gemmakbarlow-secondary/ios-oss
dcd9218e45ec19a3318afac5a84e7861a034ffbb
[ "Apache-2.0" ]
8,505
2016-12-14T16:11:25.000Z
2022-03-31T12:01:03.000Z
.fastlane/beta-post-s3.rb
gemmakbarlow-secondary/ios-oss
dcd9218e45ec19a3318afac5a84e7861a034ffbb
[ "Apache-2.0" ]
1,059
2016-12-14T19:02:47.000Z
2022-03-25T21:36:58.000Z
.fastlane/beta-post-s3.rb
gemmakbarlow-secondary/ios-oss
dcd9218e45ec19a3318afac5a84e7861a034ffbb
[ "Apache-2.0" ]
1,414
2016-12-14T16:42:41.000Z
2022-03-08T08:30:12.000Z
#!/usr/bin/env ruby require 'json' require 'yaml' require 'plist' require 'fog-aws' # # Interfacing with the builds bucket on S3 # def fog @fog ||= Fog::Storage.new({ provider: 'AWS', aws_secret_access_key: ENV['AWS_SECRET_ACCESS_KEY'], aws_access_key_id: ENV['AWS_ACCESS_KEY_ID'] }) end def bucket_name 'ios-ksr-builds' end def bucket @bucket ||= fog.directories.new(key: bucket_name) end def current_builds @current_builds ||= YAML::load(bucket.files.get('builds.yaml').body) end # # Parsing app plist # def plist_path @plist_path ||= File.join('./../', 'Kickstarter-iOS', 'Info.plist') end def plist @plist ||= Plist::parse_xml(plist_path) end def plist_version plist["CFBundleShortVersionString"] end def plist_build plist["CFBundleVersion"].to_i end # # Library # def strip_commented_lines(str) str.split("\n").select {|line| line.strip[0] != '#'}.join("\n") end # # Script # file_name = '.RELEASE_NOTES.tmp' changelog = strip_commented_lines(File.read(file_name)).strip build = { 'build' => plist_build, 'changelog' => changelog, } bucket.files.create({ key: 'builds.yaml', body: (current_builds.select {|b| b[:build] != plist_build} + [build]).to_yaml, public: false }).save
16.539474
81
0.680191