|
1675 | 1675 | "description": "items_integer_bounded_1", |
1676 | 1676 | "schema": { |
1677 | 1677 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
1678 | | - "items": { |
1679 | | - "type": "number", |
1680 | | - "minimum": 0, |
1681 | | - "maximum": 100 |
1682 | | - } |
| 1678 | + "items": { "type": "number", "minimum": 0, "maximum": 100 } |
1683 | 1679 | }, |
1684 | 1680 | "instance": [ 10, 50, 99 ], |
1685 | 1681 | "valid": true, |
|
1743 | 1739 | "description": "items_integer_bounded_2", |
1744 | 1740 | "schema": { |
1745 | 1741 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
1746 | | - "items": { |
1747 | | - "type": "number", |
1748 | | - "minimum": 0, |
1749 | | - "maximum": 100 |
1750 | | - } |
| 1742 | + "items": { "type": "number", "minimum": 0, "maximum": 100 } |
1751 | 1743 | }, |
1752 | 1744 | "instance": [ 10, 200, 50 ], |
1753 | 1745 | "valid": false, |
|
1793 | 1785 | "description": "items_integer_bounded_3", |
1794 | 1786 | "schema": { |
1795 | 1787 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
1796 | | - "items": { |
1797 | | - "type": "number", |
1798 | | - "minimum": 0, |
1799 | | - "maximum": 100 |
1800 | | - } |
| 1788 | + "items": { "type": "number", "minimum": 0, "maximum": 100 } |
1801 | 1789 | }, |
1802 | 1790 | "instance": [ "foo" ], |
1803 | 1791 | "valid": false, |
|
1831 | 1819 | "description": "items_integer_bounded_4", |
1832 | 1820 | "schema": { |
1833 | 1821 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
1834 | | - "items": { |
1835 | | - "type": "number", |
1836 | | - "minimum": 0, |
1837 | | - "maximum": 100 |
1838 | | - } |
| 1822 | + "items": { "type": "number", "minimum": 0, "maximum": 100 } |
1839 | 1823 | }, |
1840 | 1824 | "instance": "not an array", |
1841 | 1825 | "valid": true, |
|
1846 | 1830 | "description": "items_integer_bounded_5", |
1847 | 1831 | "schema": { |
1848 | 1832 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
1849 | | - "items": { |
1850 | | - "type": "number", |
1851 | | - "minimum": 0, |
1852 | | - "maximum": 100 |
1853 | | - } |
| 1833 | + "items": { "type": "number", "minimum": 0, "maximum": 100 } |
1854 | 1834 | }, |
1855 | 1835 | "instance": [], |
1856 | 1836 | "valid": true, |
|
1861 | 1841 | "description": "items_integer_bounded_6", |
1862 | 1842 | "schema": { |
1863 | 1843 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
1864 | | - "items": { |
1865 | | - "type": "number", |
1866 | | - "minimum": 0, |
1867 | | - "maximum": 100 |
1868 | | - } |
| 1844 | + "items": { "type": "number", "minimum": 0, "maximum": 100 } |
1869 | 1845 | }, |
1870 | 1846 | "instance": [ 10.5, 99.9 ], |
1871 | 1847 | "valid": true, |
|
1920 | 1896 | "description": "items_integer_bounded_7_real_bounds", |
1921 | 1897 | "schema": { |
1922 | 1898 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
1923 | | - "items": { |
1924 | | - "type": "number", |
1925 | | - "minimum": 0.5, |
1926 | | - "maximum": 100 |
1927 | | - } |
| 1899 | + "items": { "type": "number", "minimum": 0.5, "maximum": 100 } |
1928 | 1900 | }, |
1929 | 1901 | "instance": [ 1, 50 ], |
1930 | 1902 | "valid": true, |
|
1997 | 1969 | "description": "items_integer_bounded_8_boundary_values", |
1998 | 1970 | "schema": { |
1999 | 1971 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
2000 | | - "items": { |
2001 | | - "type": "number", |
2002 | | - "minimum": 0, |
2003 | | - "maximum": 100 |
2004 | | - } |
| 1972 | + "items": { "type": "number", "minimum": 0, "maximum": 100 } |
2005 | 1973 | }, |
2006 | 1974 | "instance": [ 0, 100 ], |
2007 | 1975 | "valid": true, |
|
0 commit comments