changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "location": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "providers": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "business_name": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "city": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "coverage": {
+ "anyOf": [
+ {
+ "enum": [
+ "declared_zone",
+ "nationwide"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Couverture déclarée par le prestataire : zone choisie ou France entière ; aucune distance calculée"
+ },
+ "id": {
+ "type": "string"
+ },
+ "url": {
+ "format": "uri",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "business_name",
+ "city",
+ "coverage",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "results_count": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "source": {
+ "const": "izifete",
+ "type": "string"
+ },
+ "status": {
+ "enum": [
+ "outside_coverage",
+ "out_of_scope_trade",
+ "ok",
+ "nearby",
+ "distant_only",
+ "empty"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "source",
+ "status",
+ "location",
+ "results_count",
+ "providers"
+ ],
+ "type": "object"
+}